I've seen a quite a few questions on the Project Euler and other places asking how to time the execution of their solutions. Sometimes the given answers are somewhat kludgey - i.e., adding timing code to __main__, so I thought I'd share my solution.
|
|
|||||||||||||||||||||
|
|
Python includes a profiler called cProfile. It not only gives the total running time, but also times each function separately, and tells you how many times each function was called, making it easy to determine where you should make optimizations. You can call it from within your code, or from the interpreter, like this:
Even more usefully, you can invoke the cProfile when running a script:
To make it even easier, I made a little batch file called 'profile.bat':
So all I have to do is run:
And I get this:
EDIT There is a great talk on profiling from PyCon here: http://blip.tv/file/1957086 |
|||||||||||||
|
|
It's worth pointing out that using the profiler only works (by default) on the main thread, and you won't get any information from other threads if you use them. This can be a bit of a gotcha as it is completely unmentioned in the profiler documentation. If you also want to profile threads, you'll want to look at the You could also create your own threading.Thread subclass to do it:
and use that ProfiledThread class instead of the standard one. It might give you more flexibility, but I'm not sure it's worth it, especially if you are using third-party code which wouldn't use your class. |
|||||||||
|
|
A while ago I made Pretty easy to use. Just put this before the start of profiling:
Then run this when done:
|
|||
|
|
|
The python wiki is a great page for profiling resources: http://wiki.python.org/moin/PythonSpeed/PerformanceTips#Profiling_Code as is the python docs: http://docs.python.org/library/profile.html as shown by Chris Lawlor cProfile is a great tool and can easily be used to print to the screen:
or to file:
PS> If you are using Ubuntu, make sure to install python-profile
If you output to file you can get nice visualizations using the following tools PyCallGraph : a tool to create call graph images
run:
view:
You can use whatever you like to view the png file, I used gimp dot: graph is too large for cairo-renderer bitmaps. Scaling by 0.257079 to fit which makes my images unusably small. So I generally create svg files:
PS> If you are using Ubuntu, make sure to install graphviz (which provides the dot program):
Alternative Graphing using gprof2dot via @maxy / @quodlibetor :
|
|||||||||||
|
|
@Maxy's comment on this answer helped me out enough that I think it deserves its own answer: I already had cProfile-generated .pstats files and I didn't want to re-run things with pycallgraph, so I used gprof2dot, and got pretty svgs:
and BLAM! It uses dot (the same thing that pycallgraph uses) so output looks similar. I get the impression that gprof2dot loses less information though:
|
|||||||||||
|
|
A nice profiling module is the line_profiler (called using the script kernprof.py). It can be downloaded here. My understanding is that cProfile only gives information about total time spent in each function. So individual lines of code are not timed. This is an issue in scientific computing since often one single line can take a lot of time. Also, as I remember, cProfile didn't catch the time I was spending in say numpy.dot. |
|||
|
|
|
In Virtaal's source there's a very useful class and decorator that can make it profiling (even for specific methods/functions) very easy. The output can then be viewed very comfortably in KCacheGrind. |
|||
|
|
Following Joe Shaw's answer about multi-threaded code not to work as expected, I figured that the |
|||
|
https://github.com/amoffat/Inspect-Shell You could use that (and your wristwatch). |
||||
|
|

