From 08d2f49aa9a5b1ec5b3b1623467dc086fab935e1 Mon Sep 17 00:00:00 2001 From: Oleksandr Pavlyk <21087696+oleksandr-pavlyk@users.noreply.github.com> Date: Thu, 25 Jun 2026 16:49:16 -0500 Subject: [PATCH] Replace Pass bucket in the summary output with Unchanged, clarified description --- python/scripts/nvbench_compare.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/scripts/nvbench_compare.py b/python/scripts/nvbench_compare.py index 902e94f..fd4fdb0 100644 --- a/python/scripts/nvbench_compare.py +++ b/python/scripts/nvbench_compare.py @@ -3211,7 +3211,7 @@ def main() -> int: print("# Summary\n") print(f"- Total Matches: {stats.config_count}") - print(f" - Pass (centers close and intervals overlap): {stats.pass_count}") + print(f" - Unchanged (classified as SAME): {stats.pass_count}") print(f" - Improvement (clear timing gap, %Diff < 0): {stats.improvement_count}") print(f" - Regression (clear timing gap, %Diff > 0): {stats.regression_count}") print(f" - Ambiguous (comparison requires more evidence): {stats.undecided_count}")