有没有办法用探查器结果注释 Python 源代码?
我目前正在使用 cProfile 和 pstats 来分析一些 Python 代码。
有没有办法在源代码中注释每行所花费的时间?理想情况下,这将是源代码的彩色 (HTML) 版本,其中昂贵的行以红色或其他方式突出显示。
I'm currently using cProfile and pstats to profile some Python code.
Is there a way to annotate the source code with the time taken on each line? Ideally this would be a coloured (HTML) version of the source with expensive lines highlighted in red or something.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,请查看 线路分析器 或 profilehooks
我认为使用您自己的代码将输出呈现为 html 非常简单。
对于图表,请查看 gprof2dot
yes, look at line profiler or profilehooks
I think is so simple to render the output to html, with your own codes.
and for graph, take a look at gprof2dot
不完全符合您的要求,但可能会有所帮助:
http://code.google.com/ p/jrfonseca/wiki/Gprof2Dot
它绘制了一个图表,使您可以轻松查看哪些函数占用了您的执行时间。
我不知道有一个 python 分析器可以逐行跟踪执行。我怀疑这样做会混淆结果,因为开销太大。
Not quite what you ask for but might be helpful:
http://code.google.com/p/jrfonseca/wiki/Gprof2Dot
It draws a graph which makes it really easy to see which functions take up your execution time.
I'm not aware of a python profiler that tracks execution line by line. I suspect that doing so would confuse the results because it would be too much overhead.