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
x=(N,) or (N,1) is different, (N,) is a vector, and (N,1) is an array, when we use matrix-vector multiply for an array with shape (74121,74121), this should be matrix-free. it doesn't work due to MemoryError, but it can work for gmres from scipy. I think this LinearOperation maybe some different with LinearOperation of scipy ?
The text was updated successfully, but these errors were encountered:
x=(N,) or (N,1) is different, (N,) is a vector, and (N,1) is an array, when we use matrix-vector multiply for an array with shape (74121,74121), this should be matrix-free. it doesn't work due to MemoryError, but it can work for gmres from scipy. I think this LinearOperation maybe some different with LinearOperation of scipy ?
The text was updated successfully, but these errors were encountered: