From 0ce55f53aff36ecaa9d2420fc2fb742cce78435b Mon Sep 17 00:00:00 2001 From: Hans Pabst Date: Thu, 23 Oct 2025 11:37:24 +0200 Subject: [PATCH] Revert "Performance: show total time as part if the title" This reverts commit f5d0261ccb055e98bdf49e75142efc032cd32f9a. --- tools/docker/scripts/plot_performance.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/docker/scripts/plot_performance.py b/tools/docker/scripts/plot_performance.py index 5ed7b6b41d..e09955a96a 100755 --- a/tools/docker/scripts/plot_performance.py +++ b/tools/docker/scripts/plot_performance.py @@ -26,10 +26,10 @@ def main(): routines.remove("total") routines.sort(reverse=True, key=lambda r: timings[0].get(r, 0.0)) - for title, plot, timing in zip(titles, plots, timings): + for titel, plot, timing in zip(titles, plots, timings): timing["rest"] = timing["total"] - sum([timing.get(r, 0.0) for r in routines]) - full_title = f"{title}: {timings['total']} s" + full_title = f"Timings of {titel}" print(f'Plot: name="{plot}", title="{full_title}", ylabel="time [s]"') for r in ["rest"] + routines: t = timing.get(r, 0.0)