-
Notifications
You must be signed in to change notification settings - Fork 2
/
rebench.conf
54 lines (46 loc) · 1.33 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
# Config file for ReBench
# Config format is YAML (see http://yaml.org/ for detailed spec)
# this run definition will be chosen if no parameters are given to rebench.py
standard_experiment: naulang
standard_data_file: 'codespeed.data'
# general configuration for runs
runs:
number_of_data_points: 100
reporting:
# all measurements lie with a probability of 95% within the confidence interval
csv_file: latest-runs.csv
codespeed:
url: http://naulang-speed.herokuapp.com/result/add/json/
statistics:
min_runs: 50
max_runs: 100
confidence_level: 0.95
error_margin: 0.005
benchmark_suites:
basic:
performance_reader: LogPerformance
command: "../tests/benchmarks/%(benchmark)s"
max_runtime: 2000
benchmarks:
- fannkuch.wl:
extra_args: "7"
codespeed_name: "fannkuch(7)"
- tokenring.wl:
extra_args: "10 100"
codespeed_name: "tokenring(10, 100)"
virtual_machines:
naulang-nojit:
path: "./bin/"
binary: naulang-nojit
naulang-jit:
path: "./bin/"
binary: naulang-jit
experiments:
naulang:
description: Benchmarks
actions: benchmark
benchmark:
- basic
executions:
- naulang-nojit
- naulang-jit