Delegate ContiguousKernel<T>
Delegate for contiguous (SimdFull) binary operations. Simplified signature - no strides needed since both arrays are contiguous.
public delegate void ContiguousKernel<T>(T* lhs, T* rhs, T* result, int count) where T : unmanaged
Parameters
lhsT*Pointer to left operand data.
rhsT*Pointer to right operand data.
resultT*Pointer to output data.
countintNumber of elements to process.
Type Parameters
TElement type (must be unmanaged).
- Extension Methods