-
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
Change cudf::strings::find_multiple to return a lists column #10134
Change cudf::strings::find_multiple to return a lists column #10134
Conversation
Codecov Report
@@ Coverage Diff @@
## branch-22.04 #10134 +/- ##
================================================
+ Coverage 10.37% 10.48% +0.10%
================================================
Files 119 122 +3
Lines 20149 20493 +344
================================================
+ Hits 2091 2148 +57
- Misses 18058 18345 +287
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.
Looks great! I can work on the follow-up described in #10126 to add a public Python API calling this function.
@gpucibot merge |
Reference #10126
This changes the current
cudf::strings::find_multiple
API to return a lists column instead of a flattened matrix as a column of integers. Each lists column size is equal to the size of the input strings and each row's size is equal to input targets column size.Making this a breaking change since it changes the result of a public libcudf API.