diff options
author | Edward Z. Yang <ezyang@fb.com> | 2017-04-26 12:38:08 -0400 |
---|---|---|
committer | Adam Paszke <adam.paszke@gmail.com> | 2017-04-26 21:42:09 +0200 |
commit | d9f01397b38b40b63b4a90cf4d2ae52f2d0b8f12 (patch) | |
tree | 4d659b938ccb5ef40f5289f48ae1e02c5fef8b3d /CONTRIBUTING.md | |
parent | 8ca7bf2ab3b1eb474a481e3a6673312d0b63f4a6 (diff) | |
download | pytorch-d9f01397b38b40b63b4a90cf4d2ae52f2d0b8f12.tar.gz pytorch-d9f01397b38b40b63b4a90cf4d2ae52f2d0b8f12.tar.bz2 pytorch-d9f01397b38b40b63b4a90cf4d2ae52f2d0b8f12.zip |
s/NOCUDA/NO_CUDA/
Signed-off-by: Edward Z. Yang <ezyang@fb.com>
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r-- | CONTRIBUTING.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0bf551feb2..6f73f4c717 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -72,10 +72,10 @@ You do not need to repeatedly install after modifying python files. #### C++ Development tips -When you are developing on the C++ side of things, the environment variables `DEBUG` and `NOCUDA` are helpful. +When you are developing on the C++ side of things, the environment variables `DEBUG` and `NO_CUDA` are helpful. - `DEBUG=1` will enable debug builds (-g -O0) -- `NOCUDA=1` will disable compiling CUDA (in case you are developing on something not CUDA related), to save compile time. +- `NO_CUDA=1` will disable compiling CUDA (in case you are developing on something not CUDA related), to save compile time. For example: ``` |