Enum SyncStrategy
- Namespace
- DotCompute.Core.Memory.Types
- Assembly
- DotCompute.Core.dll
Strategy for buffer synchronization.
public enum SyncStrategy
Fields
DirectP2P = 5Direct P2P transfer between devices.
Eager = 0Eager synchronization on every access.
HostMediated = 6Synchronization mediated through host memory.
Invalidate = 2Invalidate remote copies instead of updating.
Lazy = 1Lazy synchronization on demand.
Streamed = 7Streamed synchronization.
WriteBack = 4Write-back with deferred synchronization.
WriteThrough = 3Write-through to all copies immediately.