Conversation
Need to make sure `insert_finished` is called for collective operations. Authors: - Matthew Murray (https://github.com/Matt711) Approvers: - Matthew Roeschke (https://github.com/mroeschke) - Mads R. B. Kristensen (https://github.com/madsbk) - Lawrence Mitchell (https://github.com/wence-) URL: #22516
Forward-merge release/26.06 into main
Follow up #22319 Use `cudf::tables_equal` API in libcudf examples instead of anti join to check if two tables are equal Authors: - Muhammad Haseeb (https://github.com/mhaseeb123) - Lawrence Mitchell (https://github.com/wence-) - Vukasin Milovanovic (https://github.com/vuule) Approvers: - Shruti Shivakumar (https://github.com/shrshi) - David Wendt (https://github.com/davidwendt) URL: #22428
This PR checks for potential malformed headers in Parquet delta decoder and propagates it in decoders. Authors: - Muhammad Haseeb (https://github.com/mhaseeb123) Approvers: - Paul Mattione (https://github.com/pmattione-nvidia) - Bradley Dice (https://github.com/bdice) - Nghia Truong (https://github.com/ttnghia) URL: #22275
Forward-merge release/26.06 into main
…22279) Contributes to #13995 This PR enables the Parquet writer to assign lower dictionary indices to elements appearing earlier in each column chunk thereby writing variable (reduced) number of dictionary key bits for earlier pages. New algorithm: 1. `map_insert_fn` now inserts this pair in the static map: `{row_idx, frag_idx}` instead of `{row_idx, row_idx}`. `frag_idx` is just `blockIdx.x` and indicates which page fragment actually inserted this entry in the static map (CAS race dependent but earlier thread blocks generally win this race) 2. `map_insert_fn` also writes the `PageFragment::num_dict_vals` field for each page fragment to keep a record of number of unique values inserted by it. 3. Then in `collect_map_entries_kernel` (where we assign keys to dict values), we optionally assign spatially-local keys to dictionary values inserted by the same page fragment. See algorithm details [here](#22279 (comment)) 4. Finally, we launch `compute_page_dict_bits_kernel` to compute the max bit width required to encode dict keys for each parquet page. See algorithm [here](#22279 (comment)) See follow up PR #22323 that deterministically writes the index of the first page fragment that sees each dictionary key Authors: - Muhammad Haseeb (https://github.com/mhaseeb123) Approvers: - Vukasin Milovanovic (https://github.com/vuule) - Paul Mattione (https://github.com/pmattione-nvidia) - Nghia Truong (https://github.com/ttnghia) URL: #22279
closes #21919 Authors: - Matthew Roeschke (https://github.com/mroeschke) Approvers: - Matthew Murray (https://github.com/Matt711) URL: #22340
AyodeAwe
requested review from
brandon-b-miller,
mhaseeb123 and
vyasr
and removed request for
a team
May 16, 2026 06:01
Contributor
Author
|
SUCCESS - forward-merge complete (automated). |
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.
Forward-merge triggered by automated cron job to keep
pandas3up-to-date withmain.If this PR has conflicts, it will remain open for manual resolution.
See forward-merger docs for more info.