Delegate ILKernelGenerator.ShiftArrayKernel<T>
Delegate for shift operation with per-element shift amounts. This is the scalar loop path for element-wise shifts.
public delegate void ILKernelGenerator.ShiftArrayKernel<T>(T* input, int* shifts, T* output, int count) where T : unmanaged
Parameters
inputT*Pointer to input data
shiftsint*Pointer to shift amounts (as int32)
outputT*Pointer to output data
countintNumber of elements to process
Type Parameters
TElement type (must be integer)
- Extension Methods