Expand description
Incomplete Cholesky factorization with zero fill-in — IC(0).
Computes an approximate factorization A ~ L * L^T for symmetric positive-
definite (SPD) matrices. The sparsity pattern of L matches the lower
triangle of A (zero fill-in).
§Algorithm
Uses a level-set parallel approach similar to ILU(0) but exploits symmetry:
- Rows are grouped into dependency levels.
- For each row
iin a level and each lower-triangular columnk < i:a_ij -= a_ik * a_jkforjin the intersection of rowicolumns and rowkcolumns. - The diagonal is updated:
a_ii = sqrt(a_ii). - Off-diagonal entries are scaled:
a_ij /= a_iiforj > i.
Functions§
- ic0
- Incomplete Cholesky(0) factorization:
A ~ L * L^T.