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
We will need to upstream these implementations to the dependency packages first if possible. If the maintainers are not receptive, we can roll our own implementation here.
The diagonal preconditioner has a general
ldiv!
method that can apply to a vector or a matrix becauseb
is duck typed:Preconditioners.jl/src/diagonal.jl
Line 40 in 52b3702
In contrast, the incomplete Cholesky preconditioner
ldiv!
is pinned to a Vector argument:Preconditioners.jl/src/incompletecholesky.jl
Line 28 in 52b3702
Could the package provide a more general RHS? Something like:
One related hack is something like this:
but I think there should be a better way?
The text was updated successfully, but these errors were encountered: