gpt4 book ai didi

python - 如何正确测量jupyter中单元格的执行时间?

转载 作者:行者123 更新时间:2023-12-04 11:56:00 24 4
gpt4 key购买 nike

我有一个看起来像这样的代码:

%%time
import time
time.sleep(3)

当我在 jupyter 中执行这个单元格时,我得到了这个输出:
CPU times: user 791 µs, sys: 1.47 ms, total: 2.27 ms
Wall time: 3 s

我的问题是,当我放置 sleep(3) 时总时间不应该是 3 秒而不是 2.27 毫秒。

最佳答案

CPU times: user 791 µs, sys: 1.47 ms, total: 2.27 ms
Wall time: 3 s
CPU times显示您使用 CPU 的时间。 Wall time显示自单元格开始以来经过的实际时间。这是您感兴趣的时间。

尝试以下操作以查看差异:

%%time
time.sleep(3) #Assuming the time module was already imported

您从未使用过 CPU,因此 CPU 时间为 0s

关于python - 如何正确测量jupyter中单元格的执行时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55701934/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com