@@ -47,13 +47,13 @@ window.initAndRender = (function () {
47
47
if ( ! benchmark_result [ "commit" ] ) {
48
48
missing_commits . add ( commit_id )
49
49
benchmark_result [ "commit" ] = commit_metadata [ commit_id ] = {
50
- "author" :
{ "email" :
"[email protected] " , "name" :
"Dan King" } ,
51
- "committer" :
{ "email" :
"[email protected] " , "name" :
"GitHub" } ,
52
- "id" :commit_id ,
53
- "message" :"!! This commit is missing from commits.json !!" ,
54
- "timestamp" :"1970-01-01T00:00:00Z" ,
55
- "tree_id" :null ,
56
- "url" :"https://github.com/spiraldb/vortex/commit/" + commit_id
50
+ "author" :
{ "email" :
"[email protected] " , "name" :
"Dan King" } ,
51
+ "committer" :
{ "email" :
"[email protected] " , "name" :
"GitHub" } ,
52
+ "id" : commit_id ,
53
+ "message" : "!! This commit is missing from commits.json !!" ,
54
+ "timestamp" : "1970-01-01T00:00:00Z" ,
55
+ "tree_id" : null ,
56
+ "url" : "https://github.com/spiraldb/vortex/commit/" + commit_id
57
57
}
58
58
}
59
59
@@ -194,8 +194,8 @@ window.initAndRender = (function () {
194
194
}
195
195
196
196
if ( name . includes ( "DECOMPRESS" ) && name . includes ( "THROUGHPUT" ) && dataset . unit === "MiB/s" ) {
197
- y_axis_scale . suggestedMax = 4096 ;
198
- y_axis_scale . max = 4096 ;
197
+ y_axis_scale . suggestedMax = 8192 ;
198
+ y_axis_scale . max = 8192 ;
199
199
}
200
200
201
201
const options = {
@@ -279,7 +279,12 @@ window.initAndRender = (function () {
279
279
function renderBenchSet ( name , benchSet , main , toc , groupFilterSettings ) {
280
280
const { keptCharts, hiddenDatasets, removedDatasets, renamedDatasets} = (
281
281
groupFilterSettings === undefined
282
- ? { keptCharts : undefined , hiddenDatasets : undefined , removedDatasets : undefined , renamedDatasets : undefined }
282
+ ? {
283
+ keptCharts : undefined ,
284
+ hiddenDatasets : undefined ,
285
+ removedDatasets : undefined ,
286
+ renamedDatasets : undefined
287
+ }
283
288
: groupFilterSettings ) ;
284
289
const setElem = document . createElement ( 'div' ) ;
285
290
setElem . className = 'benchmark-set' ;
0 commit comments