Merge pull request #296 from bernhardmgruber/compare_sub_results

Allow partial comparison in `nvbench_compare.py`
This commit is contained in:
Bernhard Manfred Gruber
2026-02-03 20:02:34 +01:00
committed by GitHub

View File

@@ -32,7 +32,7 @@ pass_count = 0
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