Skip to content

Commit

Permalink
fix broken test_install
Browse files Browse the repository at this point in the history
  • Loading branch information
upsj committed May 12, 2023
1 parent ab1ab79 commit b4b5a35
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/test_install/test_install.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@ void check_solver(std::shared_ptr<gko::Executor> exec,
Solver::build()
.with_criteria(
gko::stop::Iteration::build().with_max_iters(num_iters),
idualNorm<>::build().with_reduction_factor(reduction_factor))
gko::stop::ResidualNorm<>::build().with_reduction_factor(
reduction_factor))
.on(exec_ref);
auto x_ref = gko::clone(exec_ref, x);
solver_gen->generate(A_ref)->apply(b, x_ref);
Expand Down

0 comments on commit b4b5a35

Please sign in to comment.