File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
05_debug_profiling/08_memcheck Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11CUDA_PATH =/usr/local/cuda
22HOST_COMPILER ?= g++
33NVCC =${CUDA_PATH}/bin/nvcc -ccbin ${HOST_COMPILER}
4- TARGET =simple_sgemm oob mem_leak
4+ TARGET =simple_sgemm simple_sgemm_oob simple_sgemm_mem_leak
55
66INCLUDES = -I${CUDA_PATH}/samples/common/inc
77NVCC_FLAGS =-m64
@@ -20,10 +20,10 @@ all : ${TARGET}
2020simple_sgemm : simple_sgemm.cu
2121 $(EXEC ) $(NVCC ) $(ALL_CCFLAGS ) $(GENCODE_FLAGS ) -o $@ $+ $(LIBRARIES )
2222
23- oob : simple_sgemm_oob.cu
23+ simple_sgemm_oob : simple_sgemm_oob.cu
2424 $(EXEC ) $(NVCC ) $(ALL_CCFLAGS ) $(GENCODE_FLAGS ) -o $@ $+ $(LIBRARIES )
2525
26- mem_leak : simple_sgemm_mem_leak.cu
26+ simple_sgemm_mem_leak : simple_sgemm_mem_leak.cu
2727 $(EXEC ) $(NVCC ) $(ALL_CCFLAGS ) $(GENCODE_FLAGS ) -o $@ $+ $(LIBRARIES )
2828
2929clean :
You can’t perform that action at this time.
0 commit comments