NAG Library Routine Document
f11mdf
(direct_real_gen_setup)
1
Purpose
f11mdf computes a column permutation suitable for
factorization (by
f11mef) of a real sparse matrix in compressed column (Harwell–Boeing) format and applies it to the matrix. This routine must be called prior to
f11mef.
2
Specification
Fortran Interface
Integer, Intent (In) | :: |
n,
icolzp(max(1,(n+1))),
irowix(max(1,(ICOLZP(max(1,(n+1)))-1))) | Integer, Intent (Inout) | :: |
iprm(max(1,(7*n))),
ifail | Character (1), Intent (In) | :: |
spec |
|
3
Description
Given a sparse matrix in compressed column (Harwell–Boeing) format
and a choice of column permutation schemes, the routine computes those data structures that will be needed by the
factorization routine
f11mef and associated routines
f11mmf,
f11mff and
f11mhf. The column permutation choices are:
- original order (that is, no permutation);
- user-supplied permutation;
- a permutation, computed by the routine, designed to minimize fill-in during the factorization.
The algorithm for this computed permutation is based on the approximate minimum degree column ordering algorithm COLAMD. The computed permutation is not sensitive to the magnitude of the nonzero values of .
4
References
Amestoy P R, Davis T A and Duff I S (1996) An approximate minimum degree ordering algorithm SIAM J. Matrix Anal. Appl. 17 886–905
Gilbert J R and Larimore S I (2004) A column approximate minimum degree ordering algorithm ACM Trans. Math. Software 30,3 353–376
Gilbert J R, Larimore S I and Ng E G (2004) Algorithm 836: COLAMD, an approximate minimum degree ordering algorithm ACM Trans. Math. Software 30, 3 377–380
5
Arguments
- 1: – Character(1)Input
-
On entry: indicates the permutation to be applied.
- The identity permutation is used (i.e., the columns are not permuted).
- The permutation in the iprm array is used, as supplied by you.
- The permutation computed by the COLAMD algorithm is used
Constraint:
, or .
- 2: – IntegerInput
-
On entry: , the order of the matrix .
Constraint:
.
- 3: – Integer arrayInput
-
On entry:
contains the index in
of the start of a new column. See
Section 2.1.3 in the F11 Chapter Introduction.
- 4: – Integer arrayInput
-
On entry:
contains the row index in
for element
. See
Section 2.1.3 in the F11 Chapter Introduction.
- 5: – Integer arrayInput/Output
-
On entry: the first entries contain the column permutation supplied by you. This will be used if , and ignored otherwise. If used, it must consist of a permutation of all the integers in the range , the leftmost column of the matrix denoted by and the rightmost by . Labelling columns in this way, means that column of is in position in , where expresses the factorization to be performed.
On exit: a new permutation is returned in the first
entries. The rest of the array contains data structures that will be used by other routines. The routine computes the column elimination tree for
and a post-order permutation on the tree. It then compounds the
iprm permutation given or computed by the COLAMD algorthm with the post-order permutation. This array is needed by the
factorization routine
f11mef and associated routines
f11mff,
f11mhf and
f11mmf and should be passed to them unchanged.
- 6: – 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: , or .
-
Incorrect column permutations in array
iprm.
-
COLAMD algorithm failed.
-
Incorrect specification of argument
icolzp.
-
Incorrect specification of argument
irowix.
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
Not applicable. This computation does not use floating-point numbers.
8
Parallelism and Performance
f11mdf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
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.
We recommend calling this routine with
before calling
f11mef. The COLAMD algorithm computes a sparsity-preserving permutation
solely from the pattern of
such that the
factorization
remains as sparse as possible, regardless of the subsequent choice of
. The algorithm takes advantage of the existence of super-columns (columns with the same sparsity pattern) to reduce running time.
10
Example
This example computes a sparsity preserving column permutation for the
factorization of the matrix
, where
10.1
Program Text
Program Text (f11mdfe.f90)
10.2
Program Data
Program Data (f11mdfe.d)
10.3
Program Results
Program Results (f11mdfe.r)