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
This stores the last few objects returned from reshape and transpose
calls. This allows efficiencies from in-place operations like
`sum_duplicates` and `sort_indices` to persist in interative workflows.
Modern NumPy programmers are accustomed to operations like .transpose()
being cheap and aren't accustomed to having to pay sorting costs after
many computations. These assumptions are no longer true in sparse by
default. However, by caching recent transpose and reshape objects we
can reuse their inplace modifications. This greatly accelerates common
machine learning workloads.
0 commit comments