-
-
Notifications
You must be signed in to change notification settings - Fork 130
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
API: Add sort
and take
functions for COO format
#627
Conversation
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #627 +/- ##
==========================================
- Coverage 90.57% 90.20% -0.38%
==========================================
Files 20 20
Lines 3618 3654 +36
==========================================
+ Hits 3277 3296 +19
- Misses 341 358 +17 |
33da5ff
to
ff2084f
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great work here! I feel the algorithm for sort
could use some improvement. I've left a guide on what to do in the comments, but feel free to ask questions if needed.
6d0591a
to
1b5662d
Compare
9360efc
to
af4ea95
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A couple of comments to ensure better testing.
af4ea95
to
16cbe86
Compare
for more information, see https://pre-commit.ci
Ok, I think I addressed all comments - the PR is ready for another review. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, feel free to hit the button. 😄
Thanks! Unfortunately I see: "You’re not authorized to merge this pull request." |
What about now? |
Merged! Thank you! |
Hi @hameerabbasi,
This PR adds
sort
andtake
Array API functions for the COO format to the main namespace.sort
function, where looping happens, is numba jitted.