使用行分析由另一个函数调用的函数时出错

发布于 2025-01-21 03:22:38 字数 579 浏览 0 评论 0原文

我正在使用 lprun 在 Jupyterlab 中对我的代码进行行分析。我的代码结构和使用 lprun 的方式如下。

def fn1(a,b,c,d):
    ...
    y=fn2(a,c)  #is ok

    # but %lprun -f fn2 y=fn2(a,c) gives error

def fn2(a,c):
    .....
    .....

my_main_code lines
 ....
 %lprun -f fn1 x=fn1(a,b,c,d)
 .....

如您所见,我的主代码调用 fn1 并调用 fn2。当我仅对 fn1 使用 lprun 时,效果很好,而且我发现 fn2 需要很多时间。因此,我决定将 lprun 命令放在 fn2 调用上,如上所示作为注释。 但随后它会抛出一个错误,指出名称 c 未定义。 那么,如何在 fn2 上进行线路分析?

I am using lprun to do line profiling for my code in Jupyterlab. The structure of my code and the way I use lprun is as below.

def fn1(a,b,c,d):
    ...
    y=fn2(a,c)  #is ok

    # but %lprun -f fn2 y=fn2(a,c) gives error

def fn2(a,c):
    .....
    .....

my_main_code lines
 ....
 %lprun -f fn1 x=fn1(a,b,c,d)
 .....

As you see, my main code calls fn1 and it calls fn2. When I use lprun just for fn1 it works well and I saw that fn2 takes a lot of time. So, I decided to put lprun command on the fn2 call as shown above as a comment. But it then throws an error that name c is not defined. So, how can I do line profiling on fn2?

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

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

发布评论

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

评论(1

书信已泛黄 2025-01-28 03:22:38

我自己找到了解决方案!还要使Profiler显示fn2的时间统计信息,而不是原始%lprun -f fn1 x = fn1(a,b,b,c,d) 替换使用 %lprun -f fn2 -f fn1 x = fn1(a,b,c,d)

如果将lprunfn1中放置在调用fn2时,则将错误作为所讨论。

I found a solution to this on my own! To make the profiler display the time statistics for fn2 also, instead of original %lprun -f fn1 x=fn1(a,b,c,d) replace with %lprun -f fn2 -f fn1 x=fn1(a,b,c,d).

If you put lprun inside fn1 while calling fn2, it throws the error as in question.

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