Skip to content

Commit

Permalink
fix: renamed python profiling and added links
Browse files Browse the repository at this point in the history
  • Loading branch information
rwxd committed Mar 11, 2023
1 parent 9c10e22 commit 746b810
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ python3 -m cProfile -o profile.pstats -m my_module <args>

### Yappi

Yappi supports asynchronous and multithreaded profiling, which is not supported by the built-in profiler.
[Yappi](https://github.com/sumerc/yappi) supports asynchronous and multithreaded profiling, which is not supported by the built-in profiler.

```bash
pip3 install -U yappi
Expand Down Expand Up @@ -45,7 +45,7 @@ gprof2dot -f pstats profile.pstats | dot -Tsvg -o profile.svg

### Snakeviz (Interactive)

Snakeviz is a web-based profiling tool which allows users to analyse their code by filtering data by module,
[Snakeviz](https://github.com/jiffyclub/snakeviz) is a web-based profiling tool which allows users to analyse their code by filtering data by module,
function and file, and sorting it according to different criteria such as the number of calls or cumulative time spent in a function.

```bash
Expand Down

0 comments on commit 746b810

Please sign in to comment.