-
Notifications
You must be signed in to change notification settings - Fork 904
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
Use as_column instead of full #14698
Use as_column instead of full #14698
Conversation
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.
Change looks fine for dask-cudf
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.
@mroeschke can you verify that full
isn't used by cuspatial? Otherwise this LGTM pending resolution of the upstream nvcomp issues. Feel free to merge when those are resolved and CI is passing.
Thanks for the reminder. Opened up a PR on the cuspatial side rapidsai/cuspatial#1350 |
/merge |
I have a PR in cudf removing `full` in favor of `as_column` which has equivalent functionality (rapidsai/cudf#14698), so replacing the single usage I found here Authors: - Matthew Roeschke (https://github.com/mroeschke) - Bradley Dice (https://github.com/bdice) Approvers: - Vyas Ramasubramani (https://github.com/vyasr) - Mark Harris (https://github.com/harrism) - GALI PREM SAGAR (https://github.com/galipremsagar) - Bradley Dice (https://github.com/bdice) URL: #1350
CI is failing because some functions use `cudf.core.column.full` which was recently removed. This PR changes that to a supported constructor. xref: rapidsai/cudf#14698 cc: @mroeschke @galipremsagar Authors: - Bradley Dice (https://github.com/bdice) - GALI PREM SAGAR (https://github.com/galipremsagar) Approvers: - GALI PREM SAGAR (https://github.com/galipremsagar) - Matthew Roeschke (https://github.com/mroeschke) - Dante Gama Dessavre (https://github.com/dantegd) URL: #5794
Description
Similar to #14689, ensures there's 1 entrypoint to create a column from a scalar.
This builds on #14620
Checklist