NAG Library Routine Document
f11mef
(direct_real_gen_lu)
1
Purpose
f11mef computes the factorization of a real sparse matrix in compressed column (Harwell–Boeing), column-permuted format.
2
Specification
Fortran Interface
Subroutine f11mef ( |
n,
irowix,
a,
iprm,
thresh,
nzlmx,
nzlumx,
nzumx,
il,
lval,
iu,
uval,
nnzl,
nnzu,
flop,
ifail) |
Integer, Intent (In) | :: |
n,
irowix(*),
nzlmx,
nzumx | Integer, Intent (Inout) | :: |
iprm(7*n),
nzlumx,
ifail | Integer, Intent (Out) | :: |
il(7*n+nzlmx+4),
iu(2*n+nzumx+1),
nnzl,
nnzu | Real (Kind=nag_wp), Intent (In) | :: |
a(*),
thresh | Real (Kind=nag_wp), Intent (Out) | :: |
lval(nzlumx),
uval(nzumx),
flop |
|
C Header Interface
#include nagmk26.h
void |
f11mef_ (
const Integer *n,
const Integer irowix[],
const double a[],
Integer iprm[],
const double *thresh,
const Integer *nzlmx,
Integer *nzlumx,
const Integer *nzumx,
Integer il[],
double lval[],
Integer iu[],
double uval[],
Integer *nnzl,
Integer *nnzu,
double *flop,
Integer *ifail) |
|
3
Description
Given a real sparse matrix
,
f11mef computes an
factorization of
with partial pivoting,
, where
is a row permutation matrix (computed by
f11mef),
is a (supplied) column permutation matrix,
is unit lower triangular and
is upper triangular. The column permutation matrix,
, must be computed by a prior call to
f11mdf. The matrix
must be presented in the column permuted, compressed column (Harwell–Boeing) format.
The
factorization is output in the form of four one-dimensional arrays: integer arrays
il and
iu and real-valued arrays
lval and
uval. These describe the sparsity pattern and numerical values in the
and
matrices. The minimum required dimensions of these arrays cannot be given as a simple function of the size arguments (order and number of nonzero values) of the matrix
. This is due to unpredictable fill-in created by partial pivoting.
f11mef will, on return, indicate which dimensions of these arrays were not adequate for the computation or (in the case of one of them) give a firm bound. You should then allocate more storage and try again.
4
References
Demmel J W, Eisenstat S C, Gilbert J R, Li X S and Li J W H (1999) A supernodal approach to sparse partial pivoting SIAM J. Matrix Anal. Appl. 20 720–755
Demmel J W, Gilbert J R and Li X S (1999) An asynchronous parallel supernodal algorithm for sparse gaussian elimination SIAM J. Matrix Anal. Appl. 20 915–952
5
Arguments
- 1: – IntegerInput
-
On entry: , the order of the matrix .
Constraint:
.
- 2: – Integer arrayInput
-
Note: the dimension of the array
irowix
must be at least
, the number of nonzeros of the sparse matrix
.
On entry: the row index array of sparse matrix .
- 3: – Real (Kind=nag_wp) arrayInput
-
Note: the dimension of the array
a
must be at least
, the number of nonzeros of the sparse matrix
.
On entry: the array of nonzero values in the sparse matrix .
- 4: – Integer arrayInput/Output
-
On entry: contains the column permutation which defines the permutation
and associated data structures as computed by routine
f11mdf.
On exit: part of the array is modified to record the row permutation determined by pivoting.
- 5: – Real (Kind=nag_wp)Input
-
On entry: the diagonal pivoting threshold, . At step of the Gaussian elimination, if , use as a pivot, otherwise use . A value of corresponds to partial pivoting, a value of corresponds to always choosing the pivot on the diagonal (unless it is zero).
Suggested value:
. Smaller values may result in a faster factorization, but the benefits are likely to be small in most cases. It might be possible to use if you are confident about the stability of the factorization, for example, if is diagonally dominant.
Constraint:
.
- 6: – IntegerInput
-
On entry: indicates the available size of array
il. The dimension of
il should be at least
. A good range for
nzlmx that works for many problems is
to
, where
is the number of nonzeros in the sparse matrix
. If, on exit,
, the given
nzlmx was too small and you should attempt to provide more storage and call the routine again.
Constraint:
.
- 7: – IntegerInput/Output
-
On entry: indicates the available size of array
lval. The dimension of
lval should be at least
nzlumx.
Constraint:
.
On exit: if
, the given
nzlumx was too small and is reset to a value that will be sufficient. You should then provide the indicated storage and call the routine again.
- 8: – IntegerInput
-
On entry: indicates the available sizes of arrays
iu and
uval. The dimension of
iu should be at least
and the dimension of
uval should be at least
nzumx. A good range for
nzumx that works for many problems is
to
, where
is the number of nonzeros in the sparse matrix
. If, on exit,
, the given
nzumx was too small and you should attempt to provide more storage and call the routine again.
Constraint:
.
- 9: – Integer arrayOutput
-
On exit: encapsulates the sparsity pattern of matrix .
- 10: – Real (Kind=nag_wp) arrayOutput
-
On exit: records the nonzero values of matrix and some of the nonzero values of matrix .
- 11: – Integer arrayOutput
-
On exit: encapsulates the sparsity pattern of matrix .
- 12: – Real (Kind=nag_wp) arrayOutput
-
On exit: records some of the nonzero values of matrix .
- 13: – IntegerOutput
-
On exit: the number of nonzero values in the matrix .
- 14: – IntegerOutput
-
On exit: the number of nonzero values in the matrix .
- 15: – Real (Kind=nag_wp)Output
-
On exit: the number of floating-point operations performed.
- 16: – 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, .
Constraint: .
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, .
Constraint: .
-
-
-
-
The matrix is singular – no factorization possible.
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
The computed factors
and
are the exact factors of a perturbed matrix
, where
is a modest linear function of
, and
is the
machine precision, when partial pivoting is used. If no partial pivoting is used, the factorization accuracy can be considerably worse. A call to
f11mmf after
f11mef can help determine the quality of the factorization.
8
Parallelism and Performance
f11mef is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
f11mef 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 total number of floating-point operations depends on the sparsity pattern of the matrix .
A call to
f11mef may be followed by calls to the routines:
- f11mff to solve or ;
- f11mgf to estimate the condition number of ;
- f11mmf to estimate the reciprocal pivot growth of the factorization.
10
Example
This example computes the
factorization of the matrix
, where
10.1
Program Text
Program Text (f11mefe.f90)
10.2
Program Data
Program Data (f11mefe.d)
10.3
Program Results
Program Results (f11mefe.r)