-
Notifications
You must be signed in to change notification settings - Fork 920
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] Fix cudf::strings:split logic for many columns #4922
Merged
harrism
merged 31 commits into
rapidsai:branch-0.14
from
davidwendt:perf-strings-split-to-many-columns
Apr 27, 2020
+1,503
−804
Merged
Changes from 19 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
0d045e5
move split-record fn to separate source file
davidwendt e6f0d35
recoded split/rsplit for perf
davidwendt c18eb2c
fix test::print for strings columns with no nullmask
davidwendt 7b6ead3
add more tests using maxsplits parm
davidwendt 6dcfc91
Merge branch 'branch-0.14' into perf-strings-split-to-many-columns
davidwendt fa3135a
update comments and remove prints
davidwendt cc96b68
fix all-null special case
davidwendt 43fde57
hates compile warnings
davidwendt 36659c1
workaround compile segfault
davidwendt 33dea6c
update changelog
davidwendt e225d7c
fix changelog entry
davidwendt a709fa7
Merge branch 'branch-0.14' into perf-strings-split-to-many-columns
davidwendt 0cb9b11
add base class for split/rsplit fns
davidwendt 41c0eff
Merge branch 'branch-0.14' into perf-strings-split-to-many-columns
davidwendt 9340e8a
Merge branch 'branch-0.14' into perf-strings-split-to-many-columns
davidwendt fb114f1
Merge branch 'branch-0.14' into perf-strings-split-to-many-columns
davidwendt 9832fef
handle empty column
davidwendt fa59935
Merge branch 'branch-0.14' into perf-strings-split-to-many-columns
davidwendt bb8cb7b
Merge branch 'branch-0.14' into perf-strings-split-to-many-columns
davidwendt 772237c
fix merge conflicts from clang format
davidwendt 3f0706b
fix merge conflict from clang format again
davidwendt 0eb2392
clang-format new file
davidwendt f2a8142
add tests for overlapped delimiter
davidwendt 789a37a
update parameter name in declarations
davidwendt 520e29c
fix comment
davidwendt 26fb2f1
one more test string
davidwendt 80188e0
forgot clang format
davidwendt a258cf3
add factory with iterator parms
davidwendt b1bc0dd
place tokens in column order; use new iterator factory
davidwendt 90f98a9
Merge branch 'branch-0.14' into perf-strings-split-to-many-columns
davidwendt 5bc4ede
Merge branch 'branch-0.14' into perf-strings-split-to-many-columns
davidwendt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.
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.
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 simply removes a compile warning.