Package ai.rapids.cudf
Class SegmentedReductionAggregation
java.lang.Object
ai.rapids.cudf.SegmentedReductionAggregation
An aggregation that can be used for a reduce.
-
Method Summary
-
Method Details
-
hashCode
public int hashCode() -
equals
-
sum
Sum Aggregation -
product
Product Aggregation. -
min
Min Aggregation -
max
Max Aggregation -
any
Any reduction. Produces a true or 1, depending on the output type, if any of the elements in the range are true or non-zero, otherwise produces a false or 0. Null values are skipped. -
all
All reduction. Produces true or 1, depending on the output type, if all of the elements in the range are true or non-zero, otherwise produces a false or 0. Null values are skipped. -
hostUDF
Execute a reduction using a host-side user-defined function (UDF).- Parameters:
wrapper
- The wrapper for the native host UDF instance.- Returns:
- A new SegmentedReductionAggregation instance
-