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