Table of Contents

Delegate ILKernelGenerator.ShiftScalarKernel<T>

Namespace
NumSharp.Backends.Kernels
Assembly
NumSharp.dll

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

input T*

Pointer to input data

output T*

Pointer to output data

shiftAmount int

Number of bits to shift

count int

Number of elements to process

Type Parameters

T

Element type (must be integer)

Extension Methods