BabelStream/CUDA.make
2017-02-24 11:57:34 +00:00

9 lines
131 B
Makefile

cuda-stream: main.cpp CUDAStream.cu
nvcc -std=c++11 -O3 -DCUDA $^ $(EXTRA_FLAGS) -o $@
.PHONY: clean
clean:
rm -f cuda-stream