在 python 中分析自我和参数?

发布于 2024-07-26 00:51:16 字数 322 浏览 5 评论 0原文

如何在 python 中分析涉及 self 和参数的调用?

def performProfile(self):
    import cProfile
    self.profileCommand(1000000)

def profileCommand(self, a):
    for i in a:
        pass

在上面的示例中,我如何仅分析对 profileCommand 的调用? 我发现我需要使用 runctx 进行参数,但是我该如何处理 self 呢? (代码实际上涉及到UI,所以很难单独抽出对profile的调用)。

How do I profile a call that involves self and arguments in python?

def performProfile(self):
    import cProfile
    self.profileCommand(1000000)

def profileCommand(self, a):
    for i in a:
        pass

In the above example how would I profile just the call to profileCommand? I figured out I need to use runctx for argument, but how do I deal with self? (The code actually involves a UI, so it's hard to pull out the call to profile separately).

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

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

发布评论

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

评论(1

花伊自在美 2024-08-02 00:51:16

您需要传递 locals/globals dict 并传递您通常输入的第一个参数
例如,

cProfile.runctx("self.profileCommand(100)", globals(),locals())

使用类似的东西

class A(object):
    def performProfile(self):
        import cProfile
        cProfile.runctx("self.profileCommand(100)", globals(),locals())

    def profileCommand(self, a):
        for i in xrange(a):
            pass
        print "end."

A().performProfile()

,不要在配置文件中调用整个UI,配置文件特定的函数或计算

you need to pass locals/globals dict and pass first argument what you will usually type
e.g.

cProfile.runctx("self.profileCommand(100)", globals(),locals())

use something like this

class A(object):
    def performProfile(self):
        import cProfile
        cProfile.runctx("self.profileCommand(100)", globals(),locals())

    def profileCommand(self, a):
        for i in xrange(a):
            pass
        print "end."

A().performProfile()

and don't call whole UI in profile , profile the specific function or computation

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