summaryrefslogtreecommitdiffstats
path: root/copy_experiments/Makefile
blob: b2d55c25798e784f509e9feb389b2f68c8bf4c76 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
.PHONY: all clean

all: copy_contender mon_cross_ctx_copies

copy_contender: copy_contender.cu copy_testbench.h ../testbench.h
	/usr/local/cuda/bin/nvcc copy_contender.cu -o $@ -lcuda -g

mon_cross_ctx_copies: mon_cross_ctx_copies.cu copy_testbench.h ../testbench.h
	/usr/local/cuda/bin/nvcc mon_cross_ctx_copies.cu -o $@ -lcuda -lpthread -g

clean:
	rm -f copy_contender mon_cross_ctx_copies