-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathphpbench.json
42 lines (42 loc) · 917 Bytes
/
phpbench.json
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
{
"runner.bootstrap": "vendor/autoload.php",
"runner.path": "tests-bench/src",
"runner.output_mode": "throughput",
"runner.time_unit": "seconds",
"runner.revs": 100,
"runner.iterations": 50,
"runner.retry_threshold": 2,
"runner.warmup": 2,
"runner.progress": "verbose",
"report.outputs": {
"my-output": {
"extends": "console"
}
},
"report.generators": {
"my-report": {
"generator": "expression",
"break": [
"benchmark"
],
"aggregate": [
"benchmark_class",
"subject_name",
"suite_tag",
"variant_index"
],
"expressions": {
"equivalent": "format(\"%2.4f\", mode(result_time_avg)/first(env_sampler_md5)) ~ \" md5() hashes\""
},
"cols": [
"benchmark",
"subject",
"set",
"mean",
"mode",
"rstdev",
"equivalent"
]
}
}
}