Table of Contents

Enum SynchronizationMode

Namespace
DotCompute.Abstractions.Types
Assembly
DotCompute.Abstractions.dll

Synchronization modes for parallel stage execution.

public enum SynchronizationMode

Fields

Barrier = 4

Barrier synchronization - all stages must reach sync point.

Custom = 5

Custom synchronization strategy.

FireAndForget = 2

Fire and forget - don't wait for completion.

Sequential = 3

Sequential execution (no parallelism).

WaitAll = 0

Wait for all parallel stages to complete.

WaitAny = 1

Wait for any of the parallel stages to complete.