rust性能分析

Rust性能分析

  1. 安装性能分析工具:
sudo apt-get install valgrind  kcachegrind
  1. 可以安装windows下的图形工具:qcachegrind

  2. 编辑Cargo.toml, release下保存符号信息:

[profile.release]
debug= true
  1. 编译出需要性能分析的二进制文件
cargo build --release --bin profile
  1. 利用valgrind生产性能日志:
valgrind --tool=callgrind ./profile
  1. 利用kcachegrind或者windows下qcachegrind打开callgrind.out性能日志文件

你可能感兴趣的:(rust性能分析)