Interface INDAxisNumericReductionKernel<T>
Generic numeric axis reduction kernel interface. Used by NDAxisIter for sum, prod, min, max along an axis.
public interface INDAxisNumericReductionKernel<T> where T : unmanaged
Type Parameters
T
Methods
Execute(T*, long, long)
Execute the reduction along the axis.
public static abstract T Execute(T* src, long srcStride, long length)
Parameters
srcT*Source pointer at base position
srcStridelongStride along the reduction axis
lengthlongLength of the reduction axis
Returns
- T
Reduced value