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
! <ArrayRepeat> array_repeat(x#72, 3) cannot run on GPU because GPU does not currently support the operator class org.apache.spark.sql.catalyst.expressions.ArrayRepeat
The text was updated successfully, but these errors were encountered:
This is something that we probably can do without any help from cudf. The simplest way I can think of is to create the data column using cudf::repeat and the offsets buffer using a scan SUM. Ww will need to do some bounds checking to make sure that we don't overflow (Spark has similar limits, but ours are going to be a lot smaller). We might also need to fix up the nulls as a null input count results in a null array.
I wish we can support array_repeat.
eg:
The text was updated successfully, but these errors were encountered: