-
Notifications
You must be signed in to change notification settings - Fork 78
OrdinaryDiffEq.jl v6 LinearSolve.jl #2255
Comments
Thanks, we will check it out. Have you kept the Wfact interface? |
That wasn't touched. What are you using that for? I can't think of a legitimate use since if you just use a DiffEqOperator you will get the |
We use it for solving the Schur form: basically we have an efficient way of solving I'd have to look to see if we can use DiffEqOperator (perhaps if |
Yeah if you make your |
I know CLIMA is one of the few projects making use of the OrdinaryDiffEq.jl linear solver interface. The latest breaking release's breaking part is that the old linear solver part was ripped out and replaced with a full library https://github.com/SciML/LinearSolve.jl . The nice thing of course is that if you define LinearSolve.jl solvers you can now just
TRBDF2(linsolve=PETSCLinsolve())
and it'll use that internally. Let me know if you need some help updating your linear solvers, but also we should now thing about more generally pulling out generically good linear solvers to there, along with the expanded preconditioners.(Note better preconditioning is then coming to OrdinaryDiffEq.jl. Now that this is done it's not hard and I hope to do it by the end of the month)
The text was updated successfully, but these errors were encountered: