Skip to content Skip to sidebar Skip to footer
Showing posts with the label Profiling

How Can I "hook Into" Python From C++ When It Executes A Function? My Goal Is To Profile

I'm implementing a profiler in an application and I'm a little flummoxed about how to imple… Read more How Can I "hook Into" Python From C++ When It Executes A Function? My Goal Is To Profile

Time Python Scripts Using Ipython Magic

How can I time the execution of a Python script using the iPython %time or %%timeit magic commands?… Read more Time Python Scripts Using Ipython Magic

Python Line-by-line Memory Profiler?

I'm looking to generate, from a large Python codebase, a summary of heap usage or memory alloca… Read more Python Line-by-line Memory Profiler?

Python Cprofile - Decorated Functions Obscuring Profile Visualization

I have a base class with a @classmethod which acts as a decorator for a large number of methods in … Read more Python Cprofile - Decorated Functions Obscuring Profile Visualization