作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我可以吗%memit
和 %timeit
同时一个 IPython 单元?
在下面的情况下它会运行多少次?
%memit -r 3
%timeit -r 2
my_awesome_function()
最佳答案
在 Jupyter 中尝试了一些组合,最终使用了 %%time
在单元级别和 %memit
在线级别:
%%time
d = 64
nb = 1000000
nq = 10000
%memit xb = np.random.random((nb, d))
%memit xq = np.random.random((nq, d))
time.sleep(5)
peak memory: 1252.40 MiB, increment: 457.10 MiB
peak memory: 797.77 MiB, increment: 2.48 MiB
CPU times: user 866 ms, sys: 230 ms, total: 1.1 s
Wall time: 6.34 s
关于python - memit 和 timeit 同时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32615867/
我可以吗%memit和 %timeit同时一个 IPython 单元? 在下面的情况下它会运行多少次? %memit -r 3 %timeit -r 2 my_awesome_function() 最
我有一个简单的任务:除了测量在 Python 中执行一段代码所需的时间之外,我还需要测量一段给定代码所需的内存量。 IPython 有一个很好的实用程序,叫做 timeit,它的工作原理如下: In
我是一名优秀的程序员,十分优秀!