Expand description
supernodal factorization module
a supernodal factorization is one that processes the elements of the $QR$ factors of the input matrix by blocks, rather than by single elements. this is more efficient if the $QR$ factors are somewhat dense
Structs§
- Supernodal
QrRef - $QR$ factors containing both the symbolic and numeric representations
- Symbolic
Supernodal Householder - symbolic structure of the householder reflections that compose $Q$
- Symbolic
Supernodal Qr - symbolic structure of the $QR$ decomposition,
Functions§
- factorize_
supernodal_ numeric_ qr - computes the numerical $QR$ factorization of $A$
- factorize_
supernodal_ numeric_ qr_ scratch - computes the size and alignment of the workspace required to compute the numerical $QR$ factorization of the matrix whose structure was used to produce the symbolic structure
- factorize_
supernodal_ symbolic_ qr - computes the symbolic $QR$ factorization of a matrix $A$, given a fill-reducing column permutation, and the outputs of the pre-factorization steps
- factorize_
supernodal_ symbolic_ qr_ scratch - computes the size and alignment of the workspace required to compute the symbolic $QR$
factorization of a matrix with dimensions
(nrows, ncols)