gpt4 book ai didi

python - cProfile 导入

转载 作者:行者123 更新时间:2023-11-28 21:14:18 24 4
gpt4 key购买 nike

我目前正在学习如何使用 cProfile,我有一些疑问。

我目前正在尝试分析以下脚本:

import time

def fast():
print("Fast!")

def slow():
time.sleep(3)
print("Slow!")

def medium():
time.sleep(0.5)
print("Medium!")

fast()
slow()
medium()

我执行命令 python -m cProfile test_cprofile.py 得到以下结果:

Fast!
Slow!
Medium!
7 function calls in 3.504 seconds

Ordered by: standard name

ncalls tottime percall cumtime percall filename:lineno(function)
1 0.000 0.000 3.504 3.504 test_cprofile.py:1(<module>)
1 0.000 0.000 0.501 0.501 test_cprofile.py:10(medium)
1 0.000 0.000 0.000 0.000 test_cprofile.py:3(fast)
1 0.000 0.000 3.003 3.003 test_cprofile.py:6(slow)
1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects}
2 3.504 1.752 3.504 1.752 {time.sleep}

但是,当我使用顶部的 pylab 导入 (import pylab) 编辑脚本时,cProfile 的输出非常大。我尝试使用 python -m cProfile test_cprofile.py | 限制行数head -n 10 但是我收到以下错误:

Traceback (most recent call last):
File "/home/user/anaconda/lib/python2.7/runpy.py", line 162, in _run_module_as_main
"__main__", fname, loader, pkg_name)
File "/home/user/anaconda/lib/python2.7/runpy.py", line 72, in _run_code
exec code in run_globals
File "/home/user/anaconda/lib/python2.7/cProfile.py", line 199, in <module>
main()
File "/home/user/anaconda/lib/python2.7/cProfile.py", line 192, in main
runctx(code, globs, None, options.outfile, options.sort)
File "/home/user/anaconda/lib/python2.7/cProfile.py", line 56, in runctx
result = prof.print_stats(sort)
File "/home/user/anaconda/lib/python2.7/cProfile.py", line 81, in print_stats
pstats.Stats(self).strip_dirs().sort_stats(sort).print_stats()
File "/home/user/anaconda/lib/python2.7/pstats.py", line 360, in print_stats
self.print_line(func)
File "/home/user/anaconda/lib/python2.7/pstats.py", line 438, in print_line
print >> self.stream, c.rjust(9),
IOError: [Errno 32] Broken pipe

有人可以帮助解决与这种情况类似的正确程序吗,我们有一个 import pylab 或另一个在 cProfile 上生成如此高输出信息的模块?

最佳答案

我不知道有什么方法可以像您一样直接从命令行运行 cProfile 模块来进行选择性分析。

但是,您可以通过修改代码以显式导入 模块来完成此操作,但您必须自己完成所有操作。以下是如何对您的示例代码执行此操作:

(注意:以下代码同时兼容 Python 2 和 3。)

from cProfile import Profile
from pstats import Stats
prof = Profile()

prof.disable() # i.e. don't time imports
import time
prof.enable() # profiling back on

def fast():
print("Fast!")

def slow():
time.sleep(3)
print("Slow!")

def medium():
time.sleep(0.5)
print("Medium!")

fast()
slow()
medium()

prof.disable() # don't profile the generation of stats
prof.dump_stats('mystats.stats')

with open('mystats_output.txt', 'wt') as output:
stats = Stats('mystats.stats', stream=output)
stats.sort_stats('cumulative', 'time')
stats.print_stats()

mystats_output.txt 之后的文件内容:

Sun Aug 02 16:55:38 2015    mystats.stats

6 function calls in 3.522 seconds

Ordered by: cumulative time, internal time

ncalls tottime percall cumtime percall filename:lineno(function)
2 3.522 1.761 3.522 1.761 {time.sleep}
1 0.000 0.000 3.007 3.007 cprofile-with-imports.py:15(slow)
1 0.000 0.000 0.515 0.515 cprofile-with-imports.py:19(medium)
1 0.000 0.000 0.000 0.000 cprofile-with-imports.py:12(fast)
1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects}

更新:

您可以通过使用 context manager 派生您自己的 Profile 类来更轻松地启用分析。使事情自动化的方法。我没有添加名称为 enable_profiling() 的方法来执行此操作,而是实现了它以便您可以在 with 中调用类实例。陈述。只要退出 with 语句控制的上下文,分析就会自动关闭。

这是类:

from contextlib import contextmanager
from cProfile import Profile
from pstats import Stats

class Profiler(Profile):
""" Custom Profile class with a __call__() context manager method to
enable profiling.
"""
def __init__(self, *args, **kwargs):
super(Profile, self).__init__(*args, **kwargs)
self.disable() # Profiling initially off.

@contextmanager
def __call__(self):
self.enable()
yield # Execute code to be profiled.
self.disable()

使用它而不是普通的 Profile 对象看起来像这样:

profiler = Profiler()  # Create class instance.

import time # Import won't be profiled since profiling is initially off.

with profiler(): # Call instance to enable profiling.
def fast():
print("Fast!")

def slow():
time.sleep(3)
print("Slow!")

def medium():
time.sleep(0.5)
print("Medium!")

fast()
slow()
medium()

profiler.dump_stats('mystats.stats') # Stats output generation won't be profiled.

with open('mystats_output.txt', 'wt') as output:
stats = Stats('mystats.stats', stream=output)
stats.strip_dirs().sort_stats('cumulative', 'time')
stats.print_stats()

# etc...

因为它是一个 Profile 子类,所有基类的方法,例如 dump_stats() 仍然可用,如图所示。

当然,您可以更进一步并添加例如一种生成统计数据并以某种自定义方式对其进行格式化的方法。

关于python - cProfile 导入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31776850/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com