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
Hi,
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,
returns, on one example run:
I am not surprised that it takes longer to use lazy arrays, but is there any way to decrease memory use here?
The text was updated successfully, but these errors were encountered: