Skip to content

Commit

Permalink
Fix type
Browse files Browse the repository at this point in the history
Signed-off-by: Nghia Truong <[email protected]>
  • Loading branch information
ttnghia committed Nov 27, 2024
1 parent d2ae155 commit c17f007
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ class CudfSum(override val dataType: DataType) extends CudfAggregate {

override val reductionAggregate: cudf.ColumnVector => cudf.Scalar =
(col: cudf.ColumnVector) => col.reduce(ReductionAggregation.hostUDF(
AggregationUtils.createTestHostUDF(AggregationUtils.AggregationType.Reduction)), DType.INT64)
AggregationUtils.createTestHostUDF(AggregationUtils.AggregationType.Reduction)),
DType.FLOAT64)
override lazy val groupByAggregate: GroupByAggregation =
GroupByAggregation.hostUDF(
AggregationUtils.createTestHostUDF(AggregationUtils.AggregationType.GroupByAggregation))
Expand Down

0 comments on commit c17f007

Please sign in to comment.