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
I've been trying to use LazyArrays for large linear solves, but it seems that even examples from the readme are both slower and more memory-heavy than just base solve for explicit arrays.
For instance,
A = randn(5,5); b = randn(5); c = similar(b);
@btime c .= @~ A \ b
@btime c .= applied(\, A, b)
@btime c .= Ldiv(A, b)
@btime c .= A \ b