标签: ipython jupyter-notebook ipython-magic
我在Jupyter-notebook中使用%%time来测量我的Python代码的运行时间。问题是它只在 Windows 上打印Wall time,但在 Ubuntu 上正常工作。
%%time
Wall time
是否可以在 Windows 上获得CPU time?
CPU time
我使用的是Windows 10,Python 3.6 Anaconda版本。
答案 0 :(得分:0)
下面的官方文件说不可能在Windows中使用它
请注意,在Win32下,由于无法测量系统时间,因此系统始终将其报告为0。
reference