Metadata-Version: 2.1
Name: scalene
Version: 1.3.4.7
Summary: Scalene: A high-resolution, low-overhead CPU, GPU, and memory profiler for Python
Home-page: https://github.com/emeryberger/scalene
Author: Emery Berger
Author-email: emery@cs.umass.edu
License: Apache License 2.0
Description: ![scalene](https://github.com/plasma-umass/scalene/raw/master/docs/scalene-image.png)
        
        # scalene: a high-performance CPU, GPU and memory profiler for Python
        
        by [Emery Berger](https://emeryberger.com), [Sam Stern](https://samstern.me/), and [Juan Altmayer Pizzorno](https://github.com/jaltmayerpizzorno).
        
        [Scalene Discord channel](https://discord.gg/6Dtaf6HW3m)
        
        [![PyPI Latest Release](https://img.shields.io/pypi/v/scalene.svg)](https://pypi.org/project/scalene/)[![Downloads](https://pepy.tech/badge/scalene)](https://pepy.tech/project/scalene) [![Downloads](https://pepy.tech/badge/scalene/month)](https://pepy.tech/project/scalene) ![Python versions](https://img.shields.io/pypi/pyversions/scalene.svg?style=flat-square) ![License](https://img.shields.io/github/license/plasma-umass/scalene) [![Twitter Follow](https://img.shields.io/twitter/follow/emeryberger.svg?style=social)](https://twitter.com/emeryberger)
        ------------
        
         [中文版本 (Chinese version)](docs/README_CN.md)
         
        # About Scalene
        
        ```
          % pip install -U 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 other profilers while delivering far more detailed information.
        
        ### Fast and Precise
        
        - Scalene is **_fast_**. It uses sampling instead of instrumentation or relying on Python's tracing facilities. Its overhead is typically no more than 10-20% (and often less).
        - Scalene performs profiling **_at the line level_** _and_ **_per function_**, pointing to the functions and the specific lines of code responsible for the execution time in your program.
        
        ### CPU profiling
        
        - Scalene **separates out time spent in Python from time in native code** (including libraries). Most Python programmers aren't going to optimize the performance of native code (which is usually either in the Python implementation or external libraries), so this helps developers focus their optimization efforts on the code they can actually improve.
        - Scalene **highlights hotspots** (code accounting for significant percentages of CPU time or memory allocation) in red, making them even easier to spot.
        - Scalene also separates out **system time**, making it easy to find I/O bottlenecks.
        
        ### GPU profiling
        
        - Scalene reports **GPU time** (currently limited to NVIDIA-based systems).
        
        ### Memory profiling
        
        - Scalene **profiles memory usage**. In addition to tracking CPU usage, Scalene also points to the specific lines of code responsible for memory growth. It accomplishes this via an included specialized memory allocator.
        - Scalene separates out the percentage of **memory consumed by Python code vs. native code**.
        - Scalene produces **_per-line_ memory profiles**.
        - Scalene **identifies lines with likely memory leaks**.
        - Scalene **profiles _copying volume_**, making it easy to spot inadvertent copying, especially due to crossing Python/library boundaries (e.g., accidentally converting `numpy` arrays into Python arrays, and vice versa).
        
        ### Other features
        
        - Scalene can produce **reduced profiles** (via `--reduced-profile`) that only report lines that consume more than 1% of CPU or perform at least 100 allocations.
        - Scalene supports `@profile` decorators to profile only specific functions.
        - When Scalene is profiling a program launched in the background (via `&`), you can **suspend and resume profiling**.
        
        # 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](https://raw.githubusercontent.com/plasma-umass/scalene/master/docs/images/profiler-comparison.png)
        
        - **Slowdown**: the slowdown when running a benchmark from the Pyperformance suite. Green means less than 2x overhead. Scalene's overhead is just a 20% slowdown.
        
        Scalene has all of the following features, many of which only Scalene supports:
        
        - **Lines or functions**: does the profiler report information only for entires functions, or for every line -- Scalene does both.
        - **Unmodified Code**: works on unmodified code.
        - **Threads**: supports Python threads.
        - **Multiprocessing**: supports use of the `multiprocessing` library -- _Scalene only_
        - **Python vs. C time**: breaks out time spent in Python vs. native code (e.g., libraries) -- _Scalene only_
        - **System time**: breaks out system time (e.g., sleeping or performing I/O) -- _Scalene only_
        - **Profiles memory**: reports memory consumption per line / function
        - **GPU**: reports time spent on an NVIDIA GPU (if present) -- _Scalene only_
        - **Memory trends**: reports memory use over time per line / function -- _Scalene only_
        - **Copy volume**: reports megabytes being copied per second -- _Scalene only_
        - **Detects leaks**: automatically pinpoints lines responsible for likely memory leaks -- _Scalene only_
        
        ## Output
        
        Scalene prints annotated source code for the program being profiled
        (either as text or as HTML via the `--html` option) 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](https://raw.githubusercontent.com/plasma-umass/scalene/master/docs/images/sample-profile-pystone.png)
        
        * **Memory usage at the top**: Visualized by "sparklines", memory consumption over the runtime of the profiled code. Scalene is a statistical profiler, meaning that it does sampling, and variance can certainly happen. A longer-running program that allocates and frees more memory will have more stable results.
        * **"CPU % Python"**: How much time was spent in Python code.
        * **"CPU % Native"**: How much time was spent in non-Python code (e.g., libraries written in C/C++).
        * **"Mem % Python"**: How much of the memory allocation happened on the Python side of the code, as opposed to in non-Python code (e.g., libraries written in C/C++).
        * **"Net (MB)"**: Positive net memory numbers indicate total memory allocation in megabytes; negative net memory numbers indicate memory reclamation.
        * **"Memory usage over time / %"**: Visualized by "sparklines", memory consumption generated by this line over the program runtime, and the percentages of total memory activity this line represents.
        * **"Copy (MB/s)"**: The amount of megabytes being copied per second (see "About Scalene").
        
        ## Using `scalene`
        
        The following command runs Scalene on a provided example program.
        
        ```
          % scalene test/testme.py
        ```
        
        **NEW**: Scalene works inside Jupyter notebooks as well.
        
        [This notebook](https://github.com/plasma-umass/scalene/blob/master/docs/scalene-demo.ipynb) illustrates the use Scalene in Jupyter.
        
        Installation:
        
        ```
          !pip install scalene
          %load_ext scalene
        ```
        
        Line mode:
        
        ```
          %scrun [options] statement
        ```
        
        Cell mode:
        
        ```
          %%scalene [options]
          code...
          code...
        ```
        
        To see all the options, run with `--help`.
        
            % 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 files that contain the given string (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
        
        
        ## Installation
        
        ### pip (Mac OS X, Linux, and Windows WSL2)
        
        Scalene is distributed as a `pip` package and works on Mac OS X and Linux platforms (including Ubuntu in [Windows WSL2](docs.microsoft.com/en-us/windows/wsl/wsl2-index)).
        
        You can install it as follows:
        ```
          % pip install -U scalene
        ```
        
        or
        ```
          % 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:
        
        ```
          # Ubuntu 20
          % sudo apt install git python3-all-dev
        
          # Ubuntu 18
          % sudo apt install git python3-all-dev
        ```
        
        ### Homebrew (Mac OS X)
        
        As an alternative to `pip`, you can use Homebrew to install the current version of Scalene from this repository:
        
        ```
          % brew tap plasma-umass/scalene
          % brew install --head plasma-umass/scalene/scalene
        ```
        
        ### ArchLinux
        
        **NEW**: You can also 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.
        
        
        # Technical Information
        
        For technical details on Scalene, please see the following paper: [Scalene: Scripting-Language Aware Profiling for Python](https://github.com/plasma-umass/scalene/raw/master/docs/scalene-paper.pdf) ([arXiv link](https://arxiv.org/abs/2006.03879)).
        
        # Success Stories
        
        If you use Scalene to successfully debug a performance problem, please [add a comment to this issue](https://github.com/plasma-umass/scalene/issues/58)!
        
        # Acknowledgements
        
        Logo created by [Sophia Berger](https://www.linkedin.com/in/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.
        
Keywords: performance memory profiler
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: IPython
Classifier: Framework :: Jupyter
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Debuggers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS :: MacOS X
Requires-Python: >=3.6
Description-Content-Type: text/markdown
