-
Notifications
You must be signed in to change notification settings - Fork 12
/
codespeed.conf
353 lines (341 loc) · 10 KB
/
codespeed.conf
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
# -*- mode: yaml -*-
# Config file for ReBench
default_experiment: all
default_data_file: 'codespeed.data'
runs:
max_invocation_time: 6000
min_iteration_time: 10
benchmark_suites:
macro-startup:
gauge_adapter: RebenchLog
command: &MACRO_CMD "-cp Smalltalk:Examples/Benchmarks/Richards:Examples/Benchmarks/DeltaBlue:Examples/Benchmarks/NBody:Examples/Benchmarks/Json:Examples/Benchmarks/GraphSearch Examples/Benchmarks/BenchmarkHarness.som %(benchmark)s "
benchmarks:
- Richards:
extra_args: "1 1"
- DeltaBlue:
extra_args: "1 1000"
- Mandelbrot:
extra_args: "1 300"
- NBody:
extra_args: "1 30000"
- Json:
extra_args: "1 80"
- GraphSearch:
extra_args: "1 30"
- PageRank:
extra_args: "1 1400"
macro-steady:
gauge_adapter: RebenchLog
command: *MACRO_CMD
benchmarks:
- Richards:
extra_args: "130 60"
warmup: 30
- DeltaBlue:
extra_args: "120 20000"
warmup: 20
- Mandelbrot:
extra_args: "110 1000"
warmup: 10
- NBody:
extra_args: "120 500000"
warmup: 20
- Json:
extra_args: "120 80"
warmup: 20
- GraphSearch:
extra_args: "250 30"
warmup: 100
- PageRank:
extra_args: "120 1400"
warmup: 20
micro-startup-100:
gauge_adapter: RebenchLog
command: "-cp Smalltalk:Examples/Benchmarks/LanguageFeatures Examples/Benchmarks/BenchmarkHarness.som %(benchmark)s "
benchmarks:
- Fibonacci:
extra_args: "1 100"
- Dispatch:
extra_args: "1 1000"
- Bounce:
extra_args: "1 100"
- Loop:
extra_args: "1 500"
- Permute:
extra_args: "1 50"
- Queens:
extra_args: "1 50"
- List:
extra_args: "1 50"
- Recurse:
extra_args: "1 100"
- Storage:
extra_args: "1 20"
- Sieve:
extra_args: "1 100"
- BubbleSort:
extra_args: "1 100"
- QuickSort:
extra_args: "1 20"
- Sum:
extra_args: "1 500"
- Towers:
extra_args: "1 20"
- TreeSort:
extra_args: "1 10"
- IntegerLoop:
extra_args: "1 400"
- FieldLoop:
extra_args: "1 50"
- WhileLoop:
extra_args: "1 1000"
micro-startup:
gauge_adapter: RebenchLog
command: "-cp Smalltalk:Examples/Benchmarks/LanguageFeatures Examples/Benchmarks/BenchmarkHarness.som %(benchmark)s "
benchmarks:
- Fibonacci:
extra_args: "1 3"
- Dispatch:
extra_args: "1 20"
- Bounce:
extra_args: "1 2"
- Loop:
extra_args: "1 10"
- Permute:
extra_args: "1 3"
- Queens:
extra_args: "1 2"
- List:
extra_args: "1 2"
- Recurse:
extra_args: "1 3"
- Storage:
extra_args: "1 2"
- Sieve:
extra_args: "1 5"
- BubbleSort:
extra_args: "1 3"
- QuickSort:
extra_args: "1 3"
- Sum:
extra_args: "1 10"
- Towers:
extra_args: "1 2"
- TreeSort:
extra_args: "1 1"
- IntegerLoop:
extra_args: "1 8"
- FieldLoop:
extra_args: "1 3"
- WhileLoop:
extra_args: "1 30"
micro-steady-100:
gauge_adapter: RebenchLog
command: "-cp Smalltalk:Examples/Benchmarks/LanguageFeatures Examples/Benchmarks/BenchmarkHarness.som %(benchmark)s "
benchmarks:
- Fannkuch:
extra_args: "55 9"
warmup: 5
- Fibonacci:
extra_args: "60 1000"
warmup: 10
- Dispatch:
extra_args: "55 10000"
warmup: 5
- Bounce:
extra_args: "60 4000"
warmup: 10
- Loop:
extra_args: "55 10000"
warmup: 5
- Permute:
extra_args: "55 1500"
warmup: 5
- Queens:
extra_args: "55 1000"
warmup: 5
- List:
extra_args: "65 1000"
warmup: 15
- Recurse:
extra_args: "65 2000"
warmup: 15
- Storage:
extra_args: "60 1000"
warmup: 10
- Sieve:
extra_args: "60 2500"
warmup: 10
- BubbleSort:
extra_args: "60 3000"
warmup: 10
- QuickSort:
extra_args: "60 2000"
warmup: 10
- Sum:
extra_args: "55 10000"
warmup: 5
- Towers:
extra_args: "55 1000"
warmup: 5
- TreeSort:
extra_args: "60 1000"
warmup: 10
- IntegerLoop:
extra_args: "55 8000"
warmup: 5
- FieldLoop:
extra_args: "55 900"
warmup: 5
- WhileLoop:
extra_args: "55 9000"
warmup: 5
micro-steady:
gauge_adapter: RebenchLog
command: "-cp Smalltalk:Examples/Benchmarks/LanguageFeatures Examples/Benchmarks/BenchmarkHarness.som %(benchmark)s "
benchmarks:
- Fannkuch:
extra_args: "14 6"
warmup: 4
- Fibonacci:
extra_args: "15 3"
warmup: 5
- Dispatch:
extra_args: "12 20"
warmup: 2
- Bounce:
extra_args: "22 2"
warmup: 12
- Loop:
extra_args: "14 10"
warmup: 4
- Permute:
extra_args: "16 3"
warmup: 6
- Queens:
extra_args: "13 2"
warmup: 3
- List:
extra_args: "16 2"
warmup: 6
- Recurse:
extra_args: "14 3"
warmup: 4
- Storage:
extra_args: "17 2"
warmup: 7
- Sieve:
extra_args: "18 5"
warmup: 8
- BubbleSort:
extra_args: "16 3"
warmup: 6
- QuickSort:
extra_args: "15 3"
warmup: 5
- Sum:
extra_args: "20 10"
warmup: 10
- Towers:
extra_args: "20 2"
warmup: 10
- TreeSort:
extra_args: "15 1"
warmup: 5
- IntegerLoop:
extra_args: "14 8"
warmup: 4
- FieldLoop:
extra_args: "12 3"
warmup: 2
- WhileLoop:
extra_args: "13 30"
warmup: 3
interpreter:
description: Basic interpreter benchmarks for comparing performance of most basic concepts.
gauge_adapter: RebenchLog
command: "-cp Smalltalk:Examples/Benchmarks/Interpreter Examples/Benchmarks/BenchmarkHarness.som %(benchmark)s %(iterations)s 1"
benchmarks:
- ArgRead
- ArrayReadConst
- ArrayWriteConstConst
- BlockSend0ConstReturn
- Const
- FieldConstWrite
- FieldRead
- FieldReadIncWrite
- FieldReadWrite
- GlobalRead
- LocalConstWrite
- LocalRead
- LocalReadIncWrite
- LocalReadWrite
- SelfSend0
- SelfSend0BlockConstNonLocalReturn
executors:
SOM:
path: ..
executable: som.sh
TruffleSOM-interpreter:
path: .
executable: som.sh
TruffleSOM-graal:
path: .
executable: som
args: "-E"
CSOM:
path: .
executable: CSOM
SOMpp:
path: .
executable: som.sh
PySOM:
path: .
executable: som.sh
# define the benchmarks to be executed for a re-executable benchmark run
experiments:
SOM:
description: All benchmarks on SOM (Java, bytecode-based)
suites:
# - micro-startup-100
# - micro-steady-100
- micro-startup
# - micro-steady
- macro-startup
# - macro-steady
- interpreter
executions:
- SOM
TruffleSOM:
description: All benchmarks on TruffleSOM (Java, AST Interpreter)
suites:
- micro-startup-100
- micro-steady-100
- macro-startup
- macro-steady
executions:
#- TruffleSOM-interpreter
- TruffleSOM-graal
CSOM:
description: All benchmarks on CSOM
suites:
- micro-startup
- macro-startup
executions:
- CSOM
SOMpp:
description: All benchmarks on SOM++
suites:
- micro-startup
- micro-startup-100
- macro-startup
executions:
- SOMpp
PySOM:
description: All benchmarks on PySOM
suites:
- micro-startup
- micro-steady
- macro-startup
executions:
- PySOM