summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 6922730fd3ba13f6827b7c21b76186d829fe54bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
all: gpu_paging_speed paging_speed directio_paging_speed gpu_paging_evil_task gpu_paging_overhead_speed \
     demand_paging_speed

gpu_paging_speed: gpu_paging_speed.cu
	/usr/local/cuda/bin/nvcc -gencode=arch=compute_72,code=sm_72 $^ -o $@ -lcuda

gpu_paging_overhead_speed: gpu_paging_overhead_speed.cu
	/usr/local/cuda/bin/nvcc -gencode=arch=compute_72,code=sm_72 $^ -o $@ -lcuda

gpu_paging_evil_task: gpu_paging_evil_task.cu
	/usr/local/cuda/bin/nvcc -gencode=arch=compute_72,code=sm_72 $^ -o $@ -lcuda

directio_paging_speed: directio_paging_speed.c
	gcc $^ -o $@

demand_paging_speed: demand_paging_speed.c
	gcc $^ -o $@

paging_speed: paging_speed.c
	gcc $^ -o $@