From 9841bcf0cb751ad5f4384073f62c1f7a3c20ef67 Mon Sep 17 00:00:00 2001 From: stgeke Date: Mon, 15 May 2023 15:42:10 +0200 Subject: [PATCH] adjust Lanczos WARNING message --- src/rsb-aux.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/rsb-aux.c b/src/rsb-aux.c index fb706373..04e500c4 100644 --- a/src/rsb-aux.c +++ b/src/rsb-aux.c @@ -76,9 +76,9 @@ static void check_rsb_partition(struct comm *gc, parrsb_options *opts) { double final = metric_get_value(i, TOL_FNL); comm_allreduce(&c, gs_double, gs_min, &final, 1, (void *)bfr); if (c.id == 0) { - printf("Warning: Lanczos reached a tolerance of %lf (target: %lf) " - "starting from %lf after %d x %d iterations in Level=%d!\n", - final, target, init, mpass, miter, i); + printf("Warning: Lanczos reached a residual of %lf (target: %lf) " + "after %d x %d iterations in Level=%d!\n", + final, target, mpass, miter, i); fflush(stdout); } } else if (opts->rsb_algo == 1) {