-
Notifications
You must be signed in to change notification settings - Fork 915
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
Fix cudf::lists::sort_lists failing for sliced column #7564
Conversation
…hich accepts stream parameter.
Codecov Report
@@ Coverage Diff @@
## branch-0.19 #7564 +/- ##
===============================================
+ Coverage 81.86% 82.38% +0.51%
===============================================
Files 101 101
Lines 16884 17339 +455
===============================================
+ Hits 13822 14284 +462
+ Misses 3062 3055 -7
Continue to review full report at Codecov.
|
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.
cpp/include/cudf/lists/detail/sorting.cuh
need not be cuh
.
it should be .hpp
Thanks for your recommendation. I have changed |
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.
Looks good to me.
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
@gpucibot merge |
This fixes rapidsai#7530 (`cudf::lists::sort_lists` fails for sliced column). I also added more tests for sliced columns to cover the previously failed cases, and added a header `lists/detail/sorting.cuh` to expose the internal `detail::sort_lists` API which accepts a stream parameter. Authors: - Nghia Truong (@ttnghia) Approvers: - David (@davidwendt) - AJ Schmidt (@ajschmidt8) - Karthikeyan (@karthikeyann) URL: rapidsai#7564
This fixes #7530 (
cudf::lists::sort_lists
fails for sliced column).I also added more tests for sliced columns to cover the previously failed cases, and added a header
lists/detail/sorting.cuh
to expose the internaldetail::sort_lists
API which accepts a stream parameter.