Next: 5.2.2 Parallel GMRES
Up: 5.2 GMRES solver
Previous: 5.2 GMRES solver
  Contents
5.2.1 Sequential algorithm
For solving a system of linear
equations with a non-symmetric matrix
(
) one can use
the General Conjugate Residual Method.
If
is additionally not positive definite,
i.e.,
,
then a variety of methods like GMRES, QMR, Bi-cg, Bi-cgstab
are available.
We will investigate the GMRES method based on the Arnoldi iteration
which is a generalization of the Lanczos method.
The number of stored vectors
and
entries in matrix
increases with the
number of iterations
and may cause a memory overflow.
To prevent this unexpected termination of the iteration
the REPEAT-loop will be stopped after
iterations and restarted
with
as initial solution.
This shortening of the cycle leads to an unstable behavior of the
method.
For preconditioning techniques see section 5.8.
Gundolf Haase
2000-03-20