Skip to content

Commit

Permalink
adjust Lanczos WARNING message
Browse files Browse the repository at this point in the history
  • Loading branch information
stgeke committed May 15, 2023
1 parent b5422ab commit 9841bcf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/rsb-aux.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 9841bcf

Please sign in to comment.