Table of Contents

Enum CudaStreamPriority

Namespace
DotCompute.Backends.CUDA.Execution.Types
Assembly
DotCompute.Backends.CUDA.dll

Priority levels for CUDA stream scheduling.

public enum CudaStreamPriority

Fields

High = 2

High priority for latency-sensitive operations.

Low = 0

Low priority for background processing.

Normal = 1

Normal priority for typical operations.

Remarks

CUDA driver supports integer priorities where lower values indicate higher priority. Use High for latency-critical operations, Low for background work.