-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathphpbench.json
More file actions
51 lines (51 loc) · 1.22 KB
/
Copy pathphpbench.json
File metadata and controls
51 lines (51 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
40
41
42
43
44
45
46
47
48
49
50
51
{
"$schema": "./vendor/phpbench/phpbench/phpbench.schema.json",
"runner.bootstrap": "./vendor/autoload.php",
"runner.file_pattern": "*Benchmark.php",
"runner.path": "Monorepo/Benchmark",
"runner.remote_script_path": ".phpbench/script",
"runner.remote_script_remove": false,
"core.profiles": {
"opcache_disabled": {
"runner.php_config": {
"opcache.enable": 0,
"opcache.enable_cli": 0,
"display_errors": "0"
}
},
"opcache_enabled": {
"runner.php_config": {
"opcache.enable": 1,
"opcache.enable_cli": 1,
"opcache.revalidate_freq": 0,
"opcache.validate_timestamps": 0,
"opcache.max_accelerated_files": 20000,
"opcache.memory_consumption": 256,
"opcache.jit_buffer_size": "0",
"display_errors": "0"
}
}
},
"report.generators": {
"github-report": {
"generator": "expression",
"aggregate": [
"benchmark_class",
"subject_name",
"variant_name"
],
"cols": [
"benchmark",
"subject",
"revs",
"its",
"mem_peak",
"mode",
"rstdev"
]
}
},
"runner.php_config": {
"display_errors": "0"
}
}