From 2f2a3a98a1f5d0011b69898fb0f902cd66f3222f Mon Sep 17 00:00:00 2001 From: Christoph Alt <christoph.alt@fau.de> Date: Thu, 16 Nov 2023 16:02:42 +0100 Subject: [PATCH] addedn extra overwrite for ilu and different ksp_tols --- dashboards/dashboard_fe2ti.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dashboards/dashboard_fe2ti.py b/dashboards/dashboard_fe2ti.py index 52e9820..b540eac 100644 --- a/dashboards/dashboard_fe2ti.py +++ b/dashboards/dashboard_fe2ti.py @@ -33,6 +33,8 @@ description_markdown = r""" PARDISO_COLOR = 'rgb(86,166, 75)' UMFPACK_COLOR = 'rgb(242, 204, 12)' ILU_COLOR = 'rgb(50, 116, 217)' +ILU_COLOR_MEDIUM = 'rgb(87, 148, 242)' +ILU_COLOR_LIGHT = 'rgb(138, 184, 255)' INTEL_LINESTYLE = "solid" GCC_LINESTYLE = "dashed" @@ -89,6 +91,8 @@ def dashboard_fe2ti(): get_color_regex_override(f".*[Ss]olver.*: {solver}.*", color) for solver, color in [("pardiso", PARDISO_COLOR), ("umfpack", UMFPACK_COLOR), ("ilu", ILU_COLOR)] ], + get_color_regex_override("/.*ksp_tol: 1e-4.*.*[Ss]olver.*: ilu.*/", ILU_COLOR_LIGHT), + get_color_regex_override("/.*ksp_tol: 1e-6.*.*[Ss]olver.*: ilu.*/", ILU_COLOR_MEDIUM), get_line_style_regex_override(".*intel.*", INTEL_LINESTYLE), get_line_style_regex_override(".*gcc.*", GCC_LINESTYLE) ] -- GitLab