Skip to content

Commit 9c0681c

Browse files
authored
Bump benchmark axis (#2486)
1 parent 0f93aa7 commit 9c0681c

File tree

1 file changed

+15
-10
lines changed

1 file changed

+15
-10
lines changed

benchmarks-website/code.js

+15-10
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ window.initAndRender = (function () {
4747
if (!benchmark_result["commit"]) {
4848
missing_commits.add(commit_id)
4949
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
5757
}
5858
}
5959

@@ -194,8 +194,8 @@ window.initAndRender = (function () {
194194
}
195195

196196
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;
199199
}
200200

201201
const options = {
@@ -279,7 +279,12 @@ window.initAndRender = (function () {
279279
function renderBenchSet(name, benchSet, main, toc, groupFilterSettings) {
280280
const {keptCharts, hiddenDatasets, removedDatasets, renamedDatasets} = (
281281
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+
}
283288
: groupFilterSettings);
284289
const setElem = document.createElement('div');
285290
setElem.className = 'benchmark-set';

0 commit comments

Comments
 (0)