Skip to content

More Python profiling

I ran across another good article that lines up with my recent profiling post.

It's a good case study on starting to profile a small 'application' at a high-level and slowly drilling down the stack to see what is the bottleneck. It also includes some nice information on something I didn't mention in my article, statprof.

I especially liked this quote from the article:

Most performance problems aren’t complex; they’re just well-hidden.