这段代码:
import numpy as np
import cProfile
shp = (1000,1000)
a = np.ones(shp)
o = np.zeros(shp)
def main():
np.divide(a,1,o)
for i in xrange(20):
np.multiply(a,2,o)
np.add(a,1,o)
cProfile.run('main()')
仅打印:
3 function calls in 0.269 seconds
Ordered by: standard name
ncalls tottime percall cumtime percall filename:lineno(function)
1 0.000 0.000 0.269 0.269 <string>:1(<module>)
1 0.269 0.269 0.269 0.269 testprof.py:8(main)
1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Prof
iler' objects}
我可以让 cProfile 与 numpy 一起工作,告诉我它对各种np.*
调用进行了多少次调用以及每个调用花费了多少时间?
编辑
像 hpaulj 建议的那样单独包装每个 numpy 函数太麻烦了,所以我正在尝试这样的事情来临时包装许多或所有感兴趣的函数:
def wrapper(f, fn):
def ff(*args, **kwargs):
return f(*args, **kwargs)
ff.__name__ = fn
ff.func_name = fn
return ff
for fn in 'divide add multiply'.split():
f = getattr(np, fn)
setattr(np, fn, wrapper(f, fn))
但 cProfile 仍然将它们都称为ff