-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Drastic bottleneck: array joining #13
Comments
I did a lot of profiling on this (see #11 for more details), including Numpy (multiple variants), Pandas, Polars, Numba (multiple variants). A new Numba try seems to improve this quite a bit --> #12 With a simple profiling script I got the following. Current implementation:
New variant (#12):
|
Merged
I consider this fixed with #12 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The current implementation for merging arrays is FAR TOO SLOW.
Slicing and other operations seem fine, but adding data to a StackedSparseArray is painfully slow (even though the implementation was done with numba, but probably not the best way...)
The text was updated successfully, but these errors were encountered: