From f77d001206a94a0fc7e57e155a4a30f0806fac8c Mon Sep 17 00:00:00 2001 From: Bernhard Manfred Gruber Date: Mon, 18 Aug 2025 16:52:54 +0200 Subject: [PATCH] Fix --- 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 b5eec46..7ad696e 100644 --- a/python/scripts/nvbench_compare.py +++ b/python/scripts/nvbench_compare.py @@ -207,7 +207,7 @@ def compare_benches(ref_benches, cmp_benches, threshold, plot): continue has_batch_data = cmp_batch_summary and ref_batch_summary - if not added_batch_headers: + if has_batch_data and not added_batch_headers: headers.append("B Ref Time") colalign.append("right") headers.append("B Cmp Time")