diff --git a/test/solver/gmres_kernels.cpp b/test/solver/gmres_kernels.cpp index f630d1d1c4a..54fa6f2608c 100644 --- a/test/solver/gmres_kernels.cpp +++ b/test/solver/gmres_kernels.cpp @@ -76,7 +76,7 @@ class Gmres : public CommonTestFixture { Solver::build() .with_criteria( gko::stop::Iteration::build().with_max_iters(246u).on(exec), - gko::stop::ResidualNorm<>::build() + gko::stop::ResidualNorm::build() .with_reduction_factor(1e-15) .on(exec)) .on(exec); @@ -85,7 +85,7 @@ class Gmres : public CommonTestFixture { Solver::build() .with_criteria( gko::stop::Iteration::build().with_max_iters(246u).on(ref), - gko::stop::ResidualNorm<>::build() + gko::stop::ResidualNorm::build() .with_reduction_factor(1e-15) .on(ref)) .on(ref);