Table of Contents

Enum CudaEventCreationFlags

Namespace
JYPPX.CudaSharp
Assembly
JYPPX.CudaSharp.dll

Flags that control CUDA event creation behavior. 控制 CUDA event 创建行为的标志。

[Flags]
public enum CudaEventCreationFlags : uint

Fields

BlockingSync = 1

Creates an event that blocks the waiting host thread. 创建一个会阻塞等待线程的 event。

Default = 0

Uses CUDA default event-creation behavior. 使用 CUDA 默认的 event 创建行为。

DisableTiming = 2

Creates an event without timing information. 创建一个不记录计时信息的 event。

Interprocess = 4

Creates an event that can be shared across processes. 创建一个可跨进程共享的 event。