Enum LoadBalancingStrategy
- Namespace
- DotCompute.Memory.Types
- Assembly
- DotCompute.Memory.dll
Specifies the load balancing strategy for concurrent transfers.
public enum LoadBalancingStrategy
Fields
LeastLoaded = 1Assign transfers to the least loaded worker.
Random = 3Random assignment of transfers.
RoundRobin = 0Distribute transfers in round-robin fashion.
WeightedSize = 2Use weighted distribution based on transfer size.
WorkStealing = 4Use work stealing for dynamic balancing.