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
select percentile(ss_wholesale_cost,0.1) from tpcds.store_sales limit 10;
! <Percentile> percentile(ss_wholesale_cost#82, 0.1, 1, 0, 0) cannot run on GPU because GPU does not currently support the operator class org.apache.spark.sql.catalyst.expressions.aggregate.Percentile
The text was updated successfully, but these errors were encountered:
We need some more information here. Is this just for a reduction. Is this needed for group by as well? What about a window operation? What are the data types we need to support. (Everything is cast to a double so it might be okay, but casting decimal to doubles can be difficult in some cases)
I filed rapidsai/cudf#13885 to support group by and reduction aggregations for this in CUDF. It will not cover window. We would still need to use this for plugin side changes and testing.
I wish we can support function Percentile.
Eg:
The text was updated successfully, but these errors were encountered: