From f9a56d4af205cdb900a36f16434a4cbc3d5b1f0f Mon Sep 17 00:00:00 2001 From: Stas Bekman Date: Fri, 5 Apr 2019 12:46:44 -0700 Subject: [PATCH] CUDA_NVCC_EXECUTABLE is not needed, as nvcc is in PATH (#18958) Summary: As indicated by f0k: https://github.com/pytorch/pytorch/pull/18495#issuecomment-480178763 nvcc via ccache is already first in the PATH in the instructions I provided, so CUDA_NVCC_EXECUTABLE is not needed. I re-built to test that it's so. Thank you! Pull Request resolved: https://github.com/pytorch/pytorch/pull/18958 Differential Revision: D14810732 Pulled By: ezyang fbshipit-source-id: 3758ae2253c745c5d7cfccedd49fa00cc4629965 --- CONTRIBUTING.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 593134524da9..c47d7ed5b6d4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -348,7 +348,6 @@ ccache -F 0 # deploy (and add to ~/.bashrc for later) export PATH="/usr/lib/ccache:$PATH" -export CUDA_NVCC_EXECUTABLE=/usr/lib/ccache/nvcc ``` ## CUDA Development tips