summaryrefslogtreecommitdiff
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorEdward Z. Yang <ezyang@fb.com>2017-04-26 12:38:08 -0400
committerAdam Paszke <adam.paszke@gmail.com>2017-04-26 21:42:09 +0200
commitd9f01397b38b40b63b4a90cf4d2ae52f2d0b8f12 (patch)
tree4d659b938ccb5ef40f5289f48ae1e02c5fef8b3d /CONTRIBUTING.md
parent8ca7bf2ab3b1eb474a481e3a6673312d0b63f4a6 (diff)
downloadpytorch-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.md4
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:
```