-
Notifications
You must be signed in to change notification settings - Fork 36
/
rebench.conf
211 lines (190 loc) · 6.12 KB
/
rebench.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
# -*- mode: yaml -*-
# Config file for ReBench
default_experiment: all
default_data_file: 'benchmark.data'
.are_we_fast_yet:
## this is ignored by rebench
iteration_numbers:
fast_vm: &FAST_VM 3000
slow_vm: &SLOW_VM 250
very_slow_vm: &VERY_SLOW_VM 100
# definition of benchmark suites
benchmark_suites:
steady-som:
gauge_adapter: RebenchLog
command: " -cp .:Core:CD:DeltaBlue:Havlak:Json:NBody:Richards:../../TruffleSOM/Smalltalk Harness.som %(benchmark)s %(variable)s "
max_invocation_time: 5000
variable_values: [*FAST_VM] ## the number iterations measured
location: benchmarks/SOM
benchmarks: &BENCHMARKS
- DeltaBlue:
extra_args: 12000
- Richards:
extra_args: 100
- Json:
extra_args: 100
- CD:
extra_args: 250
- Havlak:
extra_args: 1500
- Bounce:
extra_args: 1500
- List:
extra_args: 1500
- Mandelbrot:
extra_args: 500
- NBody:
extra_args: 250000
- Permute:
extra_args: 1000
- Queens:
extra_args: 1000
- Sieve:
extra_args: 3000
- Storage:
extra_args: 1000
- Towers:
extra_args: 600
steady-som-interp:
gauge_adapter: RebenchLog
command: " -cp .:Core:CD:DeltaBlue:Havlak:Json:NBody:Richards:../../TruffleSOM/Smalltalk Harness.som %(benchmark)s %(variable)s "
max_invocation_time: 5000
variable_values: [*VERY_SLOW_VM] ## the number iterations measured
location: benchmarks/SOM
benchmarks: *BENCHMARKS
steady-somns:
gauge_adapter: RebenchLog
command: " Harness.ns %(benchmark)s %(variable)s "
location: benchmarks/SOMns
variable_values: [*FAST_VM] ## the number iterations measured
max_invocation_time: 6000
benchmarks: *BENCHMARKS
steady-java:
gauge_adapter: RebenchLog
command: " -cp ../benchmarks/Java/benchmarks.jar Harness %(benchmark)s %(variable)s "
variable_values: [*FAST_VM] ## the number iterations measured
max_invocation_time: 6000
benchmarks: *BENCHMARKS
steady-ruby:
gauge_adapter: RebenchLog
location: benchmarks/Ruby
command: "harness.rb %(benchmark)s %(variable)s "
variable_values: [*FAST_VM] ## the number iterations measured
max_invocation_time: 6000
benchmarks: *BENCHMARKS
steady-crystal:
gauge_adapter: RebenchLog
location: benchmarks/Crystal
command: "./harness %(benchmark)s %(variable)s "
variable_values: [*FAST_VM] ## the number iterations measured
max_invocation_time: 6000
benchmarks: *BENCHMARKS
ruby-interp:
gauge_adapter: RebenchLog
location: benchmarks/Ruby
command: "harness.rb %(benchmark)s %(variable)s "
variable_values: [*VERY_SLOW_VM] ## the number iterations measured
max_invocation_time: 6000
benchmarks: *BENCHMARKS
ruby-indy:
gauge_adapter: RebenchLog
location: benchmarks/Ruby
command: "harness.rb %(benchmark)s %(variable)s "
variable_values: [*SLOW_VM] ## the number iterations measured
max_invocation_time: 6000
benchmarks: *BENCHMARKS
steady-js:
gauge_adapter: RebenchLog
location: benchmarks/JavaScript
command: "harness.js %(benchmark)s %(variable)s "
variable_values: [*FAST_VM] ## the number iterations measured
max_invocation_time: 6000
benchmarks: *BENCHMARKS
pharo:
gauge_adapter: RebenchLog
location: benchmarks/Smalltalk
command: "AWFY_Pharo.image run.st %(benchmark)s %(variable)s "
variable_values: [*SLOW_VM] ## the number iterations measured
max_invocation_time: 6000
benchmarks: *BENCHMARKS
squeak:
gauge_adapter: RebenchLog
location: benchmarks/Smalltalk
command: "AWFY_Squeak64.image run.st %(benchmark)s %(variable)s "
variable_values: [*SLOW_VM] ## the number iterations measured
max_invocation_time: 6000
benchmarks: *BENCHMARKS
# VMs have a name and are specified by a path and the binary to be executed
executors:
Java:
executable: java
TruffleSOM:
path: TruffleSOM
executable: som
SOM:
path: SOM
executable: som.sh
SOMpp:
path: SOMpp
executable: som.sh
args: " -H512MB "
build: [make]
SOMppOMR:
path: SOMppOMR
executable: som.sh
args: " -H512MB "
SOMns:
path: SOMns
executable: fast
Ruby:
executable: ruby
Crystal:
path: benchmarks/Crystal
executable: harness
build: [./build.sh]
Node:
executable: node
Pharo:
path: /home/runner/.asdf/installs/awfy/pharo-120
executable: pharo
Squeak:
path: /home/runner/.asdf/installs/awfy/squeak-6.0-22148/bin
executable: squeak
args: -headless
experiments:
steady-java:
description: Measure steady state performance
suites: [steady-java]
executions: [Java]
steady-som:
executions:
- SOMns:
suites: [steady-somns]
- TruffleSOM:
suites: [steady-som]
- SOM:
suites: [steady-som-interp]
- SOMpp:
suites: [steady-som-interp]
- SOMppOMR:
suites: [steady-som-interp]
steady-ruby:
suites: [steady-ruby]
executions: []
steady-crystal:
suites: [steady-crystal]
executions: [Crystal]
steady-js:
suites: [steady-js]
executions:
- Node
ruby-others:
executions:
- Ruby:
suites: [ruby-interp]
smalltalk:
executions:
- Pharo:
suites: [pharo]
- Squeak:
suites: [squeak]