Giter Site home page Giter Site logo

cuulcat / deepview.profile Goto Github PK

View Code? Open in Web Editor NEW

This project forked from centml/deepview.profile

0.0 0.0 0.0 4.86 MB

๐Ÿ™ Interactive performance profiling and debugging tool for PyTorch neural networks.

License: Apache License 2.0

Shell 1.80% Python 97.98% Makefile 0.22%

deepview.profile's Introduction

DeepView License

DeepView.Profile is a tool to profile and debug the training performance of PyTorch neural networks.

Installation

DeepView.Profile works with GPU-based neural networks that are implemented in PyTorch.

To run DeepView.Profile, you need:

  • A system equipped with an NVIDIA GPU
  • Python 3.7+
  • PyTorch 1.1.0+ with CUDA
    • NOTE: We assume you have the correct version of PyTorch installed for their GPU. Default PyTorch installation on Linux distros might not have CUDA support. If you see error similar to below, your PyTorch version is incompatible with your version of CUDA. You can download the appropriate version from the PyTorch site
      The current PyTorch install supports CUDA capabilities sm_37 sm_50 sm_60 sm_70.
      If you want to use the NVIDIA GeForce RTX 3060 Ti GPU with PyTorch, please check the instructions at https://pytorch.org/get-started/locally/
      
  • For new RTX 4000 GPUs you need to install pytorch with cuda11.8 [pip install torch==2.0.1+cu118 torchvision==0.15.2+cu118 torchaudio==2.0.2 --index-url https://download.pytorch.org/whl/cu118] otherwise CUPTI will not initialize correctly

Installation from PyPi

Installing with Pip

pip install deepview-profile

Installation from source

git clone https://github.com/CentML/DeepView.Profile
cd DeepView.Profile
poetry install
poetry run deepview --help

Usage example

To use DeepView.Profile in your project, you need to first write an entry point file, which is a regular Python file that describes how your model is created and trained. See the Entry Point for more information.

Once your entry point file is ready, there are two ways to profile interactive profiling and standalone profiling.

Interactive Profiling

Interactive profiling is done with VSCode with the DeepView.Explore plugin. Install the plugin in VSCode and run the profiling session to interactively profile your models.

python3 -m deepview_profile interactive

Standalone Profiling

Standalone profiling is useful when you just want access to DeepView.Profile's profiling functionality. DeepView.Profile will save the profiling results (called a "report") into a SQLite database file that you can then query yourself. We describe the database schema for DeepView.Profile's run time and memory reports in the Run Time Report Format and Memory Report Format pages respectively.

To have DeepView.Profile perform run time profiling, you use the deepview time subcommand. In addition to the entry point file, you also need to specify the file where you want DeepView.Profile to save the run time profiling report using the --output or -o flag.

python3 -m deepview_profile time entry_point.py --output my_output_file.sqlite

Launching memory profiling is almost the same as launching run time profiling. You just need to use deepview memory instead of deepview time.

python3 -m deepview_profile memory entry_point.py --output my_output_file.sqlite

To export various available analysis to json file, you may use deepview analysis --all command for exact entry point and output file. It is required to later view the analysis on the web viewer.

It is also possible to run several optional analysis. There are such analysis available: --measure-breakdown, --measure-throughput, --habitat-predict, --measure-utilization, --energy-compute, --exclude-source

python3 -m deepview_profile analysis entry_point.py --all --exclude-source --output=complete_analysis.json 

--exclude-source option allows not adding encodedFiles section to output, that is available for --measure-breakdown analysis

or various combinations of optional analysis

python3 -m deepview_profile analysis entry_point.py --measure-breakdown --measure-throughput --habitat-predict --measure-utilization --energy-compute --output=various_analysis.json

Development Environment Setup

From the project root, do

poetry install

Release History

See Releases

Meta

DeepView.Profile began as a research project at the University of Toronto in collaboration with Geofrey Yu, Tovi Grossman and Gennady Pekhimenko.

The accompanying research paper appears in the proceedings of UIST'20. If you are interested, you can read a preprint of the paper here.

If you use DeepView.Profile in your research, please consider citing our paper:

@inproceedings{skyline-yu20,
  title = {{Skyline: Interactive In-Editor Computational Performance Profiling
    for Deep Neural Network Training}},
  author = {Yu, Geoffrey X. and Grossman, Tovi and Pekhimenko, Gennady},
  booktitle = {{Proceedings of the 33rd ACM Symposium on User Interface
    Software and Technology (UIST'20)}},
  year = {2020},
}

It is distributed under Apache 2.0 license. See LICENSE and NOTICE for more information.

Contributing

Check out CONTRIBUTING.md for more information on how to help with DeepView.Profile.

deepview.profile's People

Contributors

geoffxy avatar anurlybayev avatar michaelshin avatar jimgao1 avatar johncalesp avatar centml-machine-user avatar oleggolfer7 avatar xinli-centml avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.