diff --git a/web/frontend/src/generic/plots/Roofline.svelte b/web/frontend/src/generic/plots/Roofline.svelte index 2881fd9f..c1c4d42b 100644 --- a/web/frontend/src/generic/plots/Roofline.svelte +++ b/web/frontend/src/generic/plots/Roofline.svelte @@ -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)), }, ], diff --git a/web/frontend/src/generic/plots/RooflineLegacy.svelte b/web/frontend/src/generic/plots/RooflineLegacy.svelte index b895b4a9..461431ea 100644 --- a/web/frontend/src/generic/plots/RooflineLegacy.svelte +++ b/web/frontend/src/generic/plots/RooflineLegacy.svelte @@ -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)), }, ],