有没有办法用探查器结果注释 Python 源代码?

发布于 2024-10-27 04:06:56 字数 197 浏览 1 评论 0原文

我目前正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

最舍不得你 2024-11-03 04:06:56

是的,请查看 线路分析器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

羁拥 2024-11-03 04:06:56

不完全符合您的要求,但可能会有所帮助:

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文