Skip to content

Commit 31c7370

Browse files
author
Sam
committed
fix redundant
1 parent c94990a commit 31c7370

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

  • src/cuda/GPU_Microbenchmark/ubench/tma/mbarrier

src/cuda/GPU_Microbenchmark/ubench/tma/mbarrier/Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@ SRC = mbarrier.cu
22

33
EXE = mbarrier
44

5+
ARCH_DEFAULT := sm_80 sm_90a sm_100a
56
ifneq ($(filter 13 14 15 16,$(CUDA_VERSION_MAJOR)),)
6-
ARCH_DEFAULT := sm_80 sm_90a sm_100a sm_110 sm_120
7+
ARCH_DEFAULT += sm_110
78
else
8-
ARCH_DEFAULT := sm_80 sm_90a sm_100a sm_101 sm_120
9+
ARCH_DEFAULT += sm_101
910
endif
11+
ARCH_DEFAULT += sm_120
1012
ARCH ?= $(ARCH_DEFAULT)
1113
# Unset the CUDA_CPPFLAGS which is set based on CUDA version
1214
CUDA_CPPFLAGS=

0 commit comments

Comments
 (0)