美文网首页
rust性能分析

rust性能分析

作者: Simth | 来源:发表于2019-05-22 20:06 被阅读0次

    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性能分析

          本文链接:https://www.haomeiwen.com/subject/fqrpzqtx.html