From afdaf59b3b179af51553614c85925dd2ab0a39a4 Mon Sep 17 00:00:00 2001 From: Luke Yeager Date: Wed, 24 Jun 2020 14:39:22 -0700 Subject: [PATCH] Fix typo in src/Makefile --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 0770f08..52169bb 100644 --- a/src/Makefile +++ b/src/Makefile @@ -21,7 +21,7 @@ CUDA_MAJOR = $(shell echo $(CUDA_VERSION) | cut -d "." -f 1) ifeq ($(shell test "0$(CUDA_MAJOR)" -ge 11; echo $$?),0) NVCC_GENCODE ?= -gencode=arch=compute_60,code=sm_60 \ -gencode=arch=compute_61,code=sm_61 \ - -genncode=arch=compute_70,code=sm_70 \ + -gencode=arch=compute_70,code=sm_70 \ -gencode=arch=compute_80,code=sm_80 \ -gencode=arch=compute_80,code=compute_80 else