F11DSF (PDF version)
F11 Chapter Contents
F11 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

F11DSF

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

F11DSF solves a complex sparse non-Hermitian system of linear equations, represented in coordinate storage format, using a restarted generalized minimal residual (RGMRES), conjugate gradient squared (CGS), stabilized bi-conjugate gradient (Bi-CGSTAB), or transpose-free quasi-minimal residual (TFQMR) method, without preconditioning, with Jacobi, or with SSOR preconditioning.

2  Specification

SUBROUTINE F11DSF ( METHOD, PRECON, N, NNZ, A, IROW, ICOL, OMEGA, B, M, TOL, MAXITN, X, RNORM, ITN, WORK, LWORK, IWORK, IFAIL)
INTEGER  N, NNZ, IROW(NNZ), ICOL(NNZ), M, MAXITN, ITN, LWORK, IWORK(2*N+1), IFAIL
REAL (KIND=nag_wp)  OMEGA, TOL, RNORM
COMPLEX (KIND=nag_wp)  A(NNZ), B(N), X(N), WORK(LWORK)
CHARACTER(*)  METHOD
CHARACTER(1)  PRECON

3  Description

F11DSF solves a complex sparse non-Hermitian system of linear equations:
Ax=b,
using an RGMRES (see Saad and Schultz (1986)), CGS (see Sonneveld (1989)), Bi-CGSTAB() (see Van der Vorst (1989) and Sleijpen and Fokkema (1993)), or TFQMR (see Freund and Nachtigal (1991) and Freund (1993)) method.
F11DSF allows the following choices for the preconditioner:
For incomplete LU (ILU) preconditioning see F11DQF.
The matrix A is represented in coordinate storage (CS) format (see Section 2.1.1 in the F11 Chapter Introduction) in the arrays A, IROW and ICOL. The array A holds the nonzero entries in the matrix, while IROW and ICOL hold the corresponding row and column indices.
F11DSF is a Black Box routine which calls F11BRF, F11BSF and F11BTF. If you wish to use an alternative storage scheme, preconditioner, or termination criterion, or require additional diagnostic information, you should call these underlying routines directly.

4  References

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
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 ETNA 1 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
Young D (1971) Iterative Solution of Large Linear Systems Academic Press, New York

5  Parameters

1:     METHOD – CHARACTER(*)Input
On entry: specifies the iterative method to be used.
METHOD='RGMRES'
Restarted generalized minimum residual method.
METHOD='CGS'
Conjugate gradient squared method.
METHOD='BICGSTAB'
Bi-conjugate gradient stabilized () method.
METHOD='TFQMR'
Transpose-free quasi-minimal residual method.
Constraint: METHOD='RGMRES', 'CGS', 'BICGSTAB' or 'TFQMR'.
2:     PRECON – CHARACTER(1)Input
On entry: specifies the type of preconditioning to be used.
PRECON='N'
No preconditioning.
PRECON='J'
Jacobi.
PRECON='S'
Symmetric successive-over-relaxation (SSOR).
Constraint: PRECON='N', 'J' or 'S'.
3:     N – INTEGERInput
On entry: n, the order of the matrix A.
Constraint: N1.
4:     NNZ – INTEGERInput
On entry: the number of nonzero elements in the matrix A.
Constraint: 1NNZN2.
5:     A(NNZ) – COMPLEX (KIND=nag_wp) arrayInput
On entry: the nonzero elements of the matrix A, ordered by increasing row index, and by increasing column index within each row. Multiple entries for the same row and column indices are not permitted. The routine F11ZNF may be used to order the elements in this way.
6:     IROW(NNZ) – INTEGER arrayInput
7:     ICOL(NNZ) – INTEGER arrayInput
On entry: the row and column indices of the nonzero elements supplied in A.
Constraints:
IROW and ICOL must satisfy the following constraints (which may be imposed by a call to F11ZNF):
  • 1IROWiN and 1ICOLiN, for i=1,2,,NNZ;
  • either IROWi-1<IROWi or both IROWi-1=IROWi and ICOLi-1<ICOLi, for i=2,3,,NNZ.
8:     OMEGA – REAL (KIND=nag_wp)Input
On entry: if PRECON='S', OMEGA is the relaxation parameter ω to be used in the SSOR method. Otherwise OMEGA need not be initialized and is not referenced.
Constraint: 0.0<OMEGA<2.0.
9:     B(N) – COMPLEX (KIND=nag_wp) arrayInput
On entry: the right-hand side vector b.
10:   M – INTEGERInput
On entry: if METHOD='RGMRES', M is the dimension of the restart subspace.
If METHOD='BICGSTAB', M is the order  of the polynomial Bi-CGSTAB method.
Otherwise, M is not referenced.
Constraints:
  • if METHOD='RGMRES', 0<MminN,50;
  • if METHOD='BICGSTAB', 0<MminN,10.
11:   TOL – REAL (KIND=nag_wp)Input
On entry: the required tolerance. Let xk denote the approximate solution at iteration k, and rk the corresponding residual. The algorithm is considered to have converged at iteration k if
rkτ×b+Axk.
If TOL0.0, τ=maxε,nε is used, where ε is the machine precision. Otherwise τ=maxTOL,10ε,nε is used.
Constraint: TOL<1.0.
12:   MAXITN – INTEGERInput
On entry: the maximum number of iterations allowed.
Constraint: MAXITN1.
13:   X(N) – COMPLEX (KIND=nag_wp) arrayInput/Output
On entry: an initial approximation to the solution vector x.
On exit: an improved approximation to the solution vector x.
14:   RNORM – REAL (KIND=nag_wp)Output
On exit: the final value of the residual norm rk, where k is the output value of ITN.
15:   ITN – INTEGEROutput
On exit: the number of iterations carried out.
16:   WORK(LWORK) – COMPLEX (KIND=nag_wp) arrayWorkspace
17:   LWORK – INTEGERInput
On entry: the dimension of the array WORK as declared in the (sub)program from which F11DSF is called.
Constraints:
  • if METHOD='RGMRES', LWORK4×N+M×M+N+5+nu+121;
  • if METHOD='CGS', LWORK8×N+nu+120;
  • if METHOD='BICGSTAB', LWORK2×N×M+3+M×M+2+nu+120;
  • if METHOD='TFQMR', LWORK11×N+nu+120.
Where nu=N for PRECON='J' or 'S' and nu=0 otherwise.
18:   IWORK(2×N+1) – INTEGER arrayWorkspace
19:   IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to 0, -1​ or ​1. If you are unfamiliar with this parameter you should refer to Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is 0. When the value -1​ or ​1 is used it is essential to test the value of IFAIL on exit.
On exit: IFAIL=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6  Error Indicators and Warnings

If on entry IFAIL=0 or -1, explanatory error messages are output on the current error message unit (as defined by X04AAF).
Errors or warnings detected by the routine:
IFAIL=1
On entry,METHOD'RGMRES', 'CGS', 'BICGSTAB' or 'TFQMR',
orPRECON'N', 'J' or 'S',
orN<1,
orNNZ<1,
orNNZ>N2,
orPRECON='S' and OMEGA lies outside the interval 0.0,2.0,
orM<1,
orM>minN,50, when METHOD='RGMRES',
orM>minN,10, when METHOD='BICGSTAB',
orTOL1.0,
orMAXITN<1,
orLWORK is too small.
IFAIL=2
On entry, the arrays IROW and ICOL fail to satisfy the following constraints:
  • 1IROWiN and 1ICOLiN, for i=1,2,,NNZ;
  • IROWi-1<IROWi, or IROWi-1=IROWi and ICOLi-1<ICOLi, for i=2,3,,NNZ.
Therefore a nonzero element has been supplied which does not lie within the matrix A, is out of order, or has duplicate row and column indices. Call F11ZNF to reorder and sum or remove duplicates.
IFAIL=3
On entry, the matrix A has a zero diagonal element. Jacobi and SSOR preconditioners are therefore not appropriate for this problem.
IFAIL=4
The required accuracy could not be obtained. However, a reasonable accuracy may have been obtained, and further iterations could not improve the result. You should check the output value of RNORM for acceptability. This error code usually implies that your problem has been fully and satisfactorily solved to within or close to the accuracy available on your system. Further iterations are unlikely to improve on this situation.
IFAIL=5
Required accuracy not obtained in MAXITN iterations.
IFAIL=6
Algorithmic breakdown. A solution is returned, although it is possible that it is completely inaccurate.
IFAIL=7 (F11BRF, F11BSF or F11BTF)
A serious error has occurred in an internal call to one of the specified routines. Check all subroutine calls and array sizes. Seek expert help.

7  Accuracy

On successful termination, the final residual rk=b-Axk, where k=ITN, satisfies the termination criterion
rkτ×b+Axk.
The value of the final residual norm is returned in RNORM.

8  Further Comments

The time taken by F11DSF for each iteration is roughly proportional to NNZ.
The number of iterations required to achieve a prescribed accuracy cannot easily be determined a priori, as it can depend dramatically on the conditioning and spectrum of the preconditioned coefficient matrix A-=M-1A, for some preconditioning matrix M.

9  Example

This example solves a complex sparse non-Hermitian system of equations using the CGS method, with no preconditioning.

9.1  Program Text

Program Text (f11dsfe.f90)

9.2  Program Data

Program Data (f11dsfe.d)

9.3  Program Results

Program Results (f11dsfe.r)


F11DSF (PDF version)
F11 Chapter Contents
F11 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2012