-
Notifications
You must be signed in to change notification settings - Fork 921
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
Compute and use the initial string offset when building nested
large string cols with chunked parquet reader
#17702
Open
mhaseeb123
wants to merge
35
commits into
rapidsai:branch-25.02
Choose a base branch
from
mhaseeb123:fix/str_offset-nested-large-str-cols
base: branch-25.02
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 33 commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
1ce570c
Compute and use str_offset for large nested string cols.
mhaseeb123 e73432d
Clean up, add docstrings
mhaseeb123 a146cd6
Fix copyright year
mhaseeb123 9f4ede3
Fix comment
mhaseeb123 edaff09
Revert comment
mhaseeb123 2a279de
Merge branch 'branch-25.02' into fix/str_offset-nested-large-str-cols
mhaseeb123 0d2317a
Minor optimization. Sync stream only for `str_offsets` vector
mhaseeb123 9622620
Remove leftover cout
mhaseeb123 38652c0
Remove code duplication with utility function
mhaseeb123 a57ccab
fix copyright header
mhaseeb123 3cffe1c
Remove explicit inline and simplify branch
mhaseeb123 29c1754
Refactor offset computing to avoid ambiguous use of util function.
mhaseeb123 28835c3
Change initial_offset type to int64 and subtract from last_elem
mhaseeb123 46ba4ab
Reuse code with a util function
mhaseeb123 ebea0cd
Merge branch 'branch-25.02' into fix/str_offset-nested-large-str-cols
mhaseeb123 73ced83
Minor optimization. Make const ptr to const page_state
mhaseeb123 b0acb4c
Merge branch 'branch-25.02' into fix/str_offset-nested-large-str-cols
mhaseeb123 52cd41a
Revert subtraction of initial offset
mhaseeb123 dde3285
Merge branch 'branch-25.02' into fix/str_offset-nested-large-str-cols
mhaseeb123 694ec53
Merge conflicts
mhaseeb123 5012bc7
Revert changes
mhaseeb123 094a02b
Merge conflicts with branch25.02
mhaseeb123 fbe52d6
Trivial refactoring. Separate offset functions for small and large st…
mhaseeb123 399d8b0
Revert `unsetenv` in merge_tests
mhaseeb123 b7564d8
Revert copyrights year
mhaseeb123 c9ed1fc
Fix copyrights year
mhaseeb123 b5ff95f
Merge branch 'branch-25.02' into fix/str_offset-nested-large-str-cols
mhaseeb123 16b9843
Address review comments
mhaseeb123 e838e72
Merge branch 'fix/str_offset-nested-large-str-cols' of https://github…
mhaseeb123 1a34807
Remove unnecessary stream sync for `h_initial_str_offsets`
mhaseeb123 7990f7c
Merge branch 'branch-25.02' into fix/str_offset-nested-large-str-cols
mhaseeb123 d8231ca
Address review comments
mhaseeb123 c668fc6
Merge branch 'branch-25.02' into fix/str_offset-nested-large-str-cols
mhaseeb123 218782d
Fill host vector with std instead of thrust
mhaseeb123 3cfbe24
Fix the sanity check for offsets
mhaseeb123 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
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
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
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.
has_lists
can't be a tparam anymore as it is not known at compile time when called frompage_delta_decode.cu
. Also, we are only using it minimally at L120