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
In polars, a groupby operation by default is not order-preserving. However, one can optionally ask for order-preservation.
Right now, cudf-polars does not support the order-preserving groupby and therefore falls back to the CPU engine.
Since groupby-aggregations are one place where the GPU acceleration really shines, it would be good to support this mode of operation.
This should be possible, once the exact ordering requirements are determined, by a mode that is similar to the way we do order-preservation in the cudf-classic groupby code.
The text was updated successfully, but these errors were encountered:
In polars, a groupby operation by default is not order-preserving. However, one can optionally ask for order-preservation.
Right now, cudf-polars does not support the order-preserving groupby and therefore falls back to the CPU engine.
Since groupby-aggregations are one place where the GPU acceleration really shines, it would be good to support this mode of operation.
This should be possible, once the exact ordering requirements are determined, by a mode that is similar to the way we do order-preservation in the cudf-classic groupby code.
The text was updated successfully, but these errors were encountered: