pprofile icon indicating copy to clipboard operation
pprofile copied to clipboard

Line-granularity, thread-aware deterministic and statistic pure-python profiler

Results 16 pprofile issues
Sort by recently updated
recently updated
newest added

`frame.f_lineno` can be `None` in limited circumstances in Python 3.10 as documented [here](https://github.com/GoogleCloudPlatform/cloud-profiler-python/issues/124). This can cause an issue in the Statistical profiler, as the line `max(self.line_dict)` can error out in...

Hi, I am looking at pprofile as an alternative to line-profiler; Could you please tell me whats the correct way of using it so that only the code within a...

Hi I can install the current version of pprofile just fine. I am trying to install v2.0.2 (for uni they are very specific about the version) and a few of...

Probably a silly remark, but we couldn't explain this behavior with my team. When we profile a loop with a built-in iterator, e.g.: ```py for _ in range(10 ** 7):...

pprofile 2.1.0 windows 11 python 3.11 Hi Team, Thanks for the tool, i am performing profiling on a sample django application with the following structure ├── server │ ├── app...

Notice that the function calls `a()` (line 8) or `b()` (line 10) doesn't take into account the correct time. Ideally they should include the sleep time as well which isn't...