You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using newton optimizer , solving a inversed problem will be quiet slow and allocate more memory compared with a forward problem . I try to change "permc_spec" in scipy.sparse.linalg.spsolve to default ”COLAMD“, and found that it can significantly increase speed and reduce memory usage.
The text was updated successfully, but these errors were encountered:
Thanks for sharing this observation! I haven't tried COLAMD myself, but it's good if that makes the linear solver more efficient. The option I normally use for linear system is the multigrid solver from pyamg, called with --linsolver multigrid
When using newton optimizer , solving a inversed problem will be quiet slow and allocate more memory compared with a forward problem . I try to change "permc_spec" in scipy.sparse.linalg.spsolve to default ”COLAMD“, and found that it can significantly increase speed and reduce memory usage.
The text was updated successfully, but these errors were encountered: