Table of Contents

Enum MetalOptimizationHints

Namespace
DotCompute.Backends.Metal.Execution.Graph.Nodes
Assembly
DotCompute.Backends.Metal.dll

Represents optimization hints for Metal graph nodes.

[Flags]
public enum MetalOptimizationHints

Fields

ComputeThroughputOptimized = 2

Node can be optimized for compute throughput.

FusionCandidate = 4

Node can benefit from kernel fusion.

LowLatency = 8

Node should be executed with minimal latency.

MemoryBandwidthOptimized = 1

Node can be optimized for memory bandwidth.

None = 0

No specific optimization hints.

PredictableMemoryAccess = 16

Node has predictable memory access patterns.