plasma-umass / scalene

Scalene: a high-performance, high-precision CPU, GPU, and memory profiler for Python with AI-powered optimization proposals
Apache License 2.0
11.38k stars 384 forks source link
cpu cpu-profiling gpu gpu-programming memory-allocation memory-consumption performance-analysis performance-cpu profiler profiles-memory profiling python python-profilers scalene

scalene

Scalene: a Python CPU+GPU+memory profiler with AI-powered optimization proposals

by Emery Berger, Sam Stern, and Juan Altmayer Pizzorno.

Scalene community SlackScalene community Slack

PyPI Latest ReleaseAnaconda-Server Badge DownloadsAnaconda downloads Downloads Python versionsVisual Studio Code Extension version License

Ozsvald tweet

(tweet from Ian Ozsvald, author of High Performance Python)

Semantic Scholar success story

Scalene web-based user interface: http://plasma-umass.org/scalene-gui/

About Scalene

Scalene is a high-performance CPU, GPU and memory profiler for Python that does a number of things that other Python profilers do not and cannot do. It runs orders of magnitude faster than many other profilers while delivering far more detailed information. It is also the first profiler ever to incorporate AI-powered proposed optimizations.

AI-powered optimization suggestions

Note

To enable AI-powered optimization suggestions, you need to enter an OpenAI key in the box under "Advanced options". Your account will need to have a positive balance for this to work (check your balance at https://platform.openai.com/account/usage).

Scalene advanced options

Once you've entered your OpenAI key (see above), click on the lightning bolt (⚡) beside any line or the explosion (💥) for an entire region of code to generate a proposed optimization. Click on a proposed optimization to copy it to the clipboard.

example proposed optimization

You can click as many times as you like on the lightning bolt or explosion, and it will generate different suggested optimizations. Your mileage may vary, but in some cases, the suggestions are quite impressive (e.g., order-of-magnitude improvements).

Quick Start

Installing Scalene:

python3 -m pip install -U scalene

or

conda install -c conda-forge scalene

Using Scalene:

After installing Scalene, you can use Scalene at the command line, or as a Visual Studio Code extension.

Using the Scalene VS Code Extension: First, install the Scalene extension from the VS Code Marketplace or by searching for it within VS Code by typing Command-Shift-X (Mac) or Ctrl-Shift-X (Windows). Once that's installed, click Command-Shift-P or Ctrl-Shift-P to open the Command Palette. Then select "Scalene: AI-powered profiling..." (you can start typing Scalene and it will pop up if it's installed). Run that and, assuming your code runs for at least a second, a Scalene profile will appear in a webview. Screenshot 2023-09-20 at 7 09 06 PM
Commonly used command-line options: ```console scalene your_prog.py # full profile (outputs to web interface) python3 -m scalene your_prog.py # equivalent alternative scalene --cli your_prog.py # use the command-line only (no web interface) scalene --cpu your_prog.py # only profile CPU scalene --cpu --gpu your_prog.py # only profile CPU and GPU scalene --cpu --gpu --memory your_prog.py # profile everything (same as no options) scalene --reduced-profile your_prog.py # only profile lines with significant usage scalene --profile-interval 5.0 your_prog.py # output a new profile every five seconds scalene (Scalene options) --- your_prog.py (...) # use --- to tell Scalene to ignore options after that point scalene --help # lists all options ```
Using Scalene programmatically in your code: Invoke using `scalene` as above and then: ```Python from scalene import scalene_profiler # Turn profiling on scalene_profiler.start() # your code # Turn profiling off scalene_profiler.stop() ``` ```Python from scalene.scalene_profiler import enable_profiling with enable_profiling(): # do something ```
Using Scalene to profile only specific functions via @profile: Just preface any functions you want to profile with the `@profile` decorator and run it with Scalene: ```Python # do not import profile! @profile def slow_function(): import time time.sleep(3) ```

Web-based GUI

Scalene has both a CLI and a web-based GUI (demo here).

By default, once Scalene has profiled your program, it will open a tab in a web browser with an interactive user interface (all processing is done locally). Hover over bars to see breakdowns of CPU and memory consumption, and click on underlined column headers to sort the columns. The generated file profile.html is self-contained and can be saved for later use.

Scalene web GUI

Scalene Overview

Scalene talk (PyCon US 2021)

This talk presented at PyCon 2021 walks through Scalene's advantages and how to use it to debug the performance of an application (and provides some technical details on its internals). We highly recommend watching this video!

Scalene presentation at PyCon 2021

Fast and Accurate

Profiler accuracy

CPU profiling

GPU profiling

Memory profiling

Other features

Comparison to Other Profilers

Performance and Features

Below is a table comparing the performance and features of various profilers to Scalene.

Performance and feature comparison

Scalene has all of the following features, many of which only Scalene supports:

Output

If you include the --cli option, Scalene prints annotated source code for the program being profiled (as text, JSON (--json), or HTML (--html)) and any modules it uses in the same directory or subdirectories (you can optionally have it --profile-all and only include files with at least a --cpu-percent-threshold of time). Here is a snippet from pystone.py.

Example profile

Scalene

The following command runs Scalene on a provided example program.

scalene test/testme.py
Click to see all Scalene's options (available by running with --help) ```console % scalene --help usage: scalene [-h] [--outfile OUTFILE] [--html] [--reduced-profile] [--profile-interval PROFILE_INTERVAL] [--cpu-only] [--profile-all] [--profile-only PROFILE_ONLY] [--use-virtual-time] [--cpu-percent-threshold CPU_PERCENT_THRESHOLD] [--cpu-sampling-rate CPU_SAMPLING_RATE] [--malloc-threshold MALLOC_THRESHOLD] Scalene: a high-precision CPU and memory profiler. https://github.com/plasma-umass/scalene command-line: % scalene [options] yourprogram.py or % python3 -m scalene [options] yourprogram.py in Jupyter, line mode: %scrun [options] statement in Jupyter, cell mode: %%scalene [options] code... code... optional arguments: -h, --help show this help message and exit --outfile OUTFILE file to hold profiler output (default: stdout) --html output as HTML (default: text) --reduced-profile generate a reduced profile, with non-zero lines only (default: False) --profile-interval PROFILE_INTERVAL output profiles every so many seconds (default: inf) --cpu-only only profile CPU time (default: profile CPU, memory, and copying) --profile-all profile all executed code, not just the target program (default: only the target program) --profile-only PROFILE_ONLY profile only code in filenames that contain the given strings, separated by commas (default: no restrictions) --use-virtual-time measure only CPU time, not time spent in I/O or blocking (default: False) --cpu-percent-threshold CPU_PERCENT_THRESHOLD only report profiles with at least this percent of CPU time (default: 1%) --cpu-sampling-rate CPU_SAMPLING_RATE CPU sampling rate (default: every 0.01s) --malloc-threshold MALLOC_THRESHOLD only report profiles with at least this many allocations (default: 100) When running Scalene in the background, you can suspend/resume profiling for the process ID that Scalene reports. For example: % python3 -m scalene [options] yourprogram.py & Scalene now profiling process 12345 to suspend profiling: python3 -m scalene.profile --off --pid 12345 to resume profiling: python3 -m scalene.profile --on --pid 12345 ```

Scalene with Jupyter

Instructions for installing and using Scalene with Jupyter notebooks [This notebook](https://nbviewer.jupyter.org/github/plasma-umass/scalene/blob/master/docs/scalene-demo.ipynb) illustrates the use of Scalene in Jupyter. Installation: ```console !pip install scalene %load_ext scalene ``` Line mode: ```console %scrun [options] statement ``` Cell mode: ```console %%scalene [options] code... code... ```

Installation

Using pip (Mac OS X, Linux, Windows, and WSL2) Scalene is distributed as a `pip` package and works on Mac OS X, Linux (including Ubuntu in [Windows WSL2](https://docs.microsoft.com/en-us/windows/wsl/wsl2-index)) and (with limitations) Windows platforms. > **Note** > > The Windows version currently only supports CPU and GPU profiling, but not memory or copy profiling. > You can install it as follows: ```console % pip install -U scalene ``` or ```console % python3 -m pip install -U scalene ``` You may need to install some packages first. See https://stackoverflow.com/a/19344978/4954434 for full instructions for all Linux flavors. For Ubuntu/Debian: ```console % sudo apt install git python3-all-dev ```
Using conda (Mac OS X, Linux, Windows, and WSL2) ```console % conda install -c conda-forge scalene ``` Scalene is distributed as a `conda` package and works on Mac OS X, Linux (including Ubuntu in [Windows WSL2](https://docs.microsoft.com/en-us/windows/wsl/wsl2-index)) and (with limitations) Windows platforms. > **Note** > > The Windows version currently only supports CPU and GPU profiling, but not memory or copy profiling. >
On ArchLinux You can install Scalene on Arch Linux via the [AUR package](https://aur.archlinux.org/packages/python-scalene-git/). Use your favorite AUR helper, or manually download the `PKGBUILD` and run `makepkg -cirs` to build. Note that this will place `libscalene.so` in `/usr/lib`; modify the below usage instructions accordingly.

Frequently Asked Questions

Can I use Scalene with PyTest? **A:** Yes! You can run it as follows (for example): `python3 -m scalene --- -m pytest your_test.py`
Is there any way to get shorter profiles or do more targeted profiling? **A:** Yes! There are several options: 1. Use `--reduced-profile` to include only lines and files with memory/CPU/GPU activity. 2. Use `--profile-only` to include only filenames containing specific strings (as in, `--profile-only foo,bar,baz`). 3. Decorate functions of interest with `@profile` to have Scalene report _only_ those functions. 4. Turn profiling on and off programmatically by importing Scalene profiler (`from scalene import scalene_profiler`) and then turning profiling on and off via `scalene_profiler.start()` and `scalene_profiler.stop()`. By default, Scalene runs with profiling on, so to delay profiling until desired, use the `--off` command-line option (`python3 -m scalene --off yourprogram.py`).
How do I run Scalene in PyCharm? **A:** In PyCharm, you can run Scalene at the command line by opening the terminal at the bottom of the IDE and running a Scalene command (e.g., `python -m scalene `). Use the options `--cli`, `--html`, and `--outfile ` to generate an HTML file that you can then view in the IDE.
How do I use Scalene with Django? **A:** Pass in the `--noreload` option (see https://github.com/plasma-umass/scalene/issues/178).
Does Scalene work with gevent/Greenlets? **A:** Yes! Put the following code in the beginning of your program, or modify the call to `monkey.patch_all` as below: ```python from gevent import monkey monkey.patch_all(thread=False) ```
How do I use Scalene with PyTorch on the Mac? **A:** Scalene works with PyTorch version 1.5.1 on Mac OS X. There's a bug in newer versions of PyTorch (https://github.com/pytorch/pytorch/issues/57185) that interferes with Scalene (discussion here: https://github.com/plasma-umass/scalene/issues/110), but only on Macs.

Technical Information

For details about how Scalene works, please see the following paper, which won the Jay Lepreau Best Paper Award at OSDI 2023: Triangulating Python Performance Issues with Scalene. (Note that this paper does not include information about the AI-driven proposed optimizations.)

To cite Scalene in an academic paper, please use the following: ```latex @inproceedings{288540, author = {Emery D. Berger and Sam Stern and Juan Altmayer Pizzorno}, title = {Triangulating Python Performance Issues with {S}calene}, booktitle = {{17th USENIX Symposium on Operating Systems Design and Implementation (OSDI 23)}}, year = {2023}, isbn = {978-1-939133-34-2}, address = {Boston, MA}, pages = {51--64}, url = {https://www.usenix.org/conference/osdi23/presentation/berger}, publisher = {USENIX Association}, month = jul } ```

Success Stories

If you use Scalene to successfully debug a performance problem, please add a comment to this issue!

Acknowledgements

Logo created by Sophia Berger.

This material is based upon work supported by the National Science Foundation under Grant No. 1955610. Any opinions, findings, and conclusions or recommendations expressed in this material are those of the author(s) and do not necessarily reflect the views of the National Science Foundation.