HLIBpro
2.1
|
Table of Contents |
For unsymmetric matrices, 𝓗𝖫𝖨𝖡𝗉𝗋𝗈 implements LU and LDU factorisation, i.e. the matrix is factorised into
with a lower triangular, unit diagonal matrix , a upper triangular matrix and, in the case of LDU a diagonal matrix (in which case is also unit diagonal).
Both matrix factorisation are available in two modes:
In the case of point-wise factorisation, the possibility of a break-down is high because pivoting is only possible to a very small degree for 𝓗-matrices and therefore not implemented in 𝓗𝖫𝖨𝖡𝗉𝗋𝗈. Therefore, block-wise factorisation is the default factorisation mode, since it can only break down in the case of singular diagonal blocks (in which case some remedy is avaibable, see below).
The factorisation methods are implemented in the classes TLU and TLDU. Factorising using default parameters can be performed as
Here, a block-wise accuracy of were used during LU. By replacing TLU with TLDU, the corresponding factorisation method is used. Furthermore, for both variants, functional forms are available, called lu and ldu:
Matrix factorisation is performed in place, i.e. the individual factors are stored within , thereby overwriting the original content. That also means, that can no longer be used as a standard matrix object, e.g. for matrix vector multiplication, since for that, the content needs special interpretation, e.g. first multiply with upper triangular part, then with lower triangular.
Special classes are avaiable in 𝓗𝖫𝖨𝖡𝗉𝗋𝗈 to perform such interpretation, namely:
Since the corresponding objects do not provide standard matrix functionality, they are representatives of the linear operator class TLinearOperator. Linear operators only provide evaluation of the matrix-vector product, which itself is a limited version of the standard TMatrix matrix-vector multiplication since only updates of the destination vector are possible, e.g. either
or
However, also the transposed or hermitian evaluation are supported.
TLUMatrix (TLDUMatrix) and TLUInvMatrix (TLDUInvMatrix) objects may be created explicitely or by using the corresponding functions of TLU (TLDU):
So far, matrix factorisation was performed with default parameters. Options for matrix factorisation are provided in the form of a fac_options_t object. With it, you may select point-wise factorisation, e.g.:
Also, a progress meter may be assigned for the factorisation:
Furthermore, special modifications in case of a factorisation failure, e.g. for a singular matrix or for a matrix with a bad condition, may be activated.
The first three modification techniques are exclusive, i.e. may not be combined, whereas the last method can be used parallel to the others. Furthermore, all modifications only apply to dense diagonal blocks, thereby bounding the computation complexity of all methods such that the overhead can be neglected.
add_identity
(combined with fix_cond
) is best for handling errors during factorisation.If is symmetric ( ) or hermitian ( ), 𝓗𝖫𝖨𝖡𝗉𝗋𝗈 provides the Cholesky (LL) and the LDL factorisation. These are implemented in the classes TLL and TLDL:
or available in functional form:
Evaluation of a factorised is provided by TLLMatrix and TLDLMatrix, whereas evaluation of is implemented in TLLInvMatrix and TLDLInvMatrix. Please note, that the matrix format, e.g. whether symmetric or hermitian, is lost during factorisation but crucial for matrix evaluation and therefore, has to be provided while constructing these matrix objects:
TLDL uses block-wise factorisation but can be switched to point-wise mode using fac_options_t objects as described above. Also, factorisation modifications/stabilisations may be activated for LDL factorisation. Neither of these is supported for Cholesky factorisation as this always used point-wise mode (block-wise is not possible). It is therefore not as stable as LDL factorisation.
Instead of chosing the factorisation technique by yourself and handling the creation of the corresponding linear operators, this can be simplified by using the functions factorise
and factorise_inv:
This works for unsymmetric and symmetric/hermitian matrices. Furthermore, options to the factorisation may be provided as an additional argument.