From 1d8f909fcd90dfa39d2ca472267baeaf9d69761a Mon Sep 17 00:00:00 2001 From: Jan Kiene Date: Wed, 11 Dec 2024 08:39:12 +0100 Subject: [PATCH 1/2] fix complexity jobs with no ref for the bar graphs --- ci/complexity_measurements/genWebpageData.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/complexity_measurements/genWebpageData.py b/ci/complexity_measurements/genWebpageData.py index 77ae645b0a..89247620e3 100644 --- a/ci/complexity_measurements/genWebpageData.py +++ b/ci/complexity_measurements/genWebpageData.py @@ -425,7 +425,7 @@ def create_display_strings( displays.append(display) - if which == "wmops_per_op": + if which == "wmops_per_op" and has_comparison: # flot.js' "stack: true" depends on the order of data arrays # reorder here instead of reworking above loop displays_encs = displays[0].split(", \n") -- GitLab From b9c20513dbb19bd0dfabef119e80ef70b2d452b8 Mon Sep 17 00:00:00 2001 From: Jan Kiene Date: Wed, 11 Dec 2024 08:40:37 +0100 Subject: [PATCH 2/2] increase width of wmops-per-op graph --- ci/complexity_measurements/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/complexity_measurements/style.css b/ci/complexity_measurements/style.css index 764ed0d94f..ebce0e7677 100755 --- a/ci/complexity_measurements/style.css +++ b/ci/complexity_measurements/style.css @@ -53,7 +53,7 @@ hr { } #wmops_per_op-graph { height:500px; - width:1600px; + width:2400px; float:left; } #wmops-48kHz-graph { -- GitLab