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

Profiling A Python Multiprocessing Pool

I'm trying to run cProfile.runctx() on each process in a multiprocessing pool, to get an idea o… Read more Profiling A Python Multiprocessing Pool

Django / Wsgi - How To Profile Partial Request? My Profiling Tools Are Per-request But App Runs Out Of Memory Before Then

How can I profile my python / django application which is crashing on a single request after 100 se… Read more Django / Wsgi - How To Profile Partial Request? My Profiling Tools Are Per-request But App Runs Out Of Memory Before Then

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

Speeding Up Datetime.strptime

I am using the following piece of code to extract a date from a string: try: my_date = datetime… Read more Speeding Up Datetime.strptime

How To Obtain How Much Time Is Spent In F2py Wrappers

I am currently writing a time consuming python program and decided to rewrite part of the program i… Read more How To Obtain How Much Time Is Spent In F2py Wrappers

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?