Replies: 1 comment
-
The residual check is applied to each vector of the right-hand-side individually. So we check |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
If I am not wrong, when using:
the norm of residual will be compared with
eps
. However, it means it does not "adapt" to the size of the problem. For example, if I callgamma
the average residual (typical ||R_ij|| value) for a multiple-rhs problem, the stopping criteria will lead tonorm(R)~m*n_rhs*gamma<eps
and thusgamma < eps/m/n_rhs
.gamma
is inversely proportionnal to the size of the problem.Am I correct ? Is their any way to divide the norm per the size of the problem
m*n_rhs
while using absolute stopping criteria ?(Note : I may not know
m
andn_rhs
when building the factory, that's why I cannot juste write.with_reduction_factor(eps*m*n_rhs)
)Beta Was this translation helpful? Give feedback.
All reactions