Table of Contents

Delegate ContiguousKernel<T>

Namespace
NumSharp.Backends.Kernels
Assembly
NumSharp.dll

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

lhs T*

Pointer to left operand data.

rhs T*

Pointer to right operand data.

result T*

Pointer to output data.

count int

Number of elements to process.

Type Parameters

T

Element type (must be unmanaged).

Extension Methods