Incomplete LU factorization

From HandWiki

In numerical linear algebra, an incomplete LU factorization (abbreviated as ILU) of a matrix is a sparse approximation of the LU factorization often used as a preconditioner.

Introduction

Consider a sparse linear system [math]\displaystyle{ Ax = b }[/math]. These are often solved by computing the factorization [math]\displaystyle{ A = LU }[/math], with L lower unitriangular and U upper triangular. One then solves [math]\displaystyle{ Ly = b }[/math], [math]\displaystyle{ Ux = y }[/math], which can be done efficiently because the matrices are triangular.

For a typical sparse matrix, the LU factors can be much less sparse than the original matrix — a phenomenon called fill-in. The memory requirements for using a direct solver can then become a bottleneck in solving linear systems. One can combat this problem by using fill-reducing reorderings of the matrix's unknowns, such as the Minimum degree algorithm.

An incomplete factorization instead seeks triangular matrices L, U such that [math]\displaystyle{ A \approx LU }[/math] rather than [math]\displaystyle{ A = LU }[/math]. Solving for [math]\displaystyle{ LUx = b }[/math] can be done quickly but does not yield the exact solution to [math]\displaystyle{ Ax = b }[/math]. So, we instead use the matrix [math]\displaystyle{ M = LU }[/math] as a preconditioner in another iterative solution algorithm such as the conjugate gradient method or GMRES.

Definition

For a given matrix [math]\displaystyle{ A \in \R^{n \times n} }[/math] one defines the graph [math]\displaystyle{ G(A) }[/math] as

[math]\displaystyle{ G(A) := \left\lbrace (i,j) \in \N^2 : A_{ij} \neq 0 \right\rbrace \,, }[/math]

which is used to define the conditions a sparsity patterns [math]\displaystyle{ S }[/math] needs to fulfill

[math]\displaystyle{ S \subset \left\lbrace 1, \dots , n \right\rbrace^2 \,, \quad \left\lbrace (i,i) : 1 \leq i \leq n \right\rbrace \subset S \,, \quad G(A) \subset S \,. }[/math]

A decomposition of the form [math]\displaystyle{ A = LU - R }[/math] where the following hold

  • [math]\displaystyle{ L \in \R^{n \times n} }[/math] is a lower unitriangular matrix
  • [math]\displaystyle{ U \in \R^{n \times n} }[/math] is an upper triangular matrix
  • [math]\displaystyle{ L,U }[/math] are zero outside of the sparsity pattern: [math]\displaystyle{ L_{ij}=U_{ij}=0 \quad \forall \; (i,j) \notin S }[/math]
  • [math]\displaystyle{ R \in \R^{n \times n} }[/math] is zero within the sparsity pattern: [math]\displaystyle{ R_{ij}=0 \quad \forall \; (i,j) \in S }[/math]

is called an incomplete LU decomposition (with respect to the sparsity pattern [math]\displaystyle{ S }[/math]).

The sparsity pattern of L and U is often chosen to be the same as the sparsity pattern of the original matrix A. If the underlying matrix structure can be referenced by pointers instead of copied, the only extra memory required is for the entries of L and U. This preconditioner is called ILU(0).

Stability

Concerning the stability of the ILU the following theorem was proven by Meijerink and van der Vorst.[1]

Let [math]\displaystyle{ A }[/math] be an M-matrix, the (complete) LU decomposition given by [math]\displaystyle{ A=\hat{L} \hat{U} }[/math], and the ILU by [math]\displaystyle{ A=LU-R }[/math]. Then

[math]\displaystyle{ |L_{ij}| \leq |\hat{L}_{ij}| \quad \forall \; i,j }[/math]

holds. Thus, the ILU is at least as stable as the (complete) LU decomposition.

Generalizations

One can obtain a more accurate preconditioner by allowing some level of extra fill in the factorization. A common choice is to use the sparsity pattern of A2 instead of A; this matrix is appreciably more dense than A, but still sparse over all. This preconditioner is called ILU(1). One can then generalize this procedure; the ILU(k) preconditioner of a matrix A is the incomplete LU factorization with the sparsity pattern of the matrix Ak+1.

More accurate ILU preconditioners require more memory, to such an extent that eventually the running time of the algorithm increases even though the total number of iterations decreases. Consequently, there is a cost/accuracy trade-off that users must evaluate, typically on a case-by-case basis depending on the family of linear systems to be solved.

The ILU factorization can be performed as a fixed-point iteration in a highly parallel way.[2]

See also

References

  • Saad, Yousef (1996), Iterative methods for sparse linear systems (1st ed.), Boston: PWS, ISBN 978-0-534-94776-7 . See Section 10.3 and further.
  1. Meijerink, J. A.; Vorst, Van Der; A, H. (1977). "An iterative solution method for linear systems of which the coefficient matrix is a symmetric 𝑀-matrix" (in en-US). Mathematics of Computation 31 (137): 148–162. doi:10.1090/S0025-5718-1977-0438681-4. ISSN 0025-5718. https://www.ams.org/home/page/. 
  2. Chow, Edmond; Patel, Aftab (2015). "Fine-grained parallel incomplete LU factorization". SIAM Journal on Scientific Computing 37 (2): C169-C193. doi:10.1137/140968896. 


External links