From 1308825a3cd2905ff9ae821702fc65af028a1430 Mon Sep 17 00:00:00 2001 From: "Yu-Hsiang M. Tsai" Date: Tue, 3 Dec 2024 16:37:11 +0100 Subject: [PATCH] update the multigrid preconditioner usage in test/mpi/solver --- test/mpi/solver/solver.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/test/mpi/solver/solver.cpp b/test/mpi/solver/solver.cpp index 80142e2e947..392bf9990b8 100644 --- a/test/mpi/solver/solver.cpp +++ b/test/mpi/solver/solver.cpp @@ -138,11 +138,7 @@ struct CgWithMg : SimpleSolverTest> { 16u) // necessary since the test matrices have less // rows than the default value .with_criteria( - gko::stop::Iteration::build().with_max_iters( - iteration_count()), - gko::stop::ResidualNorm::build() - .with_baseline(gko::stop::mode::absolute) - .with_reduction_factor(2 * reduction_factor()))); + gko::stop::Iteration::build().with_max_iters(1u))); } static bool blacklisted(const std::string& test)