Merge pull request #2493 from blattms/fix-cuda-version-fix

Check for cuda 9.0 or newer as we are supposed to.
This commit is contained in:
Markus Blatt 2020-03-23 11:11:35 +01:00 committed by GitHub
commit 3d04df9759
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,7 +48,7 @@ if(NOT CMAKE_DISABLE_FIND_PACKAGE_CUDA AND
# Hence we call it unconditionally
# The WellContributions kernel uses __shfl_down_sync, which was introduced in CUDA 9.0
find_package(CUDA)
if(CUDA_VERSION VERSION_LESS "9.7")
if(CUDA_VERSION VERSION_LESS "9.0")
set(CUDA_FOUND OFF)
message(WARNING "Deactivating CUDA as we require version 9.0 or newer."
" Found only CUDA version ${CUDA_VERSION}.")