Table of Contents

Enum AccessPattern

Namespace
DotCompute.Core.Memory.Types
Assembly
DotCompute.Core.dll

Memory access pattern for optimization hints.

public enum AccessPattern

Fields

Broadcast = 3

Broadcast pattern (one write, many reads).

Random = 0

Random access with no clear pattern.

Reduction = 4

Reduction pattern (many writes, one read).

Sequential = 1

Sequential access in order.

Strided = 2

Strided access with fixed offset.

Unknown = 5

Unknown or mixed pattern.