-
Notifications
You must be signed in to change notification settings - Fork 915
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
Creation of CI artifacts for cudf-polars wheels #16680
Merged
Merged
Conversation
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
Use new polars engine config object in cudf-polars callback
## Description <!-- Provide a standalone description of changes in this PR. --> <!-- Reference any issues closed by this PR with "closes #1234". --> <!-- Note: The pull request title will be included in the CHANGELOG. --> Adapts to IR changes in polars 1.4 and handles nrows/skiprows a little more correctly. ## Checklist - [ ] I am familiar with the [Contributing Guidelines](https://github.com/rapidsai/cudf/blob/HEAD/CONTRIBUTING.md). - [ ] New or existing tests cover these changes. - [ ] The documentation is up to date with these changes. --------- Co-authored-by: Lawrence Mitchell <[email protected]>
Add support for ``pl.col.str.replace`` and ``pl.col.str.replace_many`` Authors: - Thomas Li (https://github.com/lithomas1) Approvers: None URL: #16039
…sts (#16441) (#16605) Authors: - Thomas Li (https://github.com/lithomas1) - https://github.com/brandon-b-miller Approvers: - Vyas Ramasubramani (https://github.com/vyasr) URL: #16605
contributes to #16478 This implements "cum_min", "cum_max", "cum_prod", "cum_sum" "cum_count" is not implemented for now, since there's no exact libcudf match (I imagine the non-grouped case is also not used that much but haven't checked). I suppose we could implement it by creating a column of 1s and copying the null mask over, and doing a cum_sum on that. Let me know if you want to try that. Authors: - Thomas Li (https://github.com/lithomas1) Approvers: - https://github.com/brandon-b-miller URL: #16509
Use a key column rather than a placeholder for count agg
## Description - Closes #16477
polars.from_arrow renames empty column names (see pola-rs/polars#11632). This causes problems when round-tripping specially crafted dataframes. Avoid the problem by constructing the table with fake names and then renaming.
Add support for additional unaryops through `cudf-polars`. Closes #16566 --------- Co-authored-by: Lawrence Mitchell <[email protected]>
Forward-merge 24.08
github-actions
bot
added
libcudf
Affects libcudf (C++/CUDA) code.
Python
Affects Python cuDF API.
labels
Aug 28, 2024
/ok to test |
This field renaming was due to a recent refactor in (as-yet-unreleased) polars 1.7.
## Description We implement a small pytest plugin that defaults the polars engine to GPU (by monkeypatching `LazyFrame.collect`, yet another reason to have a global default somehow). As well as this, we collate all the known failures and classify them. ## Checklist - [x] I am familiar with the [Contributing Guidelines](https://github.com/rapidsai/cudf/blob/HEAD/CONTRIBUTING.md). - [x] New or existing tests cover these changes. - [x] The documentation is up to date with these changes.
/ok to test |
1 similar comment
/ok to test |
wence-
requested review from
raydouglass,
galipremsagar,
brandon-b-miller,
mythrocks and
karthikeyann
and removed request for
a team
September 16, 2024 13:50
/ok to test |
Modified the cudf API docs to add a page on cudf pandas detailing - 1) How to use? 2) How to learn more? 3) How to try on Google Colab? --------- Co-authored-by: Manas Singh <[email protected]> Co-authored-by: Lawrence Mitchell <[email protected]> Co-authored-by: Bradley Dice <[email protected]>
bdice
added
feature request
New feature or request
non-breaking
Non-breaking change
labels
Sep 16, 2024
/ok to test |
/ok to test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
CMake
CMake build issue
cudf.polars
Issues specific to cudf.polars
feature request
New feature or request
libcudf
Affects libcudf (C++/CUDA) code.
non-breaking
Non-breaking change
pylibcudf
Issues specific to the pylibcudf package
Python
Affects Python cuDF API.
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
This is the changes that will be in the cudf-polars point release.