You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Users of cudf-polars can run in to the situation where their (potentially complicated) query doesn't (yet) run on the GPU because we have not implemented support for all of the polars features they are using.
Right now, our fallback mechanism is to fail fast on the first unsupported feature. This works from a correctness point of view, but has some drawbacks:
Submitting new feature requests to get a query to run is an iterative (and potentially long-winded process): the first missing feature is requested, only to find that something else is now not supported
Consequently, especially if we get these from external users who do not run on bleeding edge nightlies, they might have to wait multiple releases for their query to work (since they must wait to see "what's next").
Describe the solution you'd like
Instead, we should implement a mechanism whereby we traverse the entire query, collecting all the pieces that are not supported, and then raise an error for fallback, reporting all the (unique) unsupported pieces.
This would allow reports for unsupported queries to indicate all the missing pieces, and help us to prioritise things.
The text was updated successfully, but these errors were encountered:
…16960)
Closes#16690. The purpose of this PR is to list all of the unique operations that are unsupported by `cudf.polars` when running a query.
1. Question: How to traverse the tree to report the error nodes? Should this be done upstream in Polars?
2. Instead of traversing the query afterwards, we should probably catch each unsupported feature as we translate the IR.
Authors:
- Matthew Murray (https://github.com/Matt711)
Approvers:
- Vyas Ramasubramani (https://github.com/vyasr)
- Lawrence Mitchell (https://github.com/wence-)
URL: #16960
Is your feature request related to a problem? Please describe.
Users of cudf-polars can run in to the situation where their (potentially complicated) query doesn't (yet) run on the GPU because we have not implemented support for all of the polars features they are using.
Right now, our fallback mechanism is to fail fast on the first unsupported feature. This works from a correctness point of view, but has some drawbacks:
Describe the solution you'd like
Instead, we should implement a mechanism whereby we traverse the entire query, collecting all the pieces that are not supported, and then raise an error for fallback, reporting all the (unique) unsupported pieces.
This would allow reports for unsupported queries to indicate all the missing pieces, and help us to prioritise things.
The text was updated successfully, but these errors were encountered: