summaryrefslogtreecommitdiffstats
path: root/Help/release/dev/cuda-arch-native.rst
Commit message (Collapse)AuthorAgeFilesLines
* Help: Consolidate 3.24 release notesBrad King2022-06-071-7/+0
| | | | | Run the `Utilities/Release/consolidate-relnotes.bash` script to move notes from `Help/release/dev/*` into `Help/release/3.24.rst`.
* CUDA: Add support for CUDA_ARCHITECTURES=nativeBrad King2022-03-101-0/+7
CUDA 11.6 added the `nvcc -arch=native` flag to automatically compile for the host GPUs' architectures. Add support for specifying this special `native` value in `CMAKE_CUDA_ARCHITECTURES` and `CUDA_ARCHITECTURES`. During the compiler ABI detection step, detect the native architectures so we can pass them explicitly when using Clang or older versions of nvcc. Fixes: #22375