-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
58 lines (42 loc) · 1.58 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
CPP=g++
NVCC= nvcc -arch=sm_70
NVCCFLAGS=-DCUDA
CFLAGS=-lm
OPTFLAGS=-O3
CFLAGS_DP=-lm
OPTFLAGS_DP=-O3 -march=native -mtune=native -fopenmp -ffast-math -funroll-loops -floop-parallelize-all
CFLAGS_NUMA=-lm -lnuma
SRC_DIR=common
ALGO_DIR=algorithms
BUILD_DIR=build
all: brute dp genetic greedy genetic_cuda dp_omp dp_cuda greedy_cuda dp_omp_numa
brute: $(BUILD_DIR)/brute
dp: $(BUILD_DIR)/dp
greedy: $(BUILD_DIR)/greedy
genetic: $(BUILD_DIR)/genetic
genetic_cuda: $(BUILD_DIR)/genetic_cuda
dp_omp: $(BUILD_DIR)/dp_omp
greedy_cuda: $(BUILD_DIR)/greedy_cuda
dp_cuda: $(BUILD_DIR)/dp_cuda
dp_omp_numa: $(BUILD_DIR)/dp_omp_numa
$(BUILD_DIR)/brute: $(SRC_DIR)/main.cpp $(ALGO_DIR)/brute.cpp
$(CPP) $^ -o $@ $(CFLAGS) $(OPTFLAGS)
$(BUILD_DIR)/dp: $(SRC_DIR)/main.cpp $(ALGO_DIR)/dp.cpp
$(CPP) $^ -o $@ $(CFLAGS) $(OPTFLAGS)
$(BUILD_DIR)/greedy: $(SRC_DIR)/main.cpp $(ALGO_DIR)/greedy.cpp
$(CPP) $^ -o $@ $(CFLAGS) $(OPTFLAGS)
$(BUILD_DIR)/genetic: $(SRC_DIR)/main.cpp $(ALGO_DIR)/genetic.cpp
$(CPP) $^ -o $@ $(CFLAGS) $(OPTFLAGS)
$(BUILD_DIR)/genetic_cuda: $(SRC_DIR)/main.cpp $(ALGO_DIR)/genetic_cuda.cu
$(NVCC) $^ -o $@ $(NVCCFLAGS)
$(BUILD_DIR)/dp_omp: $(SRC_DIR)/main.cpp $(ALGO_DIR)/dp_omp.cpp
$(CPP) $^ -o $@ $(CFLAGS_DP) $(OPTFLAGS_DP)
$(BUILD_DIR)/greedy_cuda: $(SRC_DIR)/main.cpp $(ALGO_DIR)/greedy_cuda.cu
$(NVCC) $^ -o $@ $(NVCCFLAGS)
$(BUILD_DIR)/dp_cuda: $(SRC_DIR)/main.cpp $(ALGO_DIR)/dp_cuda.cu
$(NVCC) $^ -o $@ $(NVCCFLAGS)
$(BUILD_DIR)/dp_omp_numa: $(SRC_DIR)/main.cpp $(ALGO_DIR)/dp_omp_numa.cpp
$(CPP) $^ -o $@ $(CFLAGS_NUMA) $(OPTFLAGS_DP)
.PHONY: clean
clean:
rm -f $(BUILD_DIR)/*