-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMakefile
118 lines (93 loc) · 4.71 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
###################################################################################################
#
# Paths to modify
#
###################################################################################################
# The CUDA path
CUDA_PATH ?= /usr/local/cuda-7.5
###################################################################################################
#
# Compiler options
#
###################################################################################################
# The compiler
NVCC = $(CUDA_PATH)/bin/nvcc
# The flags
NVCC_FLAGS = -O3 -lineinfo -gencode arch=compute_35,code=sm_35 -gencode arch=compute_37,code=sm_37
###################################################################################################
#
# Experiments options
#
###################################################################################################
#to run the experiments on device #x: make DEVICE=x run
DEVICE ?= 0
###################################################################################################
###################################################################################################
BINARIES = step-00
BINARIES += step-1a
BINARIES += step-1b
BINARIES += step-20
BINARIES += step-30
BINARIES += step-40
BINARIES += step-50
BINARIES += step-60
BINARIES += step-70
BINARIES += step-80
BINARIES += step-90
BINARIES += step-91
###################################################################################################
#
# The rules to build the code
#
###################################################################################################
all: $(BINARIES)
step-00: nsight-gtc.cu
$(NVCC) $(NVCC_FLAGS) -DOPTIMIZATION_STEP=0x00 -o nsight-gtc-step-00 $<
step-1a: nsight-gtc.cu
$(NVCC) $(NVCC_FLAGS) -DOPTIMIZATION_STEP=0x1a -o nsight-gtc-step-1a $<
step-1b: nsight-gtc.cu
$(NVCC) $(NVCC_FLAGS) -DOPTIMIZATION_STEP=0x1b -o nsight-gtc-step-1b $<
step-20: nsight-gtc.cu
$(NVCC) $(NVCC_FLAGS) -DOPTIMIZATION_STEP=0x20 -o nsight-gtc-step-20 $<
step-30: nsight-gtc.cu
$(NVCC) $(NVCC_FLAGS) -DOPTIMIZATION_STEP=0x30 -o nsight-gtc-step-30 $<
step-40: nsight-gtc.cu
$(NVCC) $(NVCC_FLAGS) -DOPTIMIZATION_STEP=0x40 -o nsight-gtc-step-40 $<
step-50: nsight-gtc.cu
$(NVCC) $(NVCC_FLAGS) -DOPTIMIZATION_STEP=0x50 -o nsight-gtc-step-50 $<
step-60: nsight-gtc.cu
$(NVCC) $(NVCC_FLAGS) -DOPTIMIZATION_STEP=0x60 -o nsight-gtc-step-60 $<
step-70: nsight-gtc.cu
$(NVCC) $(NVCC_FLAGS) -DOPTIMIZATION_STEP=0x70 -o nsight-gtc-step-70 $<
step-80: nsight-gtc.cu
$(NVCC) $(NVCC_FLAGS) -DOPTIMIZATION_STEP=0x80 -o nsight-gtc-step-80 $<
step-90: nsight-gtc.cu
$(NVCC) $(NVCC_FLAGS) -DOPTIMIZATION_STEP=0x90 -o nsight-gtc-step-90 $<
step-91: nsight-gtc.cu
$(NVCC) $(NVCC_FLAGS) --use_fast_math -DOPTIMIZATION_STEP=0x91 -o nsight-gtc-step-91 $<
clean:
rm -f nsight-gtc-step-00
rm -f nsight-gtc-step-1a
rm -f nsight-gtc-step-1b
rm -f nsight-gtc-step-20
rm -f nsight-gtc-step-30
rm -f nsight-gtc-step-40
rm -f nsight-gtc-step-50
rm -f nsight-gtc-step-60
rm -f nsight-gtc-step-70
rm -f nsight-gtc-step-80
rm -f nsight-gtc-step-90
rm -f nsight-gtc-step-91
run:
./nsight-gtc-step-00 $(DEVICE) data/claw.ppm
./nsight-gtc-step-1a $(DEVICE) data/claw.ppm
./nsight-gtc-step-1b $(DEVICE) data/claw.ppm
./nsight-gtc-step-20 $(DEVICE) data/claw.ppm
./nsight-gtc-step-30 $(DEVICE) data/claw.ppm
./nsight-gtc-step-40 $(DEVICE) data/claw.ppm
./nsight-gtc-step-50 $(DEVICE) data/claw.ppm
./nsight-gtc-step-60 $(DEVICE) data/claw.ppm
./nsight-gtc-step-70 $(DEVICE) data/claw.ppm
./nsight-gtc-step-80 $(DEVICE) data/claw.ppm
./nsight-gtc-step-90 $(DEVICE) data/claw.ppm
./nsight-gtc-step-91 $(DEVICE) data/claw.ppm