feat(graphs): new dimensions and layour for cpu grpahs

This commit is contained in:
Sebastian Rust
2026-06-03 12:45:54 +02:00
parent ce62d69f70
commit 7104d0b8df
-3
View File
@@ -87,9 +87,6 @@ def compute(derived: Path) -> tuple[dict[str, str], list[Path]]:
_mean_tests(out, base, vals[a], vals[b]) _mean_tests(out, base, vals[a], vals[b])
_variance_tests(out, base, vals[a], vals[b]) _variance_tests(out, base, vals[a], vals[b])
# Bonferroni-corrected thresholds. Count one entry per comparison
# (welch-p for mean families, bf-p for variance) so the threshold reflects
# the number of pairwise comparisons, not the number of test statistics.
def n_with(in_pattern: str, suffix: str) -> int: def n_with(in_pattern: str, suffix: str) -> int:
return sum(1 for k in out if in_pattern in k and k.endswith(suffix)) return sum(1 for k in out if in_pattern in k and k.endswith(suffix))