Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Quafadas committed Sep 23, 2024
1 parent 38a4a03 commit 3a475ee
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 25 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@ node_modules/

#mill
out/
benchmark_history.json
benchmark_history.json
site/docs/_assets/benchmarks/benchmark_history.json
67 changes: 43 additions & 24 deletions site/docs/_assets/plots/errorBars.vg.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,47 @@
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"data": {
"url": "https://quafadas.github.io/vecxt/benchmarks/benchmark_history.json"
},
"encoding": {"y": {"field": "variety", "type": "ordinal"}},
"layer": [
{
"mark": {"type": "point", "filled": true},
"encoding": {
"x": {
"aggregate": "mean",
"field": "yield",
"type": "quantitative",
"scale": {"zero": false},
"title": "Barley Yield"
},
"color": {"value": "black"}
}
},
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"data": {
"values": [
{
"mark": {"type": "errorbar", "extent": "ci"},
"encoding": {
"x": {"field": "yield", "type": "quantitative", "title": "Barley Yield"}
}
"benchmark": "java_dgemm",
"score": 8619.293601669751,
"params": null,
"scoreInterval": [8399.14500549159, 8839.442197847913],
"scoreUnit": "ops/s",
"branch": "main",
"date": "20240917",
"commit": "6efb42c",
"host": "gha"
}
]
}
},
"layer": [
{
"mark": "errorbar",
"encoding": {
"x": {
"field": "upper_confidence",
"type": "quantitative",
"scale": { "zero": false },
"title": "ops / s"
},
"x2": { "field": "lower_confidence" },
"y": { "field": "benchmark", "type": "ordinal" }
}
},
{
"mark": {
"type": "point",
"filled": true,
"color": "black"
},
"encoding": {
"x": {
"field": "score",
"type": "quantitative"
},
"y": { "field": "benchmark", "type": "ordinal" }
}
}
]
}

0 comments on commit 3a475ee

Please sign in to comment.