Closed Huite closed 2 months ago
@veenstrajelmer
np.unique(..., axis=0)
calls with a faster custom implementation.unique
relies on sorting; our implementation minimizes sorting operations.reindex_like
to ensure consistent ordering.Based on these results: the sorting isn't taking enough time to make this worthwhile. (I could've known this beforehand if I had profiled properly, but it's nice to have realistic tests anyway!)
Fixes #46