diff options
author | Tim Dettmers <dettmers@cs.washington.edu> | 2021-11-29 09:54:19 -0800 |
---|---|---|
committer | Tim Dettmers <dettmers@cs.washington.edu> | 2021-11-29 09:54:19 -0800 |
commit | 4e60e7dc62c50b6ba9b6becf6e779a1d48906be2 (patch) | |
tree | aeb2fb6538e43da48ddcf525fcb0823b289c997e | |
parent | 85287b9edaf3c0b992b7e296369541d12fe92816 (diff) |
Fixed makefile compute capabilities.
-rw-r--r-- | Makefile | 19 |
1 files changed, 9 insertions, 10 deletions
@@ -19,16 +19,15 @@ INCLUDE := -I $(CUDA_HOME)/include -I $(ROOT_DIR)/csrc -I $(CONDA_PREFIX)/inclu LIB := -L $(CUDA_HOME)/lib64 -lcudart -lcuda -lcublas -lcurand -lcusparse -L $(CONDA_PREFIX)/lib # NVIDIA NVCC compilation flags -#COMPUTE_CAPABILITY := -gencode arch=compute_35,code=sm_35 # Kepler -#COMPUTE_CAPABILITY += -gencode arch=compute_37,code=sm_37 # Kepler -#COMPUTE_CAPABILITY += -gencode arch=compute_50,code=sm_50 # Maxwell -#COMPUTE_CAPABILITY += -gencode arch=compute_52,code=sm_52 # Maxwell -#COMPUTE_CAPABILITY += -gencode arch=compute_60,code=sm_60 # Pascal -#COMPUTE_CAPABILITY += -gencode arch=compute_61,code=sm_61 # Pascal -#COMPUTE_CAPABILITY += -gencode arch=compute_70,code=sm_70 # Volta -#COMPUTE_CAPABILITY += -gencode arch=compute_72,code=sm_72 # Volta -#COMPUTE_CAPABILITY += -gencode arch=compute_72,code=sm_72 # Volta -COMPUTE_CAPABILITY := -gencode arch=compute_75,code=sm_75 # Volta +COMPUTE_CAPABILITY := -gencode arch=compute_35,code=sm_35 # Kepler +COMPUTE_CAPABILITY += -gencode arch=compute_37,code=sm_37 # Kepler +COMPUTE_CAPABILITY += -gencode arch=compute_50,code=sm_50 # Maxwell +COMPUTE_CAPABILITY += -gencode arch=compute_52,code=sm_52 # Maxwell +COMPUTE_CAPABILITY += -gencode arch=compute_60,code=sm_60 # Pascal +COMPUTE_CAPABILITY += -gencode arch=compute_61,code=sm_61 # Pascal +COMPUTE_CAPABILITY += -gencode arch=compute_70,code=sm_70 # Volta +COMPUTE_CAPABILITY += -gencode arch=compute_72,code=sm_72 # Volta +COMPUTE_CAPABILITY += -gencode arch=compute_72,code=sm_72 # Volta # CUDA 9.2 supports CC 3.0, but CUDA >= 11.0 does not CC_CUDA92 := -gencode arch=compute_30,code=sm_30 |