-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
93 lines (71 loc) · 2.51 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
######## DEFINE COMPILER ######################################
# Use the Intel c and C++ compiler
#CC = icc
#CPP = icpc
# Use the GNU C and C++ compiler
#CC = gcc
#CPP = g++
# Use clang (LLVM) compiler
#CC = clang
#CPP = clang++
# PGI
CC = pgcc
CPP = pgc++
######## DEFINE COMPILER FLAGS ################################
CFLAGS = -O3
VERBOSEFLAGS = -DVERBOSE
# If you want to make use of the likwid profiler
# uncommend the following two lines
# the evvirement variables LIKWID_LIB and LIKWID_INC has to be set
# on the rrze cluster this variables are already set
LIKWIDFLAGS = -DUSE_LIKWID $(LIKWID_INC) -DLIKWID_PERFMON
LIKWIDLD_FLAGS = $(LIKWID_LIB) -llikwid -lm
ifeq "$(CC)" "gcc"
VERBOSEFLAGS += -g -Wall -ansi
ARCHFLAGS += -march=native
else ifeq "$(CC)" "icc"
VERBOSEFLAGS += -g -Wall -ansi
ARCHFLAGS += -xhost
else ifeq "$(CC)" "clang"
VERBOSEFLAGS += -g -Wall -ansi
else ifeq "$(CC)" "pgcc"
# ARCHFLAGS += -tp=sandybridge
VERBOSEFLAGS += -gopt -Minfo=accel,loop,opt,unified,vect,lre,par
endif
CFLAGS += $(ARCHFLAGS)
#CFLAGS += $(VERBOSEFLAGS)
omp: CFLAGS += -fopenmp $(LIKWIDFLAGS)
acc: CFLAGS += -acc -ta=tesla:lineinfo,cuda8.0,cc35 #TODO vielleciht auch mal pined ausprobieren
CPPFLAGS = $(CFLAGS) -std=c++11
LDFLAGS = $(LIKWIDLD_FLAGS)
RM = rm -f
######## DEFINE DEPENDANCY AND RULES ##########################
BIN = benchmark
OFILES_test = mmio/mmio.o MMreader.o CSRMatrix.o timing/timing.o test.o
OFILES_benchmark = mmio/mmio.o MMreader.o CSRMatrix.o timing/timing.o benchmark.o
.PHONY: all clean
all: omp
omp: $(BIN)
acc: $(BIN)
clean:
$(RM) $(BIN) $(OFILES_test) $(OFILES_benchmark)
########## BIN ################################################
test: $(OFILES_test)
$(CPP) $(CPPFLAGS) -o $@ $^ $(LDFLAGS)
benchmark: $(OFILES_benchmark)
$(CPP) $(CPPFLAGS) -o $@ $^ $(LDFLAGS)
########## C FILES ###########################################
.c.o:
$(CC) $(CFLAGS) -c $<
mmio/mmio.o: mmio/mmio.c mmio/mmio.h
$(CC) $(CFLAGS) -c -o $@ $<
timing/timing.o: timing/timing.c timing/timing.h
$(CC) $(CFLAGS) -c -o $@ $<
########## CPP FILES #########################################
.cpp.o:
$(CPP) $(CPPFLAGS) -c $<
########## DEPENDENCIES ######################################
test.o: test.cpp CSRMatrix.hpp SellCSigma.hpp MMreader.hpp spMV.hpp
MMreader.o: MMreader.cpp MMreader.hpp mmio/mmio.h
CSRMatrix.o: CSRMatrix.cpp CSRMatrix.hpp MMreader.hpp
benchmark.o: benchmark.cpp CSRMatrix.hpp SellCSigma.hpp MMreader.hpp spMV.hpp