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
For oe_matvec, potential speedup. We want to avoid too much conversions between sparse and dense matrices, so probably we want to switch to sparse matrices operations there.
For
oe_matvec
, potential speedup. We want to avoid too much conversions between sparse and dense matrices, so probably we want to switch to sparse matrices operations there.For example, the replacement for
np.inner
:https://docs.scipy.org/doc/scipy/reference/generated/scipy.sparse.linalg.LinearOperator.html#scipy.sparse.linalg.LinearOperator
Ordinary dot product:
https://docs.scipy.org/doc/scipy/reference/generated/scipy.sparse.csc_matrix.dot.html
The text was updated successfully, but these errors were encountered: