From c4a9fcc1caa92dbc6092d98fc87d8c9908be5675 Mon Sep 17 00:00:00 2001 From: Christoph Kluge Date: Tue, 5 Sep 2023 12:00:58 +0200 Subject: [PATCH] feat: Implemented rooflineplot with uPlot --- web/frontend/src/plots/Roofline.svelte | 4 ---- 1 file changed, 4 deletions(-) diff --git a/web/frontend/src/plots/Roofline.svelte b/web/frontend/src/plots/Roofline.svelte index b3abd72..446513e 100644 --- a/web/frontend/src/plots/Roofline.svelte +++ b/web/frontend/src/plots/Roofline.svelte @@ -22,9 +22,6 @@ * data[2] = [0.1, 0.15, 0.2, ...] // Color Code -> Time Information (Floats from 0 to 1) (Optional) */ - // Check - // console.assert(data , "you must provide data") - // Helpers function getGradientR(x) { if (x < 0.5) return 0 @@ -82,7 +79,6 @@ u.ctx.fill(p); } }); - return null; };