Enum SynchronizationMode
- Namespace
- DotCompute.Abstractions.Types
- Assembly
- DotCompute.Abstractions.dll
Synchronization modes for parallel stage execution.
public enum SynchronizationMode
Fields
Barrier = 4Barrier synchronization - all stages must reach sync point.
Custom = 5Custom synchronization strategy.
FireAndForget = 2Fire and forget - don't wait for completion.
Sequential = 3Sequential execution (no parallelism).
WaitAll = 0Wait for all parallel stages to complete.
WaitAny = 1Wait for any of the parallel stages to complete.