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
I wish spark rapids can support try_multiply sql function:
try_multiply(CAST((GenotypeDT.alleleDepths[1]/GenotypeDT.depth) AS DECIMAL(5,4)), 100)
The fallback message is:
! <TryEval> tryeval(CheckOverflow((promote_precision(cast(cast((cast(alleleDepths#1912[1] as double) / cast(depth#1920 as double)) as decimal(5,4)) as decimal(7,4))) * 100.0000), DecimalType(9,4))) cannot run on GPU because GPU does not currently support the operator class org.apache.spark.sql.catalyst.expressions.TryEval
The text was updated successfully, but these errors were encountered:
It looks like you are using a version of Spark 3.3.0 or after and before 3.4.0. If it is after 3.4.0 we have a bug in our code for versions 3.4.0 and above. I filed #11884 for it. Thanks for having me look more closely at the code.
To try and support TryEval generally, especially for 3.3.X to get try_multiply to work we are going to have to modify the entire tree to some how support this processing.
I wish spark rapids can support try_multiply sql function:
The fallback message is:
The text was updated successfully, but these errors were encountered: