Delegate CumulativeKernel
Delegate for cumulative reduction kernels (cumsum, etc.). Output has same shape as input.
public delegate void CumulativeKernel(void* input, void* output, long* strides, long* shape, int ndim, long totalSize)
Parameters
inputvoid*Pointer to input data
outputvoid*Pointer to output data
strideslong*Input strides (element units)
shapelong*Shape dimensions
ndimintNumber of dimensions
totalSizelongTotal number of elements
- Extension Methods