We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66b8e5d commit 6b7aba6Copy full SHA for 6b7aba6
Makefile.config.example
@@ -4,11 +4,15 @@
4
# CUDA directory contains bin/ and lib/ directories that we need.
5
CUDA_DIR := /usr/local/cuda
6
7
-# CUDA architecture setting: going with all of them.
+# CUDA architecture setting: going with all of them (up to CUDA 5.5 compatible).
8
+# For the latest architecture, you need to install CUDA >= 6.0 and uncomment
9
+# the *_50 lines below.
10
CUDA_ARCH := -gencode arch=compute_20,code=sm_20 \
11
-gencode arch=compute_20,code=sm_21 \
12
-gencode arch=compute_30,code=sm_30 \
13
-gencode arch=compute_35,code=sm_35
14
+ #-gencode=arch=compute_50,code=sm_50 \
15
+ #-gencode=arch=compute_50,code=compute_50
16
17
# BLAS choice:
18
# atlas for ATLAS (default)
0 commit comments