NAG CL Interface
f11mdc (direct_​real_​gen_​setup)

Settings help

CL Name Style:


1 Purpose

f11mdc computes a column permutation suitable for LU factorization (by f11mec) of a real sparse matrix in compressed column (Harwell–Boeing) format and applies it to the matrix. This function must be called prior to f11mec.

2 Specification

#include <nag.h>
void  f11mdc (Nag_ColumnPermutationType spec, Integer n, const Integer icolzp[], const Integer irowix[], Integer iprm[], NagError *fail)
The function may be called by the names: f11mdc, nag_sparse_direct_real_gen_setup or nag_superlu_column_permutation.

3 Description

Given a sparse matrix in compressed column (Harwell–Boeing) format A and a choice of column permutation schemes, the function computes those data structures that will be needed by the LU factorization function f11mec and associated functions f11mmc, f11mfc and f11mhc. The column permutation choices are:
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 A.

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: spec Nag_ColumnPermutationType Input
On entry: indicates the permutation to be applied.
spec=Nag_Sparse_Identity
The identity permutation is used (i.e., the columns are not permuted).
spec=Nag_Sparse_User
The permutation in the iprm array is used, as supplied by you.
spec=Nag_Sparse_Colamd
The permutation computed by the COLAMD algorithm is used
Constraint: spec=Nag_Sparse_Identity, Nag_Sparse_User or Nag_Sparse_Colamd.
2: n Integer Input
On entry: n, the order of the matrix A.
Constraint: n0.
3: icolzp[max(1,(n+1))] const Integer Input
On entry: the new column index array of sparse matrix A. See Section 2.1.3 in the F11 Chapter Introduction.
4: irowix[dim] const Integer Input
Note: the dimension, dim, of the array irowix must be at least max(1,(icolzp[max(1,(n+1))-1]-1)).
On entry: irowix[i-1] contains the row index in A for element A(i). See Section 2.1.3 in the F11 Chapter Introduction.
5: iprm[max(1,(7×n))] Integer Input/Output
On entry: the first n entries contain the column permutation if supplied by the user. This will be used if spec=Nag_Sparse_User, and ignored otherwise. If used, it must consist of a permutation of all the integers in the range [0,(n-1)], the leftmost column of the matrix A denoted by 0 and the rightmost by n-1. Labelling columns in this way, iprm[i]=j means that column i-1 of A is in position j in APc, where Pr A Pc=LU expresses the factorization to be performed.
On exit: The column permutation given or computed is returned in the second n entries. The rest of the array contains data structures that will be used by other functions in the suite. The function computes the column elimination tree for A 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 and this permutation is returned in the first n entries. This whole array is needed by the LU factorization function f11mec and associated functions f11mfc, f11mhc and f11mmc and should be passed to them unchanged.
6: fail NagError * Input/Output
The NAG error argument (see Section 7 in the Introduction to the NAG Library CL Interface).

6 Error Indicators and Warnings

NE_ALG_FAIL
COLAMD algorithm failed.
NE_ALLOC_FAIL
Dynamic memory allocation failed.
See Section 3.1.2 in the Introduction to the NAG Library CL Interface for further information.
NE_BAD_PARAM
On entry, argument value had an illegal value.
NE_INT
On entry, n=value.
Constraint: n0.
NE_INTERNAL_ERROR
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact NAG for assistance.
See Section 7.5 in the Introduction to the NAG Library CL Interface for further information.
NE_INVALID_PERM_COL
Incorrect column permutations in array iprm.
NE_NO_LICENCE
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library CL Interface for further information.
NE_SPARSE_COL
Incorrect specification of argument icolzp.
NE_SPARSE_ROW
Incorrect specification of argument irowix.

7 Accuracy

Not applicable. This computation does not use floating-point numbers.

8 Parallelism and Performance

f11mdc 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 function. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

9 Further Comments

We recommend calling this function with spec=Nag_Sparse_Colamd before calling f11mec. The COLAMD algorithm computes a sparsity-preserving permutation Pc solely from the pattern of A such that the LU factorization Pr A Pc = LU remains as sparse as possible, regardless of the subsequent choice of Pr. 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 LU factorization of the matrix A, where
A=( 2.00 1.00 0 0 0 0 0 1.00 -1.00 0 4.00 0 1.00 0 1.00 0 0 0 1.00 2.00 0 -2.00 0 0 3.00 ) .  

10.1 Program Text

Program Text (f11mdce.c)

10.2 Program Data

Program Data (f11mdce.d)

10.3 Program Results

Program Results (f11mdce.r)