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
We need a function in Java/JNI to apply a null mask onto some provided input column. This functionality is used a lot in Spark-rapids plugin.
Currently, we can achieve this using copy_if_else but we have to create and provide a null scalar for the else (if not valid) option, which is a bit inconvenient and incurs additional maintenance overhead.
The text was updated successfully, but these errors were encountered:
However, we always have to create the null scalar (lhs) and destroy it after using. That is the overhead that I mentioned.
For implementing this feature, we will need superimpose_nulls instead of cudf::column::set_null_mask since we are dealing with generic (nested) columns.
We need a function in Java/JNI to apply a null mask onto some provided input column. This functionality is used a lot in Spark-rapids plugin.
Currently, we can achieve this using
copy_if_else
but we have to create and provide a null scalar for theelse
(if not valid) option, which is a bit inconvenient and incurs additional maintenance overhead.The text was updated successfully, but these errors were encountered: