Enum ExecutionPath
Execution paths for binary operations, selected based on stride analysis.
public enum ExecutionPath
- Extension Methods
Fields
SimdFull = 0Both operands are fully C-contiguous with identical shapes.
SimdScalarRight = 1Right operand is a scalar (all strides = 0).
SimdScalarLeft = 2Left operand is a scalar (all strides = 0).
SimdChunk = 3Inner dimension is contiguous/broadcast for both operands.
General = 4Arbitrary strides, requires coordinate-based iteration.