From 818893a0eaf5cb6af6ef7b0cdc50786ed03b9ae6 Mon Sep 17 00:00:00 2001 From: jpekkila Date: Fri, 26 Jul 2019 14:10:17 +0300 Subject: [PATCH] Fixed stray comma in CUDA_ARCH_FLAGS --- src/core/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 1177995..e70de80 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -12,7 +12,7 @@ set(CUDA_ARCH_FLAGS -gencode arch=compute_37,code=sm_37 -gencode arch=compute_61,code=sm_61 -lineinfo -ftz=true # Flush denormalized floats to zero - -std=c++11, + -std=c++11 --compiler-options -march=native) # Native host machine code #--maxrregcount=255 # -Xptxas -dlcm=ca opt-in to cache all global loads to L1/texture cache