Merge pull request #572 from deffel/fix-performance-label

Fix typo in roofline plot.
This commit is contained in:
Jan Eitzinger
2026-09-03 11:13:21 +02:00
committed by GitHub
2 changed files with 4 additions and 4 deletions
@@ -378,14 +378,14 @@
return {
"Intensity [FLOPS/Byte]": '-',
"":'',
"Performace [GFLOPS]": '-'
"Performance [GFLOPS]": '-'
};
}
return {
"Intensity [FLOPS/Byte]": roundTwoDigits(u.data[seriesIdx][0][dataIdx]),
"":'',
"Performace [GFLOPS]": roundTwoDigits(u.data[seriesIdx][1][dataIdx]),
"Performance [GFLOPS]": roundTwoDigits(u.data[seriesIdx][1][dataIdx]),
};
};
@@ -614,7 +614,7 @@
values: (u, vals) => vals.map((v) => formatNumber(v)),
},
{
label: "Performace [GFLOPS]",
label: "Performance [GFLOPS]",
values: (u, vals) => vals.map((v) => formatNumber(v)),
},
],
@@ -215,7 +215,7 @@
values: (u, vals) => vals.map((v) => formatNumber(v)),
},
{
label: "Performace [GFLOPS]",
label: "Performance [GFLOPS]",
values: (u, vals) => vals.map((v) => formatNumber(v)),
},
],