1 | ######################## -*- Mode: Makefile-Automake -*- ###################### |
---|
2 | ## |
---|
3 | ## Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo |
---|
4 | ## |
---|
5 | ## The contents of this file are covered under the licence agreement in the |
---|
6 | ## file "LICENCE" distributed with Cforall. |
---|
7 | ## |
---|
8 | ## Makefile.am -- |
---|
9 | ## |
---|
10 | ## Author : Peter A. Buhr |
---|
11 | ## Created On : Sun May 31 09:08:15 2015 |
---|
12 | ## Last Modified By : Peter A. Buhr |
---|
13 | ## Last Modified On : Mon Jan 25 22:31:42 2016 |
---|
14 | ## Update Count : 25 |
---|
15 | ############################################################################### |
---|
16 | |
---|
17 | # applies to both programs |
---|
18 | CFLAGS = |
---|
19 | AM_CFLAGS = -g -Wall -Wno-unused-function -O2 |
---|
20 | CC = @CFA_BINDIR@/@CFA_NAME@ |
---|
21 | TOOLSDIR = ${abs_top_srcdir}/tools/ |
---|
22 | REPEAT = ${TOOLSDIR}repeat |
---|
23 | STATS = ${TOOLSDIR}stat.py |
---|
24 | repeats = 30 |
---|
25 | skipcompile = no |
---|
26 | TIME_FORMAT = "%E" |
---|
27 | PRINT_FORMAT = %20s: #Comments needed for spacing |
---|
28 | |
---|
29 | .NOTPARALLEL: |
---|
30 | |
---|
31 | noinst_PROGRAMS = |
---|
32 | |
---|
33 | all : ctxswitch$(EXEEXT) mutex$(EXEEXT) signal$(EXEEXT) waitfor$(EXEEXT) creation$(EXEEXT) |
---|
34 | |
---|
35 | %.run : %$(EXEEXT) ${REPEAT} |
---|
36 | @rm -f .result.log |
---|
37 | @echo "------------------------------------------------------" |
---|
38 | @echo $< |
---|
39 | @${REPEAT} ${repeats} ./a.out | tee -a .result.log |
---|
40 | @${STATS} .result.log |
---|
41 | @echo "------------------------------------------------------" |
---|
42 | @rm -f a.out .result.log |
---|
43 | |
---|
44 | %.runquiet : |
---|
45 | @+make $(basename $@) CFLAGS="-w" |
---|
46 | @taskset -c 1 ./a.out |
---|
47 | @rm -f a.out |
---|
48 | |
---|
49 | %.make : |
---|
50 | @printf "${PRINT_FORMAT}" $(basename $(subst compile-,,$@)) |
---|
51 | @+/usr/bin/time -f ${TIME_FORMAT} make $(basename $@) 2>&1 |
---|
52 | |
---|
53 | ${REPEAT} : |
---|
54 | @+make -C ${TOOLSDIR} repeat |
---|
55 | |
---|
56 | ## ========================================================================================================= |
---|
57 | |
---|
58 | jenkins$(EXEEXT): |
---|
59 | @echo "{" |
---|
60 | @echo -e '\t"githash": "'${githash}'",' |
---|
61 | @echo -e '\t"arch": "' ${arch} '",' |
---|
62 | @DOifskipcompile@ |
---|
63 | @echo -e '\t"compile": {' |
---|
64 | @+make compile TIME_FORMAT='%e,' PRINT_FORMAT='\t\t\"%s\" :' |
---|
65 | @echo -e '\t\t"dummy" : {}' |
---|
66 | @echo -e '\t},' |
---|
67 | @DOendif@ |
---|
68 | @echo -e '\t"ctxswitch": {' |
---|
69 | @echo -en '\t\t"coroutine":' |
---|
70 | @+make ctxswitch-cfa_coroutine.runquiet |
---|
71 | @echo -en '\t\t,"thread":' |
---|
72 | @+make ctxswitch-cfa_thread.runquiet |
---|
73 | @echo -e '\t},' |
---|
74 | @echo -e '\t"mutex": [' |
---|
75 | @echo -en '\t\t' |
---|
76 | @+make mutex-cfa1.runquiet |
---|
77 | @echo -en '\t\t,' |
---|
78 | @+make mutex-cfa2.runquiet |
---|
79 | @echo -e '\t],' |
---|
80 | @echo -e '\t"scheduling": [' |
---|
81 | @echo -en '\t\t' |
---|
82 | @+make signal-cfa1.runquiet |
---|
83 | @echo -en '\t\t,' |
---|
84 | @+make signal-cfa2.runquiet |
---|
85 | @echo -en '\t\t,' |
---|
86 | @+make waitfor-cfa1.runquiet |
---|
87 | @echo -en '\t\t,' |
---|
88 | @+make waitfor-cfa2.runquiet |
---|
89 | @echo -e '\n\t],' |
---|
90 | @echo -e '\t"epoch": ' $(shell date +%s) |
---|
91 | @echo "}" |
---|
92 | |
---|
93 | ## ========================================================================================================= |
---|
94 | loop$(EXEEXT): |
---|
95 | @@BACKEND_CC@ loop.c -DBENCH_N=5000000000 -I. -lrt -pthread ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
96 | |
---|
97 | function$(EXEEXT): |
---|
98 | @@BACKEND_CC@ function.c -DBENCH_N=5000000000 -I. -lrt -pthread ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
99 | |
---|
100 | fetch_add$(EXEEXT): |
---|
101 | @@BACKEND_CC@ fetch_add.c -DBENCH_N=500000000 -I. -lrt -pthread ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
102 | |
---|
103 | ## ========================================================================================================= |
---|
104 | ctxswitch$(EXEEXT): \ |
---|
105 | loop.run \ |
---|
106 | function.run \ |
---|
107 | fetch_add.run \ |
---|
108 | ctxswitch-pthread.run \ |
---|
109 | ctxswitch-cfa_coroutine.run \ |
---|
110 | ctxswitch-cfa_thread.run \ |
---|
111 | ctxswitch-cfa_thread2.run \ |
---|
112 | ctxswitch-upp_coroutine.run \ |
---|
113 | ctxswitch-upp_thread.run \ |
---|
114 | -ctxswitch-kos_fibre.run \ |
---|
115 | -ctxswitch-kos_fibre2.run \ |
---|
116 | ctxswitch-goroutine.run \ |
---|
117 | ctxswitch-java_thread.run |
---|
118 | |
---|
119 | ctxswitch-pthread$(EXEEXT): |
---|
120 | @@BACKEND_CC@ ctxswitch/pthreads.c -DBENCH_N=50000000 -I. -lrt -pthread ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
121 | |
---|
122 | ctxswitch-cfa_coroutine$(EXEEXT): |
---|
123 | @${CC} ctxswitch/cfa_cor.c -DBENCH_N=50000000 -I. -nodebug -lrt -quiet @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
124 | |
---|
125 | ctxswitch-cfa_thread$(EXEEXT): |
---|
126 | @${CC} ctxswitch/cfa_thrd.c -DBENCH_N=50000000 -I. -nodebug -lrt -quiet @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
127 | |
---|
128 | ctxswitch-cfa_thread2$(EXEEXT): |
---|
129 | @${CC} ctxswitch/cfa_thrd2.c -DBENCH_N=50000000 -I. -nodebug -lrt -quiet @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
130 | |
---|
131 | ctxswitch-upp_coroutine$(EXEEXT): |
---|
132 | @u++ ctxswitch/upp_cor.cc -DBENCH_N=50000000 -I. -nodebug -lrt -quiet ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
133 | |
---|
134 | ctxswitch-upp_thread$(EXEEXT): |
---|
135 | @u++ ctxswitch/upp_thrd.cc -DBENCH_N=50000000 -I. -nodebug -lrt -quiet ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
136 | |
---|
137 | ctxswitch-kos_fibre$(EXEEXT): |
---|
138 | @${CXX} ctxswitch/kos_fibre.cpp -DBENCH_N=50000000 -I. -I/home/tdelisle/software/KOS/src/ -g -O2 -lfibre -lpthread -lrt |
---|
139 | |
---|
140 | ctxswitch-kos_fibre2$(EXEEXT): |
---|
141 | @${CXX} ctxswitch/kos_fibre2.cpp -DBENCH_N=50000000 -I. -I/home/tdelisle/software/KOS/src/ -g -O2 -lfibre -lpthread -lrt |
---|
142 | |
---|
143 | ctxswitch-goroutine$(EXEEXT): |
---|
144 | @go build -o a.out ctxswitch/goroutine.go |
---|
145 | |
---|
146 | ctxswitch-java_thread$(EXEEXT): |
---|
147 | @javac ctxswitch/JavaThread.java |
---|
148 | @echo "#!/bin/sh" > a.out |
---|
149 | @echo "cd ctxswitch && java JavaThread" >> a.out |
---|
150 | @chmod a+x a.out |
---|
151 | |
---|
152 | ## ========================================================================================================= |
---|
153 | mutex$(EXEEXT) :\ |
---|
154 | loop.run \ |
---|
155 | function.run \ |
---|
156 | fetch_add.run \ |
---|
157 | mutex-pthread_lock.run \ |
---|
158 | mutex-upp.run \ |
---|
159 | mutex-cfa1.run \ |
---|
160 | mutex-cfa2.run \ |
---|
161 | mutex-cfa4.run \ |
---|
162 | mutex-java_thread.run |
---|
163 | |
---|
164 | mutex-pthread_lock$(EXEEXT): |
---|
165 | @@BACKEND_CC@ mutex/pthreads.c -DBENCH_N=50000000 -I. -lrt -pthread ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
166 | |
---|
167 | mutex-upp$(EXEEXT): |
---|
168 | @u++ mutex/upp.cc -DBENCH_N=50000000 -I. -nodebug -lrt -quiet ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
169 | |
---|
170 | mutex-cfa1$(EXEEXT): |
---|
171 | @${CC} mutex/cfa1.c -DBENCH_N=5000000 -I. -nodebug -lrt -quiet @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
172 | |
---|
173 | mutex-cfa2$(EXEEXT): |
---|
174 | @${CC} mutex/cfa2.c -DBENCH_N=5000000 -I. -nodebug -lrt -quiet @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
175 | |
---|
176 | mutex-cfa4$(EXEEXT): |
---|
177 | @${CC} mutex/cfa4.c -DBENCH_N=5000000 -I. -nodebug -lrt -quiet @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
178 | |
---|
179 | mutex-java_thread$(EXEEXT): |
---|
180 | @javac mutex/JavaThread.java |
---|
181 | @echo "#!/bin/sh" > a.out |
---|
182 | @echo "cd mutex && java JavaThread" >> a.out |
---|
183 | @chmod a+x a.out |
---|
184 | |
---|
185 | ## ========================================================================================================= |
---|
186 | signal$(EXEEXT) :\ |
---|
187 | signal-pthread_cond.run \ |
---|
188 | signal-upp.run \ |
---|
189 | signal-cfa1.run \ |
---|
190 | signal-cfa2.run \ |
---|
191 | signal-cfa4.run \ |
---|
192 | signal-java_thread.run |
---|
193 | |
---|
194 | signal-pthread_cond$(EXEEXT): |
---|
195 | @@BACKEND_CC@ schedint/pthreads.c -DBENCH_N=500000 -I. -lrt -pthread ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
196 | |
---|
197 | signal-upp$(EXEEXT): |
---|
198 | @u++ schedint/upp.cc -DBENCH_N=5000000 -I. -nodebug -lrt -quiet ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
199 | |
---|
200 | signal-cfa1$(EXEEXT): |
---|
201 | @${CC} schedint/cfa1.c -DBENCH_N=500000 -I. -nodebug -lrt -quiet @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
202 | |
---|
203 | signal-cfa2$(EXEEXT): |
---|
204 | @${CC} schedint/cfa2.c -DBENCH_N=500000 -I. -nodebug -lrt -quiet @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
205 | |
---|
206 | signal-cfa4$(EXEEXT): |
---|
207 | @${CC} schedint/cfa4.c -DBENCH_N=500000 -I. -nodebug -lrt -quiet @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
208 | |
---|
209 | signal-java_thread$(EXEEXT): |
---|
210 | @javac schedint/JavaThread.java |
---|
211 | @echo "#!/bin/sh" > a.out |
---|
212 | @echo "cd schedint && java JavaThread" >> a.out |
---|
213 | @chmod a+x a.out |
---|
214 | |
---|
215 | |
---|
216 | ## ========================================================================================================= |
---|
217 | waitfor$(EXEEXT) :\ |
---|
218 | waitfor-upp.run \ |
---|
219 | waitfor-cfa1.run \ |
---|
220 | waitfor-cfa2.run \ |
---|
221 | waitfor-cfa4.run |
---|
222 | |
---|
223 | waitfor-upp$(EXEEXT): |
---|
224 | @u++ schedext/upp.cc -DBENCH_N=5000000 -I. -nodebug -lrt -quiet ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
225 | |
---|
226 | waitfor-cfa1$(EXEEXT): |
---|
227 | @${CC} schedext/cfa1.c -DBENCH_N=500000 -I. -nodebug -lrt -quiet @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
228 | |
---|
229 | waitfor-cfa2$(EXEEXT): |
---|
230 | @${CC} schedext/cfa2.c -DBENCH_N=500000 -I. -nodebug -lrt -quiet @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
231 | |
---|
232 | waitfor-cfa4$(EXEEXT): |
---|
233 | @${CC} schedext/cfa4.c -DBENCH_N=500000 -I. -nodebug -lrt -quiet @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
234 | |
---|
235 | ## ========================================================================================================= |
---|
236 | creation$(EXEEXT) :\ |
---|
237 | creation-pthread.run \ |
---|
238 | creation-cfa_coroutine.run \ |
---|
239 | creation-cfa_coroutine_eager.run \ |
---|
240 | creation-cfa_thread.run \ |
---|
241 | creation-upp_coroutine.run \ |
---|
242 | creation-upp_thread.run \ |
---|
243 | creation-goroutine.run \ |
---|
244 | creation-java_thread.run |
---|
245 | |
---|
246 | creation-cfa_coroutine$(EXEEXT): |
---|
247 | @${CC} creation/cfa_cor.c -DBENCH_N=10000000 -I. -nodebug -lrt -quiet @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
248 | |
---|
249 | creation-cfa_coroutine_eager$(EXEEXT): |
---|
250 | @${CC} creation/cfa_cor.c -DBENCH_N=10000000 -I. -nodebug -lrt -quiet @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} -DEAGER |
---|
251 | |
---|
252 | creation-cfa_thread$(EXEEXT): |
---|
253 | @${CC} creation/cfa_thrd.c -DBENCH_N=10000000 -I. -nodebug -lrt -quiet @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
254 | |
---|
255 | creation-upp_coroutine$(EXEEXT): |
---|
256 | @u++ creation/upp_cor.cc -DBENCH_N=50000000 -I. -nodebug -lrt -quiet ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
257 | |
---|
258 | creation-upp_thread$(EXEEXT): |
---|
259 | @u++ creation/upp_thrd.cc -DBENCH_N=50000000 -I. -nodebug -lrt -quiet ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
260 | |
---|
261 | creation-pthread$(EXEEXT): |
---|
262 | @@BACKEND_CC@ creation/pthreads.c -DBENCH_N=250000 -I. -lrt -pthread ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
263 | |
---|
264 | creation-goroutine$(EXEEXT): |
---|
265 | @go build -o a.out creation/goroutine.go |
---|
266 | |
---|
267 | creation-java_thread$(EXEEXT): |
---|
268 | @javac creation/JavaThread.java |
---|
269 | @echo "#!/bin/sh" > a.out |
---|
270 | @echo "cd creation && java JavaThread" >> a.out |
---|
271 | @chmod a+x a.out |
---|
272 | |
---|
273 | ## ========================================================================================================= |
---|
274 | |
---|
275 | compile$(EXEEXT) :\ |
---|
276 | compile-array.make \ |
---|
277 | compile-attributes.make \ |
---|
278 | compile-empty.make \ |
---|
279 | compile-expression.make \ |
---|
280 | compile-io.make \ |
---|
281 | compile-monitor.make \ |
---|
282 | compile-operators.make \ |
---|
283 | compile-typeof.make |
---|
284 | |
---|
285 | |
---|
286 | compile-array$(EXEEXT): |
---|
287 | @${CC} -quiet -fsyntax-only -w ../tests/array.c @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
288 | |
---|
289 | compile-attributes$(EXEEXT): |
---|
290 | @${CC} -quiet -fsyntax-only -w ../tests/attributes.c @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
291 | |
---|
292 | compile-empty$(EXEEXT): |
---|
293 | @${CC} -quiet -fsyntax-only -w compile/empty.c @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
294 | |
---|
295 | compile-expression$(EXEEXT): |
---|
296 | @${CC} -quiet -fsyntax-only -w ../tests/expression.c @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
297 | |
---|
298 | compile-io$(EXEEXT): |
---|
299 | @${CC} -quiet -fsyntax-only -w ../tests/io1.c @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
300 | |
---|
301 | compile-monitor$(EXEEXT): |
---|
302 | @${CC} -quiet -fsyntax-only -w ../tests/concurrent/monitor.c @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
303 | |
---|
304 | compile-operators$(EXEEXT): |
---|
305 | @${CC} -quiet -fsyntax-only -w ../tests/operators.c @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
306 | |
---|
307 | compile-thread$(EXEEXT): |
---|
308 | @${CC} -quiet -fsyntax-only -w ../tests/concurrent/thread.c @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
309 | |
---|
310 | compile-typeof$(EXEEXT): |
---|
311 | @${CC} -quiet -fsyntax-only -w ../tests/typeof.c @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} |
---|
312 | |
---|