-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathphpbench.json
More file actions
39 lines (39 loc) · 1.22 KB
/
phpbench.json
File metadata and controls
39 lines (39 loc) · 1.22 KB
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
{
"$schema":"./vendor/phpbench/phpbench/phpbench.schema.json",
"runner.bootstrap": "vendor/autoload.php",
"runner.path": "tests/Benchmark",
"core.profiles": {
"jit": {
"runner.php_config": {
"zend_extension": ["opcache"],
"opcache.enable_cli": 1,
"opcache.enable": 1,
"opcache.jit_buffer_size": "32M",
"opcache.jit": 1255,
"xdebug.mode": "off"
}
}
},
"storage.xml_storage_path": ".cache/phpbench/storage",
"report.generators": {
"agg_by_subject": {
"generator": "expression",
"break": ["subject"],
"cols": ["benchmark", "subject", "set", "revs", "its", "mem_peak", "mode", "rstdev"]
},
"enc_chart": {
"generator": "component",
"partition": ["subject_name", "variant_params['fixture']"],
"components": [
{
"component": "bar_chart_aggregate",
"title": "{{ first(frame['subject_name']) }}({{ first(frame['variant_params'])['fixture'] }})",
"x_partition": ["variant_params['encoding']"],
"bar_partition": ["first(subject_groups)"],
"y_expr": "mode(partition['result_time_avg']) as time",
"y_axes_label": "yValue as time"
}
]
}
}
}