summaryrefslogtreecommitdiffstats
path: root/Help/envvar
diff options
context:
space:
mode:
authorRaul Tambre <raul@tambre.ee>2020-11-24 17:21:36 (GMT)
committerRaul Tambre <raul@tambre.ee>2020-11-30 15:57:11 (GMT)
commitc4ae9384ff4d355f51c06180984dd4d053f074cc (patch)
tree521f3e008bf3dee883e08d2605774d14cbefeb21 /Help/envvar
parent8187bd2f4bc54c9003cb0034b21530e3bfd24e8d (diff)
downloadCMake-c4ae9384ff4d355f51c06180984dd4d053f074cc.zip
CMake-c4ae9384ff4d355f51c06180984dd4d053f074cc.tar.gz
CMake-c4ae9384ff4d355f51c06180984dd4d053f074cc.tar.bz2
CUDA: Initialize CMAKE_CUDA_ARCHITECTURES using $ENV{CUDAARCHS}
NVCC's default architecture may be newer than the one supported by the machine's GPU. In such cases it's useful to have an environment variable for initializing CMAKE_CUDA_ARCHITECTURES to avoid specifying it for every invocation.
Diffstat (limited to 'Help/envvar')
-rw-r--r--Help/envvar/CUDAARCHS.rst13
1 files changed, 13 insertions, 0 deletions
diff --git a/Help/envvar/CUDAARCHS.rst b/Help/envvar/CUDAARCHS.rst
new file mode 100644
index 0000000..82369cd
--- /dev/null
+++ b/Help/envvar/CUDAARCHS.rst
@@ -0,0 +1,13 @@
+CUDAARCHS
+---------
+
+.. versionadded:: 3.20
+
+.. include:: ENV_VAR.txt
+
+Value used to initialize :variable:`CMAKE_CUDA_ARCHITECTURES` on the first
+configuration if it's not already defined. Subsequent runs will use the value
+stored in the cache.
+
+This is a semicolon-separated list of architectures as described in
+:prop_tgt:`CUDA_ARCHITECTURES`.