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
A is assumed to be a linear operator on the object of b. As a vector, b is interpreted as its value vec(b). So it's not sized to work. What you're trying to do here is a batch of linear solves, which implicitly occurs via matrix \ matrix, but in a general sense with general linear operators it's making many more assumptions and we're not quite ready to handle the general case (think Krylov methods), so right now it avoids the batch case.
Describe the bug 🐞
I'm getting the error:
When solving a linear system MF * FG = MG.
Expected behavior
I expected
solve
to behave similarly to\
in this case.Minimal Reproducible Example 👇
Error & Stacktrace⚠️
using Pkg; Pkg.status(; mode = PKGMODE_MANIFEST)
versioninfo()
The text was updated successfully, but these errors were encountered: