-
Notifications
You must be signed in to change notification settings - Fork 1.1k
[FEA] Support input of dictionary-encoded types in Transforms #21552
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
Merged
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
5b3e7e7
[FEA] Support dictionary-encoded types in Transforms
lamarrr ebb4419
[FEA] Enhance dictionary_element with key member and improve document…
lamarrr eb6b24d
fix style check
lamarrr 74db1a8
code review changes
lamarrr c298ff5
code review changes
lamarrr 70cc26b
Update cpp/include/cudf/column/column_device_view_base.cuh
lamarrr 15e8cc0
update
lamarrr 3553432
update
lamarrr 7f95088
Merge branch 'main' into transform-dict-support
lamarrr 9c4a2d4
Merge branch 'main' into transform-dict-support
lamarrr 10d2ebd
Update cpp/include/cudf/column/column_device_view_base.cuh
lamarrr a8215ab
Merge branch 'main' into transform-dict-support
lamarrr 9cea60a
Update cpp/include/cudf/column/column_device_view_base.cuh
lamarrr 352db7f
Merge branch 'main' into transform-dict-support
lamarrr de00c9a
code review changes
lamarrr c654a31
code review changes
lamarrr d9ef52f
Merge remote-tracking branch 'upstream/main' into transform-dict-support
lamarrr ea23ea9
Merge remote-tracking branch 'upstream/main' into transform-dict-support
lamarrr 71c227c
rebase on latest cudf + code review changes
lamarrr 6c10d2e
Update cpp/include/cudf/column/column_child_offsets.hpp
lamarrr 98e9e3e
removed dead code for helper function
lamarrr 374efec
code review changes
lamarrr c92c495
Merge branch 'main' into transform-dict-support
lamarrr 2ad4e8c
Add test for empty column handling in transform_extended function
lamarrr 1746912
Merge branch 'main' into transform-dict-support
lamarrr 66f1002
Fix expected output in transform_extended test case
lamarrr 0d92dda
Add documentation for dictionary indices and keys column indices
lamarrr 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 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| /* | ||
| * SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||
| * SPDX-License-Identifier: Apache-2.0 | ||
| */ | ||
| #pragma once | ||
|
|
||
| /** | ||
| * @file column_child_offsets.hpp | ||
| * @brief Constants for child column indices within compound column types | ||
| */ | ||
|
|
||
| #include <cudf/types.hpp> | ||
| #include <cudf/utilities/export.hpp> | ||
|
|
||
| namespace CUDF_EXPORT cudf { | ||
|
|
||
| static constexpr size_type offsets_column_index = 0; ///< Child index of the offsets column | ||
|
|
||
| static constexpr size_type dictionary_indices_column_index = | ||
| 0; ///< Child index of the dictionary indices column | ||
|
|
||
| static constexpr size_type dictionary_keys_column_index = | ||
| 1; ///< Child index of the dictionary key column | ||
|
|
||
| } // namespace CUDF_EXPORT cudf | ||
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
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
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
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
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
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
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.
Uh oh!
There was an error while loading. Please reload this page.