sym-ildl  1.2
Incomplete LDL' factorizations of indefinite symmetric and skew-symmetric matrices.
Authors
Chen Greif, Shiwen He, Paul Liu

Table of Contents

Overview

sym-ildl is a C++ package for solving and producing fast incomplete factorizations of symmetric indefinite or skew-symmetric matrices. Given an $n\times n$ symmetric indefinite or skew-symmetric matrix $\mathbf{A}$, this package produces an incomplete $\mathbf{LDL^{T}}$ factorization. Prior to factorization, sym-ildl first scales the matrix to be equilibrated in the max-norm [2], and then preorders the matrix using either the Reverse Cuthill-McKee (RCM) algorithm or the Approximate Minimum Degree algorithm (AMD) [1]. To maintain stability, the user can use Bunch-Kaufman or rook partial pivoting during the factorization process. The factorization produced is of the form

\[ \mathbf{P^{T}SASP \approx LDL^{T}}. \]

where $\mathbf{P}$ is a permutation matrix, $\mathbf{S}$ a scaling matrix, and $\mathbf{L}$ and $\mathbf{D}$ are the unit lower triangular and block diagonal factors respectively. The user can also optionally solve the given linear system, using sym-ildl's incomplete factorization to precondition the built-in solver or using the full factorization as a direct solver.

This package is based on and extends an incomplete factorization approach proposed by Li and Saad [3] (which itself builds on Li, Saad, and Chow [4]).

Download links

[Latest release: 11/15/2015]

MATLAB MEX Files

Prebuilt binaries

The source code

Why use sym-ildl?

Quick Start

To begin using the package, first download the files above or compile the code hosted at https://github.com/inutard/matrix-factor. The GitHub repository contains the most up to date source code as well as an "experimental" branch that we release new features to. The package works under most Unix distributions as well as Cygwin under Windows. The default compiler used is g++, simply type make at the command line to compile the entire package. In addition to usage as a standalone program, the package also has a Matlab interface.

For using sym-ildl as a software library, see the API here. sym-ildl is a header only library, so one only needs to include source/solver.h for everything to work.

Using the package as a standalone program

The compiled program ldl_driver takes in through the command line one parameter (the matrix) as well as several additional optional parameters.

The format of execution is:

./ldl_driver -filename=[matrix-name.mtx] [-rhs_file=rhs-name.mtx ...]

The parameters can be given in any order, and will use a default value when not specified.

A description of each of these parameters can be accessed by typing

./ldl_driver --help

Generally speaking, the code operates in two phases: generating the preconditioner (factorization) and solving the linear system (solver). The factorization parameters can be used to specify how the LDL' preconditioner is built. If a right hand side is specified, the built-in solver attempts to solve the given linear system. The solver takes the preconditioner and uses it in either preconditioned MINRES or a direct solve (full factorization with Bunch-Kaufman or rook pivoting).

For convenience, the parameters are listed below.

Factorization parameters

Parameters
filenameThe filename of the matrix to be loaded. Several test matrices exist in the test_matrices folder. All matrices loaded are required to be in matrix market (.mtx) form.
fillControls memory usage. Each column of $\mathbf{L}$ is guaranteed to have fewer than $fill\cdot nnz(\mathbf{A})/n$ elements. Each column of $\mathbf{D}$ has at most 2 elements. When this argument is not given, the default value for fill is 3.0.
tolControls agressiveness of dropping. In each column k, elements less than $tol \cdot \left|\left|\mathbf{L}_{k+1:n,k}\right|\right|_1$ are dropped. The default value for tol is 0.001.
pp_tolA parameter to aggressiveness of Bunch-Kaufman pivoting (BKP). When pp_tol is 0, there is no partial pivoting. Values between 0 and 1 vary the number of pivots of BKP makes. When pp_tol is equal to 1, standard BKP is used. The pp_tol parameter is ignored if the pivot parameter is set to 'rook'. See the pivot parameters for more details. The default is 'rook'.
reorderingDetermines what sort of preordering will be used on the matrix. Choices are 'amd', 'rcm', and 'none'. The default is 'amd'.
inplaceIndicates whether the factorization should be performed in-place, leading to roughly a 33% saving in memory. This memory comes out of extra information used in the solver. If the solver is needed, then inplace should not be used. y indicates yes, n indicates no. The default flag is n.
pivotIndicates the pivoting algorithm used. Choices are 'rook' and 'bunch'. If rook is used, the pp_tol parameter is ignored. The default is 'rook'.
saveIndicates whether the output matrices should be saved. y indicates yes, n indicates no. The default flag is y. All matrices are saved in matrix market (.mtx) form. The matrices are saved into a folder named output_matrices. There are five saved files: outA.mtx, outL.mtx, outD.mtx, outS.mtx, and outP.mtx. outB.mtx is the matrix $\mathbf{B=P^{T}SASP}$. The rest of the outputs should be clear from the description above.
displayIndicates whether the output matrices should be displayed to the command line, used for debugging purposes. y indicates yes, n indicates no. The default flag is n. For this parameter to appear, sym-ildl must be compiled with SYM_ILDL_DEBUG defined.

Solver parameters

Parameters
solverThis chooses the solver for sym-ildl if given a right hand side. The options are 'sqmr', 'minres', 'full', and 'none'. If the 'full' solver is chosen, the full factorization is produced and a straightforward direct solve is done. Setting this parameter to y overrides all other solver parameters as well as -fill and -tol (since we will no longer produce an incomplete factorization). The default solver is 'sqmr'.
max_itersNumber of iterations that the builtin iterative solvers (SQMR or MINRES) can use. The default is -1 (i.e. iterative solver is not applied). The output solution is written to output_matrices\outsol.mtx.
solver_tolRelative tolerance for the builtin iterative solvers. When the iterate x satisfies ||Ax-b||/||b|| < solver_tol, the iterative solver is terminated. The default is 1e-6.
rhs_fileThe filename of the right hand size we want to solve. All right hand sides loaded are required to be in matrix market (.mtx) form. If no right hand sides are given, only the preconditioner is generated.
Typically, the pivot, equil, and reordering parameters are best left to the default options.
Examples:
Suppose we wish to factor the aug3dcqp matrix stored in test_matrices/aug3dcqp.mtx. Using the parameters described above, the execution of the program may go something like this:
./ldl_driver -filename=test_matrices/aug3dcqp.mtx -fill=3.0 tol=0.001 -save=y
Load succeeded. File test_matrices/aug3dcqp.mtx was loaded.
A is 35543 by 35543 with 128115 non-zeros.
Equilibration: 0.047 seconds.
AMD: 0.047 seconds.
Permutation: 0.047 seconds.
Factorization (BK pivoting): 0.109 seconds.
Total time: 0.250 seconds.
L is 35543 by 35543 with 162160 non-zeros.
Saving matrices...
Save complete.
Factorization Complete. All output written to /output_matrices directory.
The code above factors the aug3dcqp.mtx matrix (fill=3.0, tol=0.001) from the test_matrices folder and saves the outputs. The time it took to pre-order and equilibrate the matrix (0.047s) as well as the actual factorization (0.109s) are also given.
For convenience, we may use all optional arguments:
./ldl_driver -filename=test_matrices/aug3dcqp.mtx
Load succeeded. File test_matrices/aug3dcqp.mtx was loaded.
A is 35543 by ...
The code above would use the default arguments -fill=3.0 -tol=0.001 -reordering=amd -save=y. In general, we may give ldl_driver the arguments in any order, and omit any number of them (except the filename argument).
Solving a linear system
To actually solve the given linear system, simply supply a right hand side file (with the rhs_file argument) and a maximum number of solver iterations. When no right hand side is specified (but a solver iteration is), sym-ildl assumes a right hand side of all 1's for debugging purposes:
./ldl_driver -filename=test_matrices/aug3dcqp.mtx -max_iters=300 -max_tol=1e-6 -solver=minres
Load succeeded. File test_matrices/aug3dcqp.mtx was loaded.
A is 35543 by 35543 with 77829 non-zeros.
Right hand side has 35543 entries.
Equilibration: 0.000 seconds.
AMD: 0.015 seconds.
Permutation: 0.047 seconds.
Factorization (Rook pivoting): 0.047 seconds.
Total time: 0.109 seconds.
L is 35543 by 35543 with 162160 non-zeros.
Solving matrix with MINRES...
The estimated condition number of the matrix is 2.202256e+00.
MINRES took 18 iterations and got down to relative residual 8.627871e-07.
Solve time: 0.141 seconds.
Solution saved to output_matrices/outsol.mtx.
Saving matrices...
Save complete.
Factorization Complete. All output written to /output_matrices directory.

Using sym-ildl within MATLAB

If everything is compiled correctly, simply open MATLAB in the package directory. The startup.m script adds all necessary paths to MATLAB upon initiation. The program can now be called by its function handle, ildl.

ildl takes in seven arguments, six of them being optional. A full description of the parameters can be displayed by typing

help ildl

For convenience, the parameters are described below:

Parameters
AThe matrix to be factored.
fillControls memory usage. Each column is guaranteed to have fewer than $fill\cdot nnz(\mathbf{A})/n$ elements. When this argument is not given, the default value for fill is 3.0.
tolControls aggressiveness of dropping. In each column k, elements less than $tol \cdot \left|\left|\mathbf{L}_{k+1:n,k}\right|\right|_1$ are dropped. The default value for tol is 0.001.
reorderingDetermines what sort of pre-ordering will be used on the matrix. Choices are 'amd', 'rcm', and 'none'. The default is 'amd'.
equilDetermines if matrix is to be equilibriated (in the max norm) before anything. This parameter must be one of 'bunch' or 'none'. Default: 'bunch'
pivot_typeChooses the pivoting scheme used during the factorization. This parameter must be one of 'rook' or 'bunch'. Tbe default is 'rook'.
pp_tolThreshold parameter for Bunch-Kaufman pivoting (BKP). When pp_tol >= 1, full BKP is used. When pp_tol is 0, there is no partial pivoting. As pp_tol increases from 0 to 1, we smoothly switch from no pivoting to full BKP. Low values of pp_tol can be useful as an aggressive pivoting process may damage and permute any special structure present in the input matrix. The default value is 1.0. When rook pivoting is used, this parameter has no effect.

As with the standalone executable, the function has five outputs: L, D, p, S, and B:

Returns
L Unit lower triangular factor of $\mathbf{P^{T}SASP}$.
D Block diagonal factor (consisting of 1x1 and 2x2 blocks) of $\mathbf{P^{T}SASP}$.
p Permutation vector containing permutations done to $\mathbf{A}$.
S Diagonal scaling matrix that equilibrates $\mathbf{A}$ in the max-norm.
B Permuted and scaled matrix $\mathbf{B=P^{T}SASP}$ after factorization.
Examples:
Before we begin, let's first generate some symmetric indefinite matrices:
>> B = sparse(gallery('uniformdata',100,0));
>> A = [speye(100) B; B' sparse(100, 100)];
The A generated is a special type of matrix called a saddle-point matrix. These matrices are indefinite and arise often in optimzation problems. Note that A must be a MATLAB sparse matrix.
To factor the matrix, we supply ildl with the parameters described above:
>> [L, D, p, S, B] = ildl(A, 1.0, 0.001);
Equilibration: 0.001 seconds.
AMD: 0.000 seconds.
Permutation: 0.001 seconds.
Factorization: 0.013 seconds.
...
As we can see above, ildl will supply some timing information to the console when used. The reordering time is the time taken to equilibrate and pre-order the matrix. The factorization time is the time it took to factor and pivot the matrix with partial pivoting.
We may also take advantage of the optional parameters and simply feed ildl only one parameter:
>> [L, D, p, S, B] = ildl(A);
Equilibration: 0.001 seconds.
AMD: 0.001 seconds.
...
As specified above, the default values of fill=3.0, tol=0.001, pivot_type='rook', pp_tol=1.0, and reordering=amd are used.

Using sym-ildl with an iterative solver in MATLAB

To use the factorization as a preconditioner, we must apply the permutation and scaling matrices returned by ildl. For convenience here is a complete example of how ildl can be used with GMRES:

% Generate a test matrix
B = sparse(gallery('uniformdata',100,0));
A = [speye(100) B; B' sparse(100, 100)];
% Run sym-ildl
[L, D, p, S, B] = ildl(A, 1.0, 0.001);
% Create a right hand side of all 1s
rhs = ones(size(A,1), 1);
% Solve A*x = e, or equivalently, P'SASP*y = P'S*e,
% where y = P'S^(-1)*x. Since B = P'SASP, we can use give it to GMRES for convenience.
% Create the new right hand side (scaled and permuted)
new_rhs = S*rhs;
new_rhs = new_rhs(p);
% Create our preconditioner. LDLt(x) = (LDL')^(-1) * x.
LDLt = @(x) L'\(D\(L\x));
% Run GMRES(60), stopping when the relative residual is below 1e-6 or when 3*60 total iterations have passed.
y = gmres(B, new_rhs, 60, 1e-8, 3, LDLt);
% Get the solution x
z(p) = y;
x = S*z';
% Sanity check: Is it the close to the direct solve?
fprintf('This number should be small: %f\n', norm(x - A\rhs));

Usage for skew-symmetric matrices

When the matrix is skew-symmetric, almost all documentation above still applies. The only difference is that the executable is skew_ldl_driver instead of ldl_driver. The skew functionality of sym-ildl can be found in the experimental branch of https://github.com/inutard/matrix-factor.

As a standalone program

Let's factor the m3dskew50 matrix stored in test_matrices/skew/m3dskew50.mtx. As before, this is as simple as:

./skew_ldl_driver -filename=test_matrices/skew/m2dskew50.mtx
Load succeeded. File test_matrices/m2dskew50.mtx was loaded.
A is 125000 by 125000 with 735000 non-zeros.
Equilibration: 0.016 seconds.
AMD: 0.203 seconds.
...

As in the symmetric case, we used the default values for the parameter we did not specify. A description of each of these parameters can be accessed by typing

./skew_ldl_driver --help

Within MATLAB

Within MATLAB, using sym-ildl is even easier. As in the symmetric case, the command ildl can be used. Everything remains the same as the symmetric case, as ildl automatically detects whether the input is symmetric or skew-symmetric.

Let's first generate a skew-symmetric matrix for testing:

>> B = sparse(gallery('uniformdata',100,0));
>> A = B-B';

Since B is a matrix of random values between 0 and 1, A is almost certainly non-singular. Now we can call ildl exactly as before:

>> [L, D, p, S, B] = ildl(A, 1.0, 0.001);
Equilibration: 0.000 seconds.
AMD: 0.000 seconds.
Permutation: 0.000 seconds.
Factorization: 0.005 seconds.
Total time: 0.005 seconds.
L is 100 by 100 with 4815 non-zeros.

Finally, helpful information on the parameters for ildl can be found by typing:

help ildl

Licensing and How to contribute

sym-ildl is open source, and we're always looking for new contributions! The entire codebase is freely accessible at https://github.com/inutard/matrix-factor. We also use the MIT Licence, which essentially allow free use of this software in any way you want (see here for more details). Simply send us a pull request on GitHub to contribute.

Citing this code

If you have found our code useful, please consider citing us! A technical report (pdf), a BibTeX entry, and a link to the code are available here:

SYM-ILDL: Incomplete LDL^{T} Factorization of Symmetric Indefinite and Skew-Symmetric Matrices. Chen Greif, Shiwen He, Paul Liu. UBC Computer Science Technical Report, 2016. [pdf] [bib]

References

  1. J. A. George and J. W-H. Liu, Computer Solution of Large Sparse Positive Definite Systems, Prentice-Hall, 1981.
  2. J. R. Bunch, Equilibration of Symmetric Matrices in the Max-Norm, JACM, 18 (1971), pp. 566-572.
  3. N. Li and Y. Saad, Crout versions of the ILU factorization with pivoting for sparse symmetric matrices, ETNA, 20 (2006), pp. 75-85.
  4. N. Li, Y. Saad, and E. Chow, Crout versions of ILU for general sparse matrices, SISC, 25 (2003), pp. 716-728.