File tree Expand file tree Collapse file tree
posts/cuda-aware-mpi-example/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -34,15 +34,12 @@ CFLAGS=-std=c99 -O3 -march=native -Wall
3434MPICFLAGS =-I${MPI_HOME}/include
3535CUDACFLAGS =-I${CUDA_INSTALL_PATH}/include
3636
37- GENCODE_SM30 := -gencode arch=compute_30,code=sm_30
38- GENCODE_SM35 := -gencode arch=compute_35,code=sm_35
39- GENCODE_SM35 := -gencode arch=compute_37,code=sm_37
4037GENCODE_SM50 := -gencode arch=compute_50,code=sm_50
4138GENCODE_SM52 := -gencode arch=compute_52,code=sm_52
4239GENCODE_SM60 := -gencode arch=compute_60,code=sm_60
4340GENCODE_SM70 := -gencode arch=compute_70,code=\"sm_70,compute_70\"
44- GENCODE_FLAGS := $(GENCODE_SM30 ) $(GENCODE_SM35 ) $(GENCODE_SM37 ) \
45- $( GENCODE_SM50 ) $( GENCODE_SM52 ) $( GENCODE_SM60 ) $( GENCODE_SM70 )
41+ GENCODE_FLAGS := $(GENCODE_SM50 ) $(GENCODE_SM52 ) $(GENCODE_SM60 ) $( GENCODE_SM70 )
42+
4643
4744NVCCFLAGS =-O3 $(GENCODE_FLAGS ) -Xcompiler -march=native
4845
You can’t perform that action at this time.
0 commit comments