我可以同时%memit
和%timeit
一个IPython单元格吗?
在下面的情况下它会运行多少次?
%memit -r 3
%timeit -r 2
my_awesome_function()
答案 0 :(得分:1)
尝试在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