[DNM] Add initial tests for Parquet to cuDF dictionary transcode - #21728
Closed
mhaseeb123 wants to merge 3 commits into
Closed
[DNM] Add initial tests for Parquet to cuDF dictionary transcode#21728mhaseeb123 wants to merge 3 commits into
mhaseeb123 wants to merge 3 commits into
Conversation
|
Auto-sync is disabled for draft pull requests in this repository. Workflows must be run manually. Contributors can view more details about this message here. |
mhaseeb123
commented
Mar 10, 2026
| // Write parquet | ||
| auto const input_tbl = cudf::table_view{{input_col}}; | ||
| auto const filepath = temp_env->get_temp_filepath("DictDecodeParquet.parquet"); | ||
| write_parquet(input_tbl, filepath); |
Contributor
Author
There was a problem hiding this comment.
Parquet file will have 1 col x 5000 rows of low cardinality (500) data for dictionary encoding. Shape: 5 row groups (each with 1000 rows)
mhaseeb123
commented
Mar 10, 2026
| constexpr auto has_column_projection = false; | ||
|
|
||
| // Read page indexes if available here since we will want to reuse the raw metadata for later use. | ||
| // Read page indexes if available here since we will want to reuse the raw metadata for later |
Contributor
Author
There was a problem hiding this comment.
Ignore this gem from clangd
Contributor
Author
|
Superseded by #22247. Closing |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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
Contributes to #15199
DO NOT MERGE: This PR only contains what we want from Parquet to cuDF dictionary transcode work and a test to validate it.
Checklist