I work with Jupyter/IPython quite a lot and am used to including %%time
magic command in front of each cell to get a hint of the amount of CPU and wall clock time spent.
Is there a simple way to obtain the same measurements from within a script?
More specifically, I'd like to have something like that:
results = measure_times(something_possibly_parallel)
print results.wall_clock, results.cpu_user, results.cpu_total
You can implement the desired
measure_times()
utility as a python context manager. Then the usage will be as below:A sample implementation measuring only wall time follows: