check.py RC-latency *.max_us is a structural false-positive at -n 5 #16
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Distinct from the
*.bump_sstaleness above (different metric family, different root cause).latency.{explicit,implicit}_at_rc.max_usis the single worst of ~5000 samples over only 5 runs, dominated by OS scheduling / THP / IRQ jitter on a shared host, not allocator behaviour. It has fired a falseREGRESSIONon three consecutive no-runtime-change milestones (iteration-discipline-revert, prose-loop-binders, remove-mut-var-assign) and vanished on identical-code re-run every time (remove-mut-var-assign close: HEAD vs48e7774bench binariescmp-byte-identical,explicit_at_rc.max_uscollapsed +108%→-2.30% ok by rerun3) — a ~3-for-3 false-positive rate on null changes, while the median/p99/p99.9 of the same benchmarks held across all re-runs.Pick one mitigation: drop
*.max_usfrom the gating set (keep median/p99/p99.9, which are the trustworthy signal), or raise-nsubstantially for the tail metrics, or pin the latency arm to an isolated cpuset. Pure bench-harness change; no language change.context: remove-mut-var-assign close audit, bencher localisation (2026-05-18) — byte-identical-binary causal exoneration + the 3-milestone false-positive history. Plus the bencher localisation evidence in the iteration-discipline-revert audit commit.