DrTimothyAldenDavis / SuiteSparse

The official SuiteSparse library: a suite of sparse matrix algorithms authored or co-authored by Tim Davis, Texas A&M University.
https://people.engr.tamu.edu/davis/suitesparse.html
Other
1.15k stars 259 forks source link

allocate work momery outside of umfpack function #842

Closed DragonPara closed 3 months ago

DragonPara commented 3 months ago

Is your feature request related to a problem? Please describe. I want to allocate work momery by my main function, I found a series of umfpack_wsolve.

Describe the solution you'd like I want some umfpack_wnumeric and umfpack_wsymbolic function like this.

DrTimothyAldenDavis commented 3 months ago

It would be a nice feature but it's not possible. Sparse LU factorization is a very dynamic problem; the space required depends on the pivot ordering, which is not known until during numerical factorization.