美文网首页
性能分析

性能分析

作者: manbug | 来源:发表于2017-08-23 14:19 被阅读0次
pip install gprof2dot
brew install graphviz (for mac)
yum -y install graphviz (for centos)

安装好之后再ipython shell连执行

cProfile.run('quick_sort(data, 0, 499)',filename='result.out', sort='cumulative')

命令将耗时分析结果导出只result.out文件中,然后在bash shell里执行命令

gprof2dot -f pstats result.out | dot -Tpng -o result.png

即可生成非常直观的调用耗时图。

相关文章

网友评论

      本文标题:性能分析

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