NAG Library Routine Document
f11dkf
(real_gen_precon_jacobi)
1
Purpose
f11dkf computes the approximate solution of a real, symmetric or nonsymmetric, sparse system of linear equations applying a number of Jacobi iterations. It is expected that f11dkf will be used as a preconditioner for the iterative solution of real sparse systems of equations.
2
Specification
Fortran Interface
Subroutine f11dkf ( |
store,
trans,
init,
niter,
n,
nnz,
a,
irow,
icol,
check,
b,
x,
diag,
work,
ifail) |
Integer, Intent (In) | :: |
niter,
n,
nnz,
irow(nnz),
icol(nnz) | Integer, Intent (Inout) | :: |
ifail | Real (Kind=nag_wp), Intent (In) | :: |
a(nnz),
b(n) | Real (Kind=nag_wp), Intent (Inout) | :: |
diag(n) | Real (Kind=nag_wp), Intent (Out) | :: |
x(n),
work(n) | Character (1), Intent (In) | :: |
store,
trans,
init,
check |
|
C Header Interface
#include nagmk26.h
void |
f11dkf_ (
const char *store,
const char *trans,
const char *init,
const Integer *niter,
const Integer *n,
const Integer *nnz,
const double a[],
const Integer irow[],
const Integer icol[],
const char *check,
const double b[],
double x[],
double diag[],
double work[],
Integer *ifail,
const Charlen length_store,
const Charlen length_trans,
const Charlen length_init,
const Charlen length_check) |
|
3
Description
f11dkf computes the
approximate solution of the real sparse system of linear equations
using
niter iterations of the Jacobi algorithm (see also
Golub and Van Loan (1996) and
Young (1971)):
where
and
.
f11dkf can be used both for nonsymmetric and symmetric systems of equations. For symmetric matrices, either all nonzero elements of the matrix
can be supplied using coordinate storage (CS), or only the nonzero elements of the lower triangle of
, using symmetric coordinate storage (SCS) (see the
F11 Chapter Introduction).
It is expected that
f11dkf will be used as a preconditioner for the iterative solution of real sparse systems of equations, using either the suite comprising the routines
f11gdf,
f11gef and
f11gff, for symmetric systems, or the suite comprising the routines
f11bdf,
f11bef and
f11bff, for nonsymmetric systems of equations.
4
References
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
Young D (1971) Iterative Solution of Large Linear Systems Academic Press, New York
5
Arguments
- 1: – Character(1)Input
-
On entry: specifies whether the matrix
is stored using symmetric coordinate storage (SCS) (applicable only to a symmetric matrix
) or coordinate storage (CS) (applicable to both symmetric and non-symmetric matrices).
- The complete matrix is stored in CS format.
- The lower triangle of the symmetric matrix is stored in SCS format.
Constraint:
or .
- 2: – Character(1)Input
-
On entry: if
, specifies whether the approximate solution of
or of
is required.
- The approximate solution of is calculated.
- The approximate solution of is calculated.
Suggested value:
if the matrix is symmetric and stored in CS format, it is recommended that for reasons of efficiency.
Constraint:
or .
- 3: – Character(1)Input
-
On entry: on first entry,
init should be set to 'I', unless the diagonal elements of
are already stored in the array
diag. If
diag already contains the diagonal of
, it must be set to 'N'.
- diag must contain the diagonal of .
- diag will store the diagonal of on exit.
Suggested value:
on first entry;
, subsequently, unless
diag has been overwritten.
Constraint:
or .
- 4: – IntegerInput
-
On entry: the number of Jacobi iterations requested.
Constraint:
.
- 5: – IntegerInput
-
On entry: , the order of the matrix .
Constraint:
.
- 6: – IntegerInput
-
On entry: if
, the number of nonzero elements in the matrix
.
If , the number of nonzero elements in the lower triangle of the matrix .
Constraints:
- if , ;
- if , .
- 7: – Real (Kind=nag_wp) arrayInput
-
On entry: if
, the nonzero elements in the matrix
(CS format).
If , the nonzero elements in the lower triangle of the matrix (SCS format).
In both cases, the elements of either
or of its lower triangle must be ordered by increasing row index and by increasing column index within each row. Multiple entries for the same row and columns indices are not permitted. The routine
f11zaf or
f11zbf may be used to reorder the elements in this way for CS and SCS storage, respectively.
- 8: – Integer arrayInput
- 9: – Integer arrayInput
-
On entry: if
, the row and column indices of the nonzero elements supplied in
a.
If
, the row and column indices of the nonzero elements of the lower triangle of the matrix
supplied in
a.
Constraints:
- , for ;
- if , , for ;
- if , , for ;
- either or both and , for .
- 10: – Character(1)Input
-
On entry: specifies whether or not the CS or SCS representation of the matrix
should be checked.
- Checks are carried out on the values of n, nnz, irow, icol; if , diag is also checked.
- None of these checks are carried out.
Constraint:
or .
- 11: – Real (Kind=nag_wp) arrayInput
-
On entry: the right-hand side vector .
- 12: – Real (Kind=nag_wp) arrayOutput
-
On exit: the approximate solution vector .
- 13: – Real (Kind=nag_wp) arrayInput/Output
-
On entry: if , the diagonal elements of .
On exit: if
, unchanged on exit.
If , the diagonal elements of .
- 14: – Real (Kind=nag_wp) arrayWorkspace
-
- 15: – IntegerInput/Output
-
On entry:
ifail must be set to
,
. If you are unfamiliar with this argument you should refer to
Section 3.4 in How to Use the NAG Library and its Documentation for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this argument, the recommended value is
.
When the value 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).
6
Error 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:
-
On entry, | or , |
or | or , |
or | or , |
or | or , |
or | . |
-
On entry, | , |
or | , |
or | , if , |
or | , if . |
-
On entry, the arrays
irow and
icol fail to satisfy the following constraints:
- and
- if then , or
- if then , for .
- or and , for .
Therefore a nonzero element has been supplied which does not lie within the matrix
, is out of order, or has duplicate row and column indices. Call either
f11zaf or
f11zbf to reorder and sum or remove duplicates when
or
, respectively.
-
On entry,
and some diagonal elements of
stored in
diag are zero.
-
On entry, and some diagonal elements of are zero.
An unexpected error has been triggered by this routine. Please
contact
NAG.
See
Section 3.9 in How to Use the NAG Library and its Documentation for further information.
Your licence key may have expired or may not have been installed correctly.
See
Section 3.8 in How to Use the NAG Library and its Documentation for further information.
Dynamic memory allocation failed.
See
Section 3.7 in How to Use the NAG Library and its Documentation for further information.
7
Accuracy
In general, the Jacobi method cannot be used on its own to solve systems of linear equations. The rate of convergence is bound by its spectral properties (see, for example,
Golub and Van Loan (1996)) and as a solver, the Jacobi method can only be applied to a limited set of matrices. One condition that guarantees convergence is strict diagonal dominance.
However, the Jacobi method can be used successfully as a preconditioner to a wider class of systems of equations. The Jacobi method has good vector/parallel properties, hence it can be applied very efficiently. Unfortunately, it is not possible to provide criteria which define the applicability of the Jacobi method as a preconditioner, and its usefulness must be judged for each case.
8
Parallelism and Performance
f11dkf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
f11dkf makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the
X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the
Users' Note for your implementation for any additional implementation-specific information.
The time taken for a call to f11dkf is proportional to .
It is expected that a common use of f11dkf will be as preconditioner for the iterative solution of real, symmetric or nonsymmetric, linear systems. In this situation, f11dkf is likely to be called many times. In the interests of both reliability and efficiency, you are recommended to set for the first of such calls, and to set for all subsequent calls.
10
Example
This example solves the real sparse nonsymmetric system of equations iteratively using f11dkf as a preconditioner.
10.1
Program Text
Program Text (f11dkfe.f90)
10.2
Program Data
Program Data (f11dkfe.d)
10.3
Program Results
Program Results (f11dkfe.r)