Enum NDIterExecutionPath
Execution path for NDIter operations.
public enum NDIterExecutionPath
- Extension Methods
Fields
Contiguous = 0All operands contiguous, use direct SIMD.
Strided = 1Strided but gather-compatible, use AVX2 gather.
Buffered = 2Copy to contiguous buffers, SIMD on buffers.
General = 3Coordinate-based iteration, scalar operations.