f11brf is a setup routine, the first in a suite of three routines for the iterative solution of a complex general (non-Hermitian) system of simultaneous linear equations. f11brf must be called before f11bsf, the iterative solver. The third routine in the suite, f11btf, can be used to return additional information about the computation.
These three routines are suitable for the solution of large sparse general (non-Hermitian) systems of equations.
The routine may be called by the names f11brf or nagf_sparse_complex_gen_basic_setup.
3Description
The suite consisting of the routines f11brf,f11bsfandf11btf is designed to solve the general (non-Hermitian) system of simultaneous linear equations of order , where is large and the coefficient matrix is sparse.
f11brf is a setup routine which must be called before f11bsf, the iterative solver. The third routine in the suite, f11btf, can be used to return additional information about the computation. A choice of methods is available:
The restarted generalized minimum residual method (RGMRES) (see Saad and Schultz (1986), Barrett et al. (1994) and Dias da Cunha and Hopkins (1994)) starts from the residual , where is an initial estimate for the solution (often ). An orthogonal basis for the Krylov subspace , for , is generated explicitly: this is referred to as Arnoldi's method (see Arnoldi (1951)). The solution is then expanded onto the orthogonal basis so as to minimize the residual norm . The lack of symmetry of implies that the orthogonal basis is generated by applying a ‘long’ recurrence relation, whose length increases linearly with the iteration count. For all but the most trivial problems, computational and storage costs can quickly become prohibitive as the iteration count increases. RGMRES limits these costs by employing a restart strategy: every iterations at most, the Arnoldi process is restarted from , where the subscript denotes the last available iterate. Each group of iterations is referred to as a ‘super-iteration’. The value of is chosen in advance and is fixed throughout the computation. Unfortunately, an optimum value of cannot easily be predicted.
3.2Conjugate Gradient Squared Method (CGS)
The conjugate gradient squared method (CGS) (see Sonneveld (1989), Barrett et al. (1994) and Dias da Cunha and Hopkins (1994)) is a development of the bi-conjugate gradient method where the nonsymmetric Lanczos method is applied to reduce the coefficients matrix to tridiagonal form: two bi-orthogonal sequences of vectors are generated starting from the residual , where is an initial estimate for the solution (often ) and from the
shadow residual
corresponding to the arbitrary problem , where can be any vector, but in practice is chosen so that . In the course of the iteration, the residual and shadow residual and are generated, where
is a polynomial of order , and bi-orthogonality is exploited by computing the vector product . Applying the ‘contraction’ operator twice, the iteration coefficients can still be recovered without advancing the solution of the shadow problem, which is of no interest. The CGS method often provides fast convergence; however, there is no reason why the contraction operator should also reduce the once reduced vector : this may well lead to a highly irregular convergence which may result in large cancellation errors.
The bi-conjugate gradient stabilized () method
(Bi-CGSTAB()) (see Van der Vorst (1989), Sleijpen and Fokkema (1993) and Dias da Cunha and Hopkins (1994)) is similar to the CGS method above. However, instead of generating the sequence , it generates the sequence , where the are polynomials chosen to minimize the residual after the application of the contraction operator . Two main steps can be identified for each iteration: an OR (Orthogonal Residuals) step where a basis of order is generated by a Bi-CG iteration and an MR (Minimum Residuals) step where the residual is minimized over the basis generated, by a method akin to GMRES. For , the method corresponds to the Bi-CGSTAB method of Van der Vorst (1989). For , more information about complex eigenvalues of the iteration matrix can be taken into account, and this may lead to improved convergence and robustness. However, as increases, numerical instabilities may arise. For this reason, a maximum value of is imposed, but probably is sufficient in most cases.
The transpose-free quasi-minimal residual method (TFQMR) (see Freund and Nachtigal (1991) and Freund (1993)) is conceptually derived from the CGS method. The residual is minimized over the space of the residual vectors generated by the CGS iterations under the simplifying assumption that residuals are almost orthogonal. In practice, this is not the case but theoretical analysis has proved the validity of the method. This has the effect of remedying the rather irregular convergence behaviour with wild oscillations in the residual norm that can degrade the numerical performance and robustness of the CGS method. In general, the TFQMR method can be expected to converge at least as fast as the CGS method, in terms of number of iterations, although each iteration involves a higher operation count. When the CGS method exhibits irregular convergence, the TFQMR method can produce much smoother, almost monotonic convergence curves. However, the close relationship between the CGS and TFQMR method implies that the overall speed of convergence is similar for both methods. In some cases, the TFQMR method may converge faster than the CGS method.
3.5General Considerations
For each method, a sequence of solution iterates is generated such that, hopefully, the sequence of the residual norms converges to a required tolerance. Note that, in general, convergence, when it occurs, is not monotonic.
In the RGMRES and Bi-CGSTAB() methods above, your program must provide the maximum number of basis vectors used, or , respectively; however, a smaller number of basis vectors may be generated and used when the stability of the solution process requires this (see Section 9).
Faster convergence can be achieved using a preconditioner (see Golub and Van Loan (1996) and Barrett et al. (1994)). A preconditioner maps the original system of equations onto a different system, say
(1)
with, hopefully, better characteristics with respect to its speed of convergence: for example, the condition number of the coefficients matrix can be improved or eigenvalues in its spectrum can be made to coalesce. An orthogonal basis for the Krylov subspace , for , is generated and the solution proceeds as outlined above. The algorithms used are such that the solution and residual iterates of the original system are produced, not their preconditioned counterparts. Note that an unsuitable preconditioner or no preconditioning at all may result in a very slow rate, or lack, of convergence. However, preconditioning involves a trade-off between the reduction in the number of iterations required for convergence and the additional computational costs per iteration. Also, setting up a preconditioner may involve non-negligible overheads.
A left preconditioner can be used by the RGMRES, CGS and TFQMR methods, such that in (1), where is the identity matrix of order ; a right preconditioner can be used by the Bi-CGSTAB() method, such that . These are formal definitions, used only in the design of the algorithms; in practice, only the means to compute the matrix–vector products and (the latter only being required when an estimate of or is computed internally), and to solve the preconditioning equations are required, i.e., explicit information about , or its inverse is not required at any stage.
The first termination criterion
(2)
is available for all four methods. In (2), , and denotes a user-specified tolerance subject to , , where is the machine precision. Facilities are provided for the estimation of the norm of the coefficients matrix or , when this is not known in advance, by applying Higham's method (see Higham (1988)). Note that cannot be estimated internally. This criterion uses an error bound derived from backward error analysis to ensure that the computed solution is the exact solution of a problem as close to the original as the termination tolerance requires. Termination criteria employing bounds derived from forward error analysis are not used because any such criteria would require information about the condition number which is not easily obtainable.
The second termination criterion
(3)
is available for all methods except TFQMR. In (3), is the largest singular value of the (preconditioned) iteration matrix . This termination criterion monitors the progress of the solution of the preconditioned system of equations and is less expensive to apply than criterion (2) for the Bi-CGSTAB() method with . Only the RGMRES method provides facilities to estimate internally, when this is not supplied (see Section 9).
Termination criterion (2) is the recommended choice, despite its additional costs per iteration when using the Bi-CGSTAB() method with . Also, if the norm of the initial estimate is much larger than the norm of the solution, that is, if , a dramatic loss of significant digits could result in complete lack of convergence. The use of criterion (2) will enable the detection of such a situation, and the iteration will be restarted at a suitable point. No such restart facilities are provided for criterion (3).
Optionally, a vector of user-specified weights can be used in the computation of the vector norms in termination criterion (2), i.e., , where , for . Note that the use of weights increases the computational costs.
The sequence of calls to the routines comprising the suite is enforced: first, the setup routine f11brf must be called, followed by the solver f11bsf. f11btf can be called either when f11bsf is carrying out a monitoring step or after f11bsf has completed its tasks. Incorrect sequencing will raise an error condition.
In general, it is not possible to recommend one method in preference to another. RGMRES is often used in the solution of systems arising from PDEs. On the other hand, it can easily stagnate when the size of the orthogonal basis is too small, or the preconditioner is not good enough. CGS can be the fastest method, but the computed residuals can exhibit instability which may greatly affect the convergence and quality of the solution. Bi-CGSTAB() seems robust and reliable, but it can be slower than the other methods: if a preconditioner is used and , Bi-CGSTAB() computes the solution of the preconditioned system : the preconditioning equations must be solved to obtain the required solution. The algorithm employed limits to or less, when no intermediate monitoring is requested, the number of times the preconditioner has to be thus applied compared with the total number of applications of the preconditioner. TFQMR can be viewed as a more robust variant of the CGS method: it shares the CGS method speed but avoids the CGS fluctuations in the residual, which may give rise to instability. Also, when the termination criterion (2) is used, the CGS, Bi-CGSTAB() and TFQMR methods will restart the iteration automatically when necessary in order to solve the given problem.
4References
Arnoldi W (1951) The principle of minimized iterations in the solution of the matrix eigenvalue problem Quart. Appl. Math.9 17–29
Barrett R, Berry M, Chan T F, Demmel J, Donato J, Dongarra J, Eijkhout V, Pozo R, Romine C and Van der Vorst H (1994) Templates for the Solution of Linear Systems: Building Blocks for Iterative Methods SIAM, Philadelphia
Dias da Cunha R and Hopkins T (1994) PIM 1.1 — the parallel iterative method package for systems of linear equations user's guide — Fortran 77 version Technical Report Computing Laboratory, University of Kent at Canterbury, Kent, UK
Freund R W (1993) A transpose-free quasi-minimal residual algorithm for non-Hermitian linear systems SIAM J. Sci. Comput.14 470–482
Freund R W and Nachtigal N (1991) QMR: a Quasi-Minimal Residual Method for Non-Hermitian Linear Systems Numer. Math.60 315–339
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
Higham N J (1988) FORTRAN codes for estimating the one-norm of a real or complex matrix, with applications to condition estimation ACM Trans. Math. Software14 381–396
Saad Y and Schultz M (1986) GMRES: a generalized minimal residual algorithm for solving nonsymmetric linear systems SIAM J. Sci. Statist. Comput.7 856–869
Sleijpen G L G and Fokkema D R (1993) BiCGSTAB for linear equations involving matrices with complex spectrum ETNA1 11–32
Sonneveld P (1989) CGS, a fast Lanczos-type solver for nonsymmetric linear systems SIAM J. Sci. Statist. Comput.10 36–52
Van der Vorst H (1989) Bi-CGSTAB, a fast and smoothly converging variant of Bi-CG for the solution of nonsymmetric linear systems SIAM J. Sci. Statist. Comput.13 631–644
5Arguments
1: – Character(*)Input
On entry: the iterative method to be used.
Restarted generalized minimum residual method.
Conjugate gradient squared method.
Bi-conjugate gradient stabilized () method.
Transpose-free quasi-minimal residual method.
Constraint:
, , or .
2: – Character(1)Input
On entry: determines whether preconditioning is used.
No preconditioning.
Preconditioning.
Constraint:
or .
3: – Character(1)Input
On entry: defines the matrix and vector norm to be used in the termination criteria.
norm.
norm.
norm.
Suggested values:
if , ;
if , .
Constraints:
if , , or ;
if , .
4: – Character(1)Input
On entry: specifies whether a vector of user-supplied weights is to be used in the computation of the vector norms required in termination criterion (2) (): , where
, for . The suffix denotes the vector norm used, as specified by the argument norm. Note that weights cannot be used when , i.e., when criterion (3) is used.
User-supplied weights are to be used and must be supplied on initial entry to f11bsf.
All weights are implicitly set equal to one. Weights do not need to be supplied on initial entry to f11bsf.
Suggested value:
.
Constraints:
if , or ;
if , .
5: – IntegerInput
On entry: defines the termination criterion to be used.
On entry: if , the largest singular value of the preconditioned iteration matrix; otherwise, sigmax is not referenced.
If , and , the value of will be estimated internally.
Constraint:
if or and , .
12: – IntegerInput
On entry: if , the frequency at which a monitoring step is executed by f11bsf: if or , a monitoring step is executed every monit iterations; otherwise, a monitoring step is executed every monit super-iterations (groups of up to or iterations for RGMRES or Bi-CGSTAB(), respectively).
There are some additional computational costs involved in monitoring the solution and residual vectors when the Bi-CGSTAB() method is used with .
Constraint:
.
13: – IntegerOutput
On exit: the minimum amount of workspace required by f11bsf. (See also Section 5 in f11bsf.)
On exit: the array work is initialized by f11brf. It must not be modified before calling the next routine in the suite, namely f11bsf.
15: – IntegerInput
On entry: the dimension of the array work as declared in the (sub)program from which f11brf is called.
Constraint:
.
Note: although the minimum value of lwork ensures the correct functioning of f11brf, a larger value is required by the other routines in the suite, namely f11bsfandf11btf. The required value is as follows:
Method
Requirements
RGMRES
, where is the dimension of the basis.
CGS
.
Bi-CGSTAB()
, where is the order of the method.
TFQMR
,
where
if and was supplied.
if and a preconditioner is used or was supplied.
otherwise.
16: – IntegerInput/Output
On entry: ifail must be set to , or to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of means that an error message is printed while a value of means that it is not.
If halting is not appropriate, the value or is recommended. If message printing is undesirable, then the value is recommended. Otherwise, the value is recommended. When the value or is used it is essential to test the value of ifail on exit.
On exit: unless the routine detects an error or a warning has been flagged (see Section 6).
6Error Indicators and Warnings
If on entry or , explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
f11brf has been called out of sequence: either f11brf has been called twice or f11bsf has not terminated its current task.
On entry, . Constraint: , , or .
On entry, . Constraint: or .
On entry, . Constraint: , or .
On entry, . Constraint: or .
On entry, . Constraint: or .
On entry, and . Constraint: if , .
On entry, and . Constraint: if , .
On entry, and . Constraint: if , .
On entry, . Constraint: .
On entry, , and . Constraint: if , . If , .
On entry, and . Constraint: if or , .
On entry, . Constraint: .
On entry, . Constraint: .
On entry, , and . Constraint: if and , .
On entry, , and . Constraint: if and or , .
On entry, and . Constraint: .
On entry, . Constraint: .
An unexpected error has been triggered by this routine. Please
contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.
7Accuracy
Not applicable.
8Parallelism and Performance
f11brf is not threaded in any implementation.
9Further Comments
RGMRES can estimate internally the maximum singular value of the iteration matrix, using , where is the upper triangular matrix obtained by factorization of the upper Hessenberg matrix generated by the Arnoldi process. The computational costs of this computation are negligible when compared to the overall costs.
Loss of orthogonality in the RGMRES method, or of bi-orthogonality in the Bi-CGSTAB() method may degrade the solution and speed of convergence. For both methods, the algorithms employed include checks on the basis vectors so that the number of basis vectors used for a given super-iteration may be less than the value specified in the input argument m. Also, if termination criterion (2) is used, the CGS, Bi-CGSTAB() and TFQMR methods will restart automatically the computation from the last available iterates, when the stability of the solution process requires it.
Termination criterion (3), when available, involves only the residual (or norm of the residual) produced directly by the iteration process: this may differ from the norm of the true residual , particularly when the norm of the residual is very small. Also, if the norm of the initial estimate of the solution is much larger than the norm of the exact solution, convergence can be achieved despite very large errors in the solution. On the other hand, termination criterion (3) is cheaper to use and inspects the progress of the actual iteration. Termination criterion (2) should be preferred in most cases, despite its slightly larger costs.
10Example
This example solves an non-Hermitian system of simultaneous linear equations using the TFQMR method where the coefficients matrix has a random sparsity pattern. An incomplete preconditioner is used (routines f11dnfandf11dpf).