Skip to content

Commit 5ef378a

Browse files
ZainRizvipytorchmergebot
authored andcommitted
Fix out of date documentation & remove friction points (pytorch#78682)
Fixes various friction points with the documentation for onboarding new users and remove instructions that were no longer valid Changes include: - Listing prerequisites earlier, so that devs can ensure they're met before encountering error messages - Removing linter invocations that are no longer valid - Modifying instructions to install mkl packages to only apply to x86 based CPUs [skip ci] Pull Request resolved: pytorch#78682 Approved by: https://github.com/seemethere, https://github.com/janeyx99, https://github.com/malfet
1 parent 4220799 commit 5ef378a

File tree

2 files changed

+71
-80
lines changed

2 files changed

+71
-80
lines changed

CONTRIBUTING.md

+32-57
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,16 @@
44

55
- [Contributing to PyTorch](#contributing-to-pytorch)
66
- [Developing PyTorch](#developing-pytorch)
7+
- [Prerequisites](#prerequisites)
8+
- [Instructions](#instructions)
79
- [Tips and Debugging](#tips-and-debugging)
810
- [Nightly Checkout & Pull](#nightly-checkout--pull)
911
- [Codebase structure](#codebase-structure)
1012
- [Unit testing](#unit-testing)
1113
- [Python Unit Testing](#python-unit-testing)
1214
- [Better local unit tests with `pytest`](#better-local-unit-tests-with-pytest)
1315
- [Local linting](#local-linting)
14-
- [Running `mypy`](#running-mypy)
16+
- [Running `mypy`](#running-mypy)
1517
- [C++ Unit Testing](#c-unit-testing)
1618
- [Run Specific CI Jobs](#run-specific-ci-jobs)
1719
- [Writing documentation](#writing-documentation)
@@ -81,6 +83,12 @@ https://github.com/pytorch/pytorch#from-source
8183

8284
To develop PyTorch on your machine, here are some tips:
8385

86+
### Prerequisites
87+
* CMake. You can install it via `pip install cmake`
88+
* Python >= 3.7 (3.7.6+ recommended)
89+
90+
### Instructions
91+
8492
1. Uninstall all existing PyTorch installs. You may need to run `pip
8593
uninstall torch` multiple times. You'll know `torch` is fully
8694
uninstalled when you see `WARNING: Skipping torch as it is not
@@ -100,7 +108,7 @@ git clone https://github.com/pytorch/pytorch
100108
cd pytorch
101109
```
102110

103-
2.1. If you already have PyTorch from source, update it:
111+
If you already have PyTorch from source, update it:
104112

105113
```bash
106114
git pull --rebase
@@ -110,9 +118,9 @@ git submodule update --init --recursive --jobs 0
110118

111119
If you want to have no-op incremental rebuilds (which are fast), see the section below titled "Make no-op build fast."
112120

113-
3. Install PyTorch in `develop` mode:
121+
3. Follow the instructions for [installing PyTorch from source](https://github.com/pytorch/pytorch#from-source), except when it's time to install PyTorch instead of invoking `setup.py install` you'll want to call `setup.py develop` instead:
114122

115-
The change you have to make is to replace
123+
Specifically, the change you have to make is to replace
116124

117125
```bash
118126
python setup.py install
@@ -125,8 +133,8 @@ python setup.py develop
125133
```
126134

127135
This mode will symlink the Python files from the current local source
128-
tree into the Python install. Hence, if you modify a Python file, you
129-
do not need to reinstall PyTorch again and again. This is especially
136+
tree into the Python install. This way when you modify a Python file, you
137+
won't need to reinstall PyTorch again and again. This is especially
130138
useful if you are only changing Python files.
131139

132140
For example:
@@ -143,10 +151,6 @@ torch as it is not installed`; next run `python setup.py clean`. After
143151
that, you can install in `develop` mode again.
144152

145153
### Tips and Debugging
146-
147-
* A prerequisite to installing PyTorch is CMake. We recommend installing it with [Homebrew](https://brew.sh/)
148-
with `brew install cmake` if you are developing on MacOS or Linux system.
149-
* Our `setup.py` requires Python >= 3.7
150154
* If a commit is simple and doesn't affect any code (keep in mind that some docstrings contain code
151155
that is used in tests), you can add `[skip ci]` (case sensitive) somewhere in your commit message to
152156
[skip all build / test steps](https://github.blog/changelog/2021-02-08-github-actions-skip-pull-request-and-push-workflows-with-skip-ci/).
@@ -172,14 +176,14 @@ with `brew install cmake` if you are developing on MacOS or Linux system.
172176
ENV_KEY1=ENV_VAL1[, ENV_KEY2=ENV_VAL2]* python setup.py develop
173177
```
174178
* If you run into issue running `git submodule update --init --recursive --jobs 0`. Please try the following:
175-
- If you encountered error such as
179+
- If you encounter an error such as
176180
```
177181
error: Submodule 'third_party/pybind11' could not be updated
178182
```
179183
check whether your Git local or global config file contains any `submodule.*` settings. If yes, remove them and try again.
180184
(please reference [this doc](https://git-scm.com/docs/git-config#Documentation/git-config.txt-submoduleltnamegturl) for more info).
181185
182-
- If you encountered error such as
186+
- If you encounter an error such as
183187
```
184188
fatal: unable to access 'https://github.com/pybind11/pybind11.git': could not load PEM client certificate ...
185189
```
@@ -189,7 +193,7 @@ with `brew install cmake` if you are developing on MacOS or Linux system.
189193
openssl x509 -noout -in <cert_file> -dates
190194
```
191195
192-
- If you encountered error that some third_party modules are not checkout correctly, such as
196+
- If you encounter an error that some third_party modules are not checked out correctly, such as
193197
```
194198
Could not find .../pytorch/third_party/pybind11/CMakeLists.txt
195199
```
@@ -308,6 +312,12 @@ into the repo directory.
308312

309313
### Python Unit Testing
310314

315+
**Prerequisites**:
316+
The following packages should be installed with either `conda` or `pip`:
317+
- `expecttest` and `hypothesis` - required to run tests
318+
- `mypy` - recommended for linting
319+
- `pytest` - recommended to run tests more selectively
320+
311321
All PyTorch test suites are located in the `test` folder and start with
312322
`test_`. Run the entire test
313323
suite with
@@ -340,10 +350,6 @@ in `test/test_jit.py`. Your command would be:
340350
python test/test_jit.py TestJit.test_Sequential
341351
```
342352

343-
The `expecttest` and `hypothesis` libraries must be installed to run the tests. `mypy` is
344-
an optional dependency, and `pytest` may help run tests more selectively.
345-
All these packages can be installed with `conda` or `pip`.
346-
347353
**Weird note:** In our CI (Continuous Integration) jobs, we actually run the tests from the `test` folder and **not** the root of the repo, since there are various dependencies we set up for CI that expects the tests to be run from the test folder. As such, there may be some inconsistencies between local testing and CI testing--if you observe an inconsistency, please [file an issue](https://github.com/pytorch/pytorch/issues/new/choose).
348354

349355
### Better local unit tests with `pytest`
@@ -365,54 +371,24 @@ command runs tests such as `TestNN.test_BCELoss` and
365371

366372
### Local linting
367373

368-
You can run the same linting steps that are used in CI locally via `make`:
369-
370-
```bash
371-
# Lint all files
372-
make lint -j 6 # run lint (using 6 parallel jobs)
373-
374-
# Lint only the files you have changed
375-
make quicklint -j 6
376-
```
377-
378-
These jobs may require extra dependencies that aren't dependencies of PyTorch
379-
itself, so you can install them via this command, which you should only have to
380-
run once:
374+
Install all prerequisites by running
381375

382376
```bash
383377
make setup_lint
384378
```
385379

386-
To run a specific linting step, use one of these targets or see the
387-
[`Makefile`](Makefile) for a complete list of options.
380+
You can now run the same linting steps that are used in CI locally via `make`:
388381

389382
```bash
390-
# Check for tabs, trailing newlines, etc.
391-
make quick_checks
392-
393-
make flake8
394-
395-
make mypy
396-
397-
make cmakelint
398-
399-
make clang-tidy
383+
make lint
400384
```
401385

402-
To run a lint only on changes, add the `CHANGED_ONLY` option:
403-
404-
```bash
405-
make <name of lint> CHANGED_ONLY=--changed-only
406-
```
386+
Learn more about the linter on the [lintrunner wiki page](https://github.com/pytorch/pytorch/wiki/lintrunner)
407387

408-
### Running `mypy`
388+
#### Running `mypy`
409389

410390
`mypy` is an optional static type checker for Python. We have multiple `mypy`
411-
configs for the PyTorch codebase, so you can run them all using this command:
412-
413-
```bash
414-
make mypy
415-
```
391+
configs for the PyTorch codebase that are automatically validated against whenever the linter is run.
416392

417393
See [Guide for adding type annotations to
418394
PyTorch](https://github.com/pytorch/pytorch/wiki/Guide-for-adding-type-annotations-to-PyTorch)
@@ -462,18 +438,17 @@ of very low signal to reviewers.
462438

463439
So you want to write some documentation and don't know where to start?
464440
PyTorch has two main types of documentation:
465-
- user-facing documentation.
441+
- **User facing documentation**:
466442
These are the docs that you see over at [our docs website](https://pytorch.org/docs).
467-
- developer facing documentation.
443+
- **Developer facing documentation**:
468444
Developer facing documentation is spread around our READMEs in our codebase and in
469445
the [PyTorch Developer Wiki](https://pytorch.org/wiki).
470446
If you're interested in adding new developer docs, please read this [page on the wiki](https://github.com/pytorch/pytorch/wiki/Where-or-how-should-I-add-documentation%3F) on our best practices for where to put it.
471447

472448
The rest of this section is about user-facing documentation.
473449

474450
PyTorch uses [Google style](http://sphinxcontrib-napoleon.readthedocs.io/en/latest/example_google.html)
475-
for formatting docstrings. Length of line inside docstrings block must be limited to 80 characters to
476-
fit into Jupyter documentation popups.
451+
for formatting docstrings. Each line inside a docstrings block must be limited to 80 characters so that it fits into Jupyter documentation popups.
477452

478453
### Building documentation
479454

README.md

+39-23
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Our trunk health (Continuous Integration signals) can be found at [hud.pytorch.o
2323
- [Binaries](#binaries)
2424
- [NVIDIA Jetson Platforms](#nvidia-jetson-platforms)
2525
- [From Source](#from-source)
26+
- [Prerequisites](#prerequisites)
2627
- [Install Dependencies](#install-dependencies)
2728
- [Get the PyTorch Source](#get-the-pytorch-source)
2829
- [Install PyTorch](#install-pytorch)
@@ -152,16 +153,19 @@ They require JetPack 4.2 and above, and [@dusty-nv](https://github.com/dusty-nv)
152153

153154
### From Source
154155

155-
If you are installing from source, you will need Python 3.7 or later and a C++14 compiler. Also, we highly recommend installing an [Anaconda](https://www.anaconda.com/distribution/#download-section) environment.
156-
You will get a high-quality BLAS library (MKL) and you get controlled dependency versions regardless of your Linux distro.
156+
#### Prerequisites
157+
If you are installing from source, you will need:
158+
- Python 3.7 or later (for Linux, Python 3.7.6+ or 3.8.1+ is needed)
159+
- A C++14 compatible compiler, such as clang
157160

158-
Once you have [Anaconda](https://www.anaconda.com/distribution/#download-section) installed, here are the instructions.
161+
We highly recommend installing an [Anaconda](https://www.anaconda.com/distribution/#download-section) environment. You will get a high-quality BLAS library (MKL) and you get controlled dependency versions regardless of your Linux distro.
159162

160-
If you want to compile with CUDA support, install
163+
If you want to compile with CUDA support, install the following (note that CUDA is not supported on macOS)
161164
- [NVIDIA CUDA](https://developer.nvidia.com/cuda-downloads) 10.2 or above
162165
- [NVIDIA cuDNN](https://developer.nvidia.com/cudnn) v7 or above
163166
- [Compiler](https://gist.github.com/ax3l/9489132) compatible with CUDA
164-
Note: You could refer to the [cuDNN Support Matrix](https://docs.nvidia.com/deeplearning/cudnn/pdf/cuDNN-Support-Matrix.pdf) for cuDNN versions with the various supported CUDA, CUDA driver and NVIDIA hardwares
167+
168+
Note: You could refer to the [cuDNN Support Matrix](https://docs.nvidia.com/deeplearning/cudnn/pdf/cuDNN-Support-Matrix.pdf) for cuDNN versions with the various supported CUDA, CUDA driver and NVIDIA hardware
165169

166170
If you want to disable CUDA support, export the environment variable `USE_CUDA=0`.
167171
Other potentially useful environment variables may be found in `setup.py`.
@@ -177,25 +181,33 @@ Other potentially useful environment variables may be found in `setup.py`.
177181

178182
#### Install Dependencies
179183

180-
Common
184+
**Common**
185+
181186
```bash
182-
conda install astunparse numpy ninja pyyaml mkl mkl-include setuptools cmake cffi typing_extensions future six requests dataclasses
187+
conda install astunparse numpy ninja pyyaml setuptools cmake cffi typing_extensions future six requests dataclasses
183188
```
184189

185-
On Linux
190+
**On Linux**
191+
186192
```bash
193+
conda install mkl mkl-include
187194
# CUDA only: Add LAPACK support for the GPU if needed
188195
conda install -c pytorch magma-cuda110 # or the magma-cuda* that matches your CUDA version from https://anaconda.org/pytorch/repo
189196
```
190197

191-
On MacOS
198+
**On MacOS**
199+
192200
```bash
201+
# Add this package on intel x86 processor machines only
202+
conda install mkl mkl-include
193203
# Add these packages if torch.distributed is needed
194204
conda install pkg-config libuv
195205
```
196206

197-
On Windows
207+
**On Windows**
208+
198209
```bash
210+
conda install mkl mkl-include
199211
# Add these packages if torch.distributed is needed.
200212
# Distributed package support on Windows is a prototype feature and is subject to changes.
201213
conda install -c conda-forge libuv=1.39
@@ -211,15 +223,18 @@ git submodule update --init --recursive --jobs 0
211223
```
212224

213225
#### Install PyTorch
214-
On Linux
226+
**On Linux**
227+
228+
If you're compiling for AMD ROCm then first run this command:
215229
```bash
216-
export CMAKE_PREFIX_PATH=${CONDA_PREFIX:-"$(dirname $(which conda))/../"}
217-
python setup.py install
230+
# Only run this if you're compiling for ROCm
231+
python tools/amd_build/build_amd.py
218232
```
219233

220-
Note that if you are compiling for ROCm, you must run this command first:
234+
Install PyTorch
221235
```bash
222-
python tools/amd_build/build_amd.py
236+
export CMAKE_PREFIX_PATH=${CONDA_PREFIX:-"$(dirname $(which conda))/../"}
237+
python setup.py install
223238
```
224239

225240
Note that if you are using [Anaconda](https://www.anaconda.com/distribution/#download-section), you may experience an error caused by the linker:
@@ -232,16 +247,14 @@ error: command 'g++' failed with exit status 1
232247

233248
This is caused by `ld` from Conda environment shadowing the system `ld`. You should use a newer version of Python that fixes this issue. The recommended Python version is 3.7.6+ and 3.8.1+.
234249

235-
On macOS
250+
**On macOS**
251+
236252
```bash
237253
export CMAKE_PREFIX_PATH=${CONDA_PREFIX:-"$(dirname $(which conda))/../"}
238254
MACOSX_DEPLOYMENT_TARGET=10.9 CC=clang CXX=clang++ python setup.py install
239255
```
240256

241-
CUDA is not supported on macOS.
242-
243-
244-
On Windows
257+
**On Windows**
245258

246259
Choose Correct Visual Studio Version.
247260

@@ -255,17 +268,20 @@ come with Visual Studio Code by default.
255268

256269
If you want to build legacy python code, please refer to [Building on legacy code and CUDA](https://github.com/pytorch/pytorch/blob/master/CONTRIBUTING.md#building-on-legacy-code-and-cuda)
257270

258-
Build with CPU
271+
**CPU-only builds**
272+
273+
In this mode PyTorch computations will run on your CPU, not your GPU
259274

260-
It's fairly easy to build with CPU.
261275
```cmd
262276
conda activate
263277
python setup.py install
264278
```
265279

266280
Note on OpenMP: The desired OpenMP implementation is Intel OpenMP (iomp). In order to link against iomp, you'll need to manually download the library and set up the building environment by tweaking `CMAKE_INCLUDE_PATH` and `LIB`. The instruction [here](https://github.com/pytorch/pytorch/blob/master/docs/source/notes/windows.rst#building-from-source) is an example for setting up both MKL and Intel OpenMP. Without these configurations for CMake, Microsoft Visual C OpenMP runtime (vcomp) will be used.
267281

268-
Build with CUDA
282+
**CUDA based build**
283+
284+
In this mode PyTorch computations will leverage your GPU via CUDA for faster number crunching
269285

270286
[NVTX](https://docs.nvidia.com/gameworks/content/gameworkslibrary/nvtx/nvidia_tools_extension_library_nvtx.htm) is needed to build Pytorch with CUDA.
271287
NVTX is a part of CUDA distributive, where it is called "Nsight Compute". To install it onto already installed CUDA run CUDA installation once again and check the corresponding checkbox.

0 commit comments

Comments
 (0)