
all:	CPU_test GPU_test

CPU_test:	CPU_test.cpp Makefile
	icpx CPU_test.cpp -o CPU_test -O3 -xHost -qopenmp -qmkl

GPU_test:	GPU_test.cu Makefile
	nvcc GPU_test.cu -o GPU_test  -I. $(NVCCFLAGS) -lcudart -lcurand

clean:
	rm -f CPU_test GPU_test
