diff options
author | Robert Maynard <rmaynard@nvidia.com> | 2022-04-27 18:49:50 (GMT) |
---|---|---|
committer | Robert Maynard <rmaynard@nvidia.com> | 2022-05-03 15:52:23 (GMT) |
commit | e8591f1516edffe9fc2ef138e5933a1c9914e9e5 (patch) | |
tree | 48291e9460af4a2bd6179b18685161ac23757385 /Tests/CudaOnly | |
parent | e0dbca93aae6b01f8b239d346a0bc99d2ca2473e (diff) | |
download | CMake-e8591f1516edffe9fc2ef138e5933a1c9914e9e5.zip CMake-e8591f1516edffe9fc2ef138e5933a1c9914e9e5.tar.gz CMake-e8591f1516edffe9fc2ef138e5933a1c9914e9e5.tar.bz2 |
CUDA: native/all/all-major generates minimal set of ptx code
Fixes #23459
Diffstat (limited to 'Tests/CudaOnly')
-rw-r--r-- | Tests/CudaOnly/ArchSpecial/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tests/CudaOnly/ArchSpecial/CMakeLists.txt b/Tests/CudaOnly/ArchSpecial/CMakeLists.txt index 46f4ada..88eff8a 100644 --- a/Tests/CudaOnly/ArchSpecial/CMakeLists.txt +++ b/Tests/CudaOnly/ArchSpecial/CMakeLists.txt @@ -10,6 +10,7 @@ function(verify_output flag) string(REPLACE "-" "_" architectures "${flag}") string(TOUPPER "${architectures}" architectures) set(architectures "${CMAKE_CUDA_ARCHITECTURES_${architectures}}") + list(TRANSFORM architectures REPLACE "-real" "") if(CMAKE_CUDA_COMPILER_ID STREQUAL "Clang") set(match_regex "-target-cpu sm_([0-9]+)") |