Table of Contents

Enum SyncStrategy

Namespace
DotCompute.Core.Memory.Types
Assembly
DotCompute.Core.dll

Strategy for buffer synchronization.

public enum SyncStrategy

Fields

DirectP2P = 5

Direct P2P transfer between devices.

Eager = 0

Eager synchronization on every access.

HostMediated = 6

Synchronization mediated through host memory.

Invalidate = 2

Invalidate remote copies instead of updating.

Lazy = 1

Lazy synchronization on demand.

Streamed = 7

Streamed synchronization.

WriteBack = 4

Write-back with deferred synchronization.

WriteThrough = 3

Write-through to all copies immediately.