| 99 | } |
| 100 | |
| 101 | inline HashAggregateKernel MakeUnaryKernel(KernelInit init) { |
| 102 | return MakeKernel(KernelSignature::Make({InputType(Type::UINT32)}, |
| 103 | OutputType(ResolveGroupOutputType)), |
| 104 | std::move(init)); |
| 105 | } |
| 106 | |
| 107 | using HashAggregateKernelFactory = |
| 108 | std::function<Result<HashAggregateKernel>(const std::shared_ptr<DataType>&)>; |
no test coverage detected