From f4a7ccfe6c01342704e5bbdd18f2af9f72c90cc3 Mon Sep 17 00:00:00 2001 From: Heinrich Riebler Date: Fri, 21 Aug 2026 09:40:23 +0200 Subject: [PATCH] Fix typo in roofline plot. --- web/frontend/src/generic/plots/Roofline.svelte | 6 +++--- web/frontend/src/generic/plots/RooflineLegacy.svelte | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) 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)), }, ],