Delegate ILKernelGenerator.ShiftScalarKernel<T>
Delegate for shift operation with scalar shift amount. This is the SIMD-optimized path for uniform shifts.
public delegate void ILKernelGenerator.ShiftScalarKernel<T>(T* input, T* output, int shiftAmount, int count) where T : unmanaged
Parameters
inputT*Pointer to input data
outputT*Pointer to output data
shiftAmountintNumber of bits to shift
countintNumber of elements to process
Type Parameters
TElement type (must be integer)
- Extension Methods