From c6ef87575c0940314a91878dff755912f571529c Mon Sep 17 00:00:00 2001 From: Bernhard Manfred Gruber Date: Wed, 10 Dec 2025 11:06:55 +0100 Subject: [PATCH] Allow partial comparison in nvbench_compare.py Fixes: #295 --- 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 bfc7a321..7ad67d18 100644 --- a/python/scripts/nvbench_compare.py +++ b/python/scripts/nvbench_compare.py @@ -32,7 +32,7 @@ def version_tuple(v): def find_matching_bench(needle, haystack): for hay in haystack: - if hay["name"] == needle["name"] and hay["axes"] == needle["axes"]: + if hay["name"] == needle["name"]: return hay return None