关于python分析的问题

发布于 2024-09-28 12:17:30 字数 547 浏览 3 评论 0原文

我正在尝试用 python 对我的应用程序进行分析。我正在使用 cProfile 库。我需要分析应用程序的 onFrame 函数,但这是由外部应用程序调用的。我已经尝试了很多事情,但目前我的 onFrame 方法中有以下内容:

runProfiler(self)

然后在我的班级之外我有以下内容:

o = None

def doProfile ():
    print "doProfile invoked"
    o.structure.updateOrders

def runProfiler(self):
    print "runProfiler invoked"
    o = self
    cProfile.run('doProfile()', 'profile.log')

如果这看起来很奇怪,那是因为我已经尝试了一切来消除错误“名称 doProfile 未定义”。即使现在,runProfiler 方法也会被调用,并且会打印“runProfiler invoked”,但随后我收到了刚刚描述的错误。我做错了什么?

I'm trying to do profiling of my application in python. I'm using the cProfile library. I need to profile the onFrame function of my application, but this is called by an outside application. I've tried loads of things, but at the moment I have the following in my onFrame method:

runProfiler(self)

and then outside of my class I have the following:

o = None

def doProfile ():
    print "doProfile invoked"
    o.structure.updateOrders

def runProfiler(self):
    print "runProfiler invoked"
    o = self
    cProfile.run('doProfile()', 'profile.log')

If this seems strange, it's because I've tried everything to get rid of the error "name doProfile not defined". Even now, the runProfiler method gets called, and the "runProfiler invoked" gets printed, but then I get the error just described. What am I doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

ㄟ。诗瑗 2024-10-05 12:17:30

在这种情况下,您应该将必要的上下文传递给 cProfile.runctx

cProfile.runctx("doProfile()", globals(), locals(), "profile.log")

In that case, you should pass the necessary context to cProfile.runctx:

cProfile.runctx("doProfile()", globals(), locals(), "profile.log")
薔薇婲 2024-10-05 12:17:30

另一种方法是使用 Profile 对象的 runcall 方法。

profiler = cProfile.Profile()
profiler.runcall(doProfile)
profiler.dump_stats("profile.log")

An alternative is to use the runcall method of a Profile object.

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