From 7104d0b8dff9552bca90395d523f12c1b79892df Mon Sep 17 00:00:00 2001 From: Sebastian Rust Date: Wed, 3 Jun 2026 12:45:54 +0200 Subject: [PATCH] feat(graphs): new dimensions and layour for cpu grpahs --- analysis/values/tests.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/analysis/values/tests.py b/analysis/values/tests.py index 8c4bf2c..dbca01f 100644 --- a/analysis/values/tests.py +++ b/analysis/values/tests.py @@ -87,9 +87,6 @@ def compute(derived: Path) -> tuple[dict[str, str], list[Path]]: _mean_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: return sum(1 for k in out if in_pattern in k and k.endswith(suffix))