summaryrefslogtreecommitdiffstats
path: root/Tests/CudaOnly/SeparateCompilation
diff options
context:
space:
mode:
authorRobert Maynard <robert.maynard@kitware.com>2017-12-21 21:26:27 (GMT)
committerRobert Maynard <robert.maynard@kitware.com>2018-01-10 15:45:57 (GMT)
commita91fde135d8a9fb03a28d0760f0c052a26350b91 (patch)
tree4c4ab14b6c4b49ef9edf835009b53de5bfd593c6 /Tests/CudaOnly/SeparateCompilation
parent1f29bc4092edf57cfb61882d7d7358db7e53ebe6 (diff)
downloadCMake-a91fde135d8a9fb03a28d0760f0c052a26350b91.zip
CMake-a91fde135d8a9fb03a28d0760f0c052a26350b91.tar.gz
CMake-a91fde135d8a9fb03a28d0760f0c052a26350b91.tar.bz2
CUDA: gencode signature that list multiple code types now supported.
Fixes #17263
Diffstat (limited to 'Tests/CudaOnly/SeparateCompilation')
-rw-r--r--Tests/CudaOnly/SeparateCompilation/CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/Tests/CudaOnly/SeparateCompilation/CMakeLists.txt b/Tests/CudaOnly/SeparateCompilation/CMakeLists.txt
index cfca823..c934c51 100644
--- a/Tests/CudaOnly/SeparateCompilation/CMakeLists.txt
+++ b/Tests/CudaOnly/SeparateCompilation/CMakeLists.txt
@@ -9,7 +9,8 @@ project (CudaOnlySeparateCompilation CUDA)
#and executables.
#We complicate the matter by also testing that multiple static libraries
#all containing cuda separable compilation code links properly
-string(APPEND CMAKE_CUDA_FLAGS " -gencode arch=compute_30,code=compute_30")
+string(APPEND CMAKE_CUDA_FLAGS " -gencode arch=compute_30,code=\\\"compute_30,sm_30,sm_35\\\"")
+string(APPEND CMAKE_CUDA_FLAGS " --generate-code=arch=compute_50,code=[compute_50,sm_50,sm_52]")
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CUDA_STANDARD 11)