diff --git a/ci/summarize-results.py b/ci/summarize-results.py index a2135b3c3eeb4a00f725b79cc6afff107d308fef..3b46b36d3e35c898fcf6969429de02c1816e2768 100644 --- a/ci/summarize-results.py +++ b/ci/summarize-results.py @@ -48,7 +48,7 @@ def create_summary_plot(metrics, outplot_name): grid = seaborn.FacetGrid(metrics, col="architecture", row="parameters") - grid.set_titles(template="Arch: {row_name} - {col_name}") + grid.set_titles(template="Arch: {col_name} - {row_name}") grid.map(seaborn.barplot, "compiler_version", "cpu_time", "method") grid.set_ylabels(f"CPU time({time_unit})") grid.add_legend()