UMFInfo¶
- class sksparse.umfpack.UMFInfo[source]¶
A data class to store UMFPACK info.
- strategy_used[source]¶
Strategy used in the factorization. One of:
{"auto", "unsymmetric", "symmetric"}.- Type:
- ordering_used[source]¶
Ordering method used in the factorization. One of:
{"cholmod", "amd", "given", "none", "metis", "best", "user", "metis_guard"}- Type:
- pattern_symmetry[source]¶
Symmetry of the nonzero pattern of the input matrix, excluding dense rows and columns (aka \(S\)).
- Type:
- symmetric_flops[source]¶
Number of floating-point operations for the factorization, if AMD ordering was used.
- Type:
- alloc_init_used[source]¶
Initial memory allocation used, as a fraction of total numeric memory.
- Type:
Added in version 0.5.0.
Methods