性能分析
2017-08-23 本文已影响0人
manbug
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
即可生成非常直观的调用耗时图。