Skip to content
Snippets Groups Projects
Commit 2f2a3a98 authored by Christoph Alt's avatar Christoph Alt
Browse files

addedn extra overwrite for ilu and different ksp_tols

parent 40ea3f54
No related merge requests found
Pipeline #57242 passed with stages
in 1 minute and 32 seconds
...@@ -33,6 +33,8 @@ description_markdown = r""" ...@@ -33,6 +33,8 @@ description_markdown = r"""
PARDISO_COLOR = 'rgb(86,166, 75)' PARDISO_COLOR = 'rgb(86,166, 75)'
UMFPACK_COLOR = 'rgb(242, 204, 12)' UMFPACK_COLOR = 'rgb(242, 204, 12)'
ILU_COLOR = 'rgb(50, 116, 217)' ILU_COLOR = 'rgb(50, 116, 217)'
ILU_COLOR_MEDIUM = 'rgb(87, 148, 242)'
ILU_COLOR_LIGHT = 'rgb(138, 184, 255)'
INTEL_LINESTYLE = "solid" INTEL_LINESTYLE = "solid"
GCC_LINESTYLE = "dashed" GCC_LINESTYLE = "dashed"
...@@ -89,6 +91,8 @@ def dashboard_fe2ti(): ...@@ -89,6 +91,8 @@ def dashboard_fe2ti():
get_color_regex_override(f".*[Ss]olver.*: {solver}.*", color) get_color_regex_override(f".*[Ss]olver.*: {solver}.*", color)
for solver, color in [("pardiso", PARDISO_COLOR), ("umfpack", UMFPACK_COLOR), ("ilu", ILU_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(".*intel.*", INTEL_LINESTYLE),
get_line_style_regex_override(".*gcc.*", GCC_LINESTYLE) get_line_style_regex_override(".*gcc.*", GCC_LINESTYLE)
] ]
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment