-
Notifications
You must be signed in to change notification settings - Fork 914
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
Support implicit array conversion with query-planning enabled #15378
Support implicit array conversion with query-planning enabled #15378
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.
Makes sense. I suppose there's no need to push upstream because the intent is for this code (afaict from https://github.com/dask/dask-expr/blob/2f5f085511986e51d75caa499e3eab67a8c8b186/dask_expr/_backends.py#L80) to not be long-lived?
Yeah, I'm hoping that the long-term fix for |
/merge |
Description
when query-planning is enabled, implicit conversion is not yet supported from a cudf-backed collection to a dask array. Some cuml + dask CI failures are related to this limitation. This PR adds basic support for implicit conversion.
Checklist