Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
FilippoSimini authored Oct 5, 2022
1 parent 2ff418d commit 0799b60
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions profilingDeepLearning/PyTorchProfiler/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# PyTorch Profiler

Presented by Filippo Simini ([email protected]) based on [material](https://github.com/argonne-lcf/CompPerfWorkshop/tree/main/09_profiling_frameworks/PyTorchProfiler) by Denis Boyda ([email protected])


Profiling is an efficient way of measuring the performance and optimize your PyTorch scripts. It allows you to examine a PyTorch script and understand if it has some performance issues. One can measure and analyze execution time and memory consumption as well as finding bottlenecks and trace source code. In this tutorial we discuss several ways to profile PyTorch scripts such as [`torch.autograd.profiler`](https://pytorch.org/docs/stable/autograd.html#torch.autograd.profiler.profile), [`torch.profiler`](https://pytorch.org/docs/stable/profiler.html#torch-profiler), [`torch.utils.bottleneck`](https://pytorch.org/docs/stable/bottleneck.html#torch-utils-bottleneck) and [Python cProfiler](https://docs.python.org/3/library/profile.html#module-cProfile).

In this tutorial we:
Expand Down

0 comments on commit 0799b60

Please sign in to comment.