diff options
author | fireice-uk <fireice-uk@users.noreply.github.com> | 2017-10-21 19:46:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-21 19:46:19 +0100 |
commit | da6ff1b9e98849236b356321122f3f014c220be9 (patch) | |
tree | 0916415f75e92a02affc321ea7019572ec19a378 | |
parent | bd31e5b01968af3e95de55bc3779d4f2f455018b (diff) | |
parent | d7209b21fd5f388728c2fe40c92fcc4900d096e3 (diff) | |
download | xmr-stak-da6ff1b9e98849236b356321122f3f014c220be9.zip xmr-stak-da6ff1b9e98849236b356321122f3f014c220be9.tar.gz |
Merge pull request #59 from psychocrypt/topic-addVoltaSupport
add NVIDIA Volta support
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 015f7c2..9ae7b26 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -79,6 +79,10 @@ if(CUDA_ENABLE) if(NOT CUDA_VERSION VERSION_LESS 8.0) list(APPEND DEFAULT_CUDA_ARCH "60" "61" "62") endif() + # add Volta support for CUDA >= 9.0 + if(NOT CUDA_VERSION VERSION_LESS 9.0) + list(APPEND DEFAULT_CUDA_ARCH "70") + endif() set(CUDA_ARCH "${DEFAULT_CUDA_ARCH}" CACHE STRING "Set GPU architecture (semicolon separated list, e.g. '-DCUDA_ARCH=20;35;60')") # validate architectures (only numbers are allowed) |