Table of Contents

Enum NDIterExecutionPath

Namespace
NumSharp.Backends.Iteration
Assembly
NumSharp.dll

Execution path for NDIter operations.

public enum NDIterExecutionPath
Extension Methods

Fields

Contiguous = 0

All operands contiguous, use direct SIMD.

Strided = 1

Strided but gather-compatible, use AVX2 gather.

Buffered = 2

Copy to contiguous buffers, SIMD on buffers.

General = 3

Coordinate-based iteration, scalar operations.