Enum CudaStreamPriority
- Namespace
- DotCompute.Backends.CUDA.Execution.Types
- Assembly
- DotCompute.Backends.CUDA.dll
Priority levels for CUDA stream scheduling.
public enum CudaStreamPriority
Fields
High = 2High priority for latency-sensitive operations.
Low = 0Low priority for background processing.
Normal = 1Normal 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.