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

all: copy_contender mon_cross_ctx_copies

copy_contender: copy_contender.cu copy_testbench.h ../testbench.h
	$(NVCC) copy_contender.cu -o $@ -lcuda -g

mon_cross_ctx_copies: mon_cross_ctx_copies.cu copy_testbench.h ../testbench.h
	$(NVCC) mon_cross_ctx_copies.cu -o $@ -lcuda -lpthread -g

clean:
	rm -f copy_contender mon_cross_ctx_copies