-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpbench.json
58 lines (58 loc) · 2.31 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"$schema": "./vendor/phpbench/phpbench/phpbench.schema.json",
"runner.bootstrap": "vendor/autoload.php",
"runner.path": "tests/Bench",
"runner.progress": "plain",
"runner.file_pattern": "*Bench.php",
"runner.php_config": {
"opcache.enable": 1,
"opcache.enable_cli": 1,
"opcache.jit_buffer_size": "128M",
"opcache.jit": "1255",
"xdebug.mode": "off"
},
"storage.xml_storage_path": "vendor/.cache.phpbench",
"storage.store_binary": true,
"storage.driver": "xml",
"report.generators": {
"default": {
"extends": "overview",
"tabbed": false,
"components": [
{
"component": "section",
"tabbed": true,
"tab_labels": [
"Time",
"Memory"
],
"components": [
{
"component": "section",
"title": "Results",
"components": [
{
"component": "table_aggregate",
"title": "Aggregation Table ({{ first(frame.suite_tag) }})",
"partition": [
"benchmark_name",
"subject_name",
"variant_name"
],
"row": {
"benchmark": "first(partition['benchmark_name'])",
"memory": "first(partition['result_mem_peak']) as memory",
"min": "min(partition['result_time_avg']) as time",
"max": "max(partition['result_time_avg']) as time",
"mode": "mode(partition['result_time_avg']) as time",
"rstdev": "rstdev(partition['result_time_avg'])"
}
}
]
}
]
}
]
}
}
}