You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Refactors the cudf::strings::detail::fill() function to use make_strings_children.
This refactors some duplicated logic and will help to enable large strings support.
What is the difference in behavior with 3de1ee5? Looks like it's just calling copy_string with an empty string, I must be missing something.
Just a subtle improvement. The current commit only calls element() when necessary.
The previous commit called it for every row and threw it away if it was not needed.
This is more inline with original code as well.
What is the difference in behavior with 3de1ee5? Looks like it's just calling copy_string with an empty string, I must be missing something.
Just a subtle improvement. The current commit only calls element() when necessary. The previous commit called it for every row and threw it away if it was not needed. This is more inline with original code as well.
oh, that was not the fix for tests? I misunderstood and spent too much time staring at the diff. I'll take a look at the other new commit as well.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Refactors the
cudf::strings::detail::fill()function to usemake_strings_children.This refactors some duplicated logic and will help to enable large strings support.
Checklist