Allow partial comparison in nvbench_compare.py

Fixes: #295
This commit is contained in:
Bernhard Manfred Gruber
2025-12-10 11:06:55 +01:00
parent 867d5d4276
commit c6ef87575c

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