Fix typo in roofline plot.

This commit is contained in:
Heinrich Riebler
2026-08-21 09:40:23 +02:00
parent 1bd3f25371
commit f4a7ccfe6c
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)),
},
],