forked from plctlab/riscv-vectorized-benchmark-suite
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
executable file
·80 lines (68 loc) · 1.32 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
BASE_DIR := $(shell pwd)
APPLICATION_DIRS := _blackscholes _swaptions _streamcluster _canneal _particlefilter _pathfinder _jacobi-2d _matmul _axpy
all: blackscholes swaptions streamcluster canneal particlefilter pathfinder jacobi-2d matmul axpy
blackscholes:
cd _blackscholes; \
make start; \
make vector; \
make serial; \
make host; \
make copy;
swaptions:
cd _swaptions; \
make start; \
make vector; \
make serial; \
make host; \
make copy;
streamcluster:
cd _streamcluster; \
make start; \
make vector; \
make serial; \
make host; \
make copy;
canneal:
cd _canneal; \
make start; \
make vector; \
make serial; \
make host; \
make copy;
particlefilter:
cd _particlefilter; \
make start; \
make vector; \
make serial; \
make host; \
make copy;
pathfinder:
cd _pathfinder; \
make start; \
make vector; \
make serial; \
make host; \
make copy;
jacobi-2d:
cd _jacobi-2d; \
make start; \
make vector; \
make serial; \
make host; \
make copy;
matmul:
cd _matmul; \
make start; \
make vector; \
make serial; \
make host; \
make copy;
axpy:
cd _axpy; \
make start; \
make vector; \
make serial; \
make host; \
make copy;
clean:
for dir in $(APPLICATION_DIRS) ; do cd $$dir ; make clean ; cd .. ; done