memit和timeit在同一时间

时间:2015-09-16 18:18:49

标签: python profiling ipython

我可以同时%memit%timeit一个IPython单元格吗? 在下面的情况下它会运行多少次?

%memit -r 3
%timeit -r 2
my_awesome_function()

1 个答案:

答案 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