(args: {
backend: BackendWasm,
inputs: SparseSegmentSumInputs,
})
| 22 | import {setup, sparseSegmentReduction} from './SparseSegmentReduction'; |
| 23 | |
| 24 | function sparseSegmentSum(args: { |
| 25 | backend: BackendWasm, |
| 26 | inputs: SparseSegmentSumInputs, |
| 27 | }): TensorInfo { |
| 28 | return sparseSegmentReduction(args, false); |
| 29 | } |
| 30 | |
| 31 | export const sparseSegmentSumConfig: KernelConfig = { |
| 32 | kernelName: SparseSegmentSum, |
nothing calls this directly
no test coverage detected
searching dependent graphs…