Enum CudaEventCreationFlags
Flags that control CUDA event creation behavior. 控制 CUDA event 创建行为的标志。
[Flags]
public enum CudaEventCreationFlags : uint
Fields
BlockingSync = 1Creates an event that blocks the waiting host thread. 创建一个会阻塞等待线程的 event。
Default = 0Uses CUDA default event-creation behavior. 使用 CUDA 默认的 event 创建行为。
DisableTiming = 2Creates an event without timing information. 创建一个不记录计时信息的 event。
Interprocess = 4Creates an event that can be shared across processes. 创建一个可跨进程共享的 event。