-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpbench.json
36 lines (36 loc) · 1.01 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
{
"runner.bootstrap": "vendor/autoload.php",
"runner.path": "benchmarks/",
"runner.time_unit": "seconds",
"runner.progress": "blinken",
"runner.retry_threshold":5,
"runner.warmup":2,
"console.ansi":true,
"report.outputs":{
"numphp_benchmark":{
"extends":"delimited",
"delimiter":","
}
},
"report.generators":{
"numphp":{
"extends":"aggregate",
"generator":"expression",
"title":"Numphp",
"description":"Benchmark for numphp",
"break":["benchmark"],
"cols":["benchmark","subject","set","revs","its","mem_peak","mean","mode","best","worst","stdev","rstdev"]
}
},
"core.profiles":{
"jit":{
"runner.php_config": {
"memory_limit": "-1",
"opcache.enable":1,
"opcache.enable_cli": 1,
"opcache.jit": 1255,
"opcache.jit_buffer_zie": "256M"
}
}
}
}