This repository has been archived by the owner on Dec 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
rebench.conf
134 lines (125 loc) · 5.63 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
# -*- mode: yaml -*-
# Config file for ReBench
default_experiment: all
default_data_file: 'rebench.data'
reporting:
# Benchmark results will be reported to ReBenchDB
rebenchdb:
# this url needs to point to the API endpoint
db_url: https://rebench.stefan-marr.de/rebenchdb
repo_url: https://github.com/smarr/RTruffleSOM
record_all: true # make sure everything is recorded
project_name: RTruffleSOM
runs:
max_invocation_time: 6000
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 %(iterations)s 0 "
iterations: 1
invocations: 5
benchmarks:
- Richards: {extra_args: 1}
- DeltaBlue: {extra_args: 100}
- NBody: {extra_args: 1000}
- Json: {extra_args: 1}
- GraphSearch: {extra_args: 7}
- PageRank: {extra_args: 75}
macro-steady:
gauge_adapter: RebenchLog
command: *MACRO_CMD
benchmarks:
- Richards: {extra_args: 40, warmup: 30, iterations: 130}
- DeltaBlue: {extra_args: 10000, warmup: 20, iterations: 120}
- NBody: {extra_args: 200000, warmup: 20, iterations: 120}
- Json: {extra_args: 80, warmup: 20, iterations: 120}
- GraphSearch: {extra_args: 25, warmup: 100, iterations: 250}
- PageRank: {extra_args: 1000, warmup: 20, iterations: 120}
micro-startup:
gauge_adapter: RebenchLog
command: &MICRO_CMD "-cp Smalltalk:Examples/Benchmarks/LanguageFeatures Examples/Benchmarks/BenchmarkHarness.som %(benchmark)s %(iterations)s 0 "
iterations: 1
invocations: 5
benchmarks:
- Fannkuch: {extra_args: 7}
- Fibonacci: {extra_args: 10}
- Dispatch: {extra_args: 10}
- Bounce: {extra_args: 10}
- Loop: {extra_args: 100}
- Permute: {extra_args: 10}
- Queens: {extra_args: 10}
- List: {extra_args: 2}
- Recurse: {extra_args: 12}
- Storage: {extra_args: 8}
- Sieve: {extra_args: 20}
- BubbleSort: {extra_args: 15}
- QuickSort: {extra_args: 15}
- Sum: {extra_args: 40}
- Towers: {extra_args: 2}
- TreeSort: {extra_args: 7}
- IntegerLoop: {extra_args: 7}
- FieldLoop: {extra_args: 1}
- WhileLoop: {extra_args: 30}
- Mandelbrot: {extra_args: 50}
micro-steady:
gauge_adapter: RebenchLog
command: *MICRO_CMD
benchmarks:
- Fannkuch: {extra_args: 9, warmup: 5, iterations: 55}
- Fibonacci: {extra_args: 1000, warmup: 10, iterations: 60}
- Dispatch: {extra_args: 10000, warmup: 5, iterations: 55}
- Bounce: {extra_args: 4000, warmup: 10, iterations: 60}
- Loop: {extra_args: 10000, warmup: 5, iterations: 55}
- Permute: {extra_args: 1500, warmup: 5, iterations: 55}
- Queens: {extra_args: 1000, warmup: 5, iterations: 55}
- List: {extra_args: 1000, warmup: 15, iterations: 65}
- Recurse: {extra_args: 2000, warmup: 15, iterations: 65}
- Storage: {extra_args: 1000, warmup: 10, iterations: 60}
- Sieve: {extra_args: 2500, warmup: 10, iterations: 60}
- BubbleSort: {extra_args: 3000, warmup: 5, iterations: 55}
- QuickSort: {extra_args: 2000, warmup: 5, iterations: 55}
- Sum: {extra_args: 10000, warmup: 5, iterations: 55}
- Towers: {extra_args: 1000, warmup: 5, iterations: 55}
- TreeSort: {extra_args: 1000, warmup: 10, iterations: 60}
- IntegerLoop: {extra_args: 8000, warmup: 5, iterations: 55}
- FieldLoop: {extra_args: 900, warmup: 5, iterations: 55}
- WhileLoop: {extra_args: 9000, warmup: 5, iterations: 55}
- Mandelbrot: {extra_args: 1000, warmup: 10, iterations: 110}
executors:
RPySOM-ast-interp:
path: .
executable: som-ast-interp
RPySOM-bc-interp:
path: .
executable: som-bc-interp
RPySOM-ast-jit:
path: .
executable: som-ast-jit
RPySOM-bc-jit:
path: .
executable: som-bc-jit
# define the benchmarks to be executed for a re-executable benchmark run
experiments:
RPySOM:
description: All benchmarks on RPySOM (AST and Bytecode Interpreters)
executions:
- RPySOM-ast-interp:
suites:
- micro-startup
- macro-startup
- RPySOM-bc-interp:
suites:
- micro-startup
- macro-startup
- RPySOM-ast-jit:
suites:
- micro-startup
- micro-steady
- macro-startup
- macro-steady
- RPySOM-bc-jit:
suites:
- micro-startup
- micro-steady
- macro-startup
- macro-steady