Skip to content

Commit

Permalink
Hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
lbittarello committed Feb 5, 2024
1 parent 0ccfa9c commit a466c28
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/glum_benchmarks/cli_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,14 +81,14 @@ def cli_run(
for Ln in libraries.keys():
click.echo(f"running problem={Pn} library={Ln}")
new_params = params.update_params(problem_name=Pn, library_name=Ln)
result, regularization_strength_ = execute_problem_library(
result, _ = execute_problem_library(
new_params,
iterations,
(
defaults["diagnostics_level"]
if params.diagnostics_level is None
else params.diagnostics_level
), # type: ignore
defaults["diagnostics_level"] # type: ignore
if params.diagnostics_level is None # type: ignore
else params.diagnostics_level # type: ignore
),
)
_save_benchmark_results(
output_dir,
Expand Down

0 comments on commit a466c28

Please sign in to comment.