我错过了一些非常基本的东西。
class C:
def __init__(self):
self.N = 100
pass
def f(self, param):
print 'C.f -- param'
for k in xrange(param):
for i in xrange(self.N):
for j in xrange(self.N):
a = float(i)/(1+float(j)) + float(i/self.N) ** float(j/self.N)
import cProfile
c = C()
cProfile.run('c.f(3)')
当我在ipython中运行上述代码时,我得到:
NameError: name 'c' is not defined
我错过了什么?
更新我的会话的确切粘贴位置:http://pastebin.com/f3e1b9946
更新我没有提到问题发生在ipython中,它(事实证明)是问题的根源。
最佳答案
在ipython中,您可以使用
In [9]: %prun c.f(3)
C.f -- param
3 function calls in 0.066 CPU seconds
Ordered by: internal time
ncalls tottime percall cumtime percall filename:lineno(function)
1 0.066 0.066 0.066 0.066 <string>:6(f)
1 0.000 0.000 0.066 0.066 <string>:1(<module>)
1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects}
关于python - 无法使cProfile在IPython中工作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1819448/