Skip to content

Commit

Permalink
Fixed which params to check
Browse files Browse the repository at this point in the history
  • Loading branch information
leventeBajczi committed Nov 30, 2024
1 parent c9e24bd commit 57b3c4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/slurm/arrayexecutor.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def filter_previous_results(run_set, benchmark, output_handler):
return run_set.runs

old_options = previous_results.get("options")
new_options = " ".join(benchmark.options)
new_options = " ".join(run_set.options)
if old_options != new_options:
logging.warning(
f"Mismatch in tool options: old options='{old_options}', current options: '{new_options}'"
Expand Down

0 comments on commit 57b3c4b

Please sign in to comment.