-
Notifications
You must be signed in to change notification settings - Fork 908
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
[REVIEW] Strings scatter detail function #3440
Conversation
Codecov Report
@@ Coverage Diff @@
## branch-0.11 #3440 +/- ##
============================================
Coverage 87.36% 87.36%
============================================
Files 49 49
Lines 9295 9295
============================================
Hits 8121 8121
Misses 1174 1174 Continue to review full report at Codecov.
|
rerun tests |
|
*---------------------------------------------------------------------------**/ | ||
std::unique_ptr<cudf::column> slice( strings_column_view strings, | ||
*/ | ||
std::unique_ptr<cudf::column> slice( strings_column_view const& strings, | ||
size_type start, size_type end=-1, | ||
size_type step=1, | ||
cudaStream_t stream=0, |
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.
Maybe swap the order of stream and mr for consistency with other APIs
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.
This would require changing code that currently calls this which is not related to this PR.
I would rather do a separate PR to fix this.
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.
Changes look good and working as expected with PR 3354
Special scatter function for handling strings columns.
Closes #3437
The caller must set the null mask in the output column.
This is needed for #3354