Skip to content

Commit

Permalink
fix: bench key size parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
nsarlin-zama committed Nov 18, 2024
1 parent e390e8e commit e920581
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/benchmark_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def _parse_key_results(result_file, bench_type):
reader = csv.reader(csv_file)
for test_name, value in reader:
try:
params, display_name, operator = get_parameters(test_name, crate)
params, display_name, operator = get_parameters(test_name, "tfhe")
except Exception as err:
parsing_failures.append((test_name, f"failed to get parameters: {err}"))
continue
Expand Down

0 comments on commit e920581

Please sign in to comment.