Enum CudaGraphNodeType
Identifies CUDA graph node kinds reported by the CUDA runtime. 标识 CUDA runtime 报告的 CUDA graph node 类型。
public enum CudaGraphNodeType
Fields
BatchMemoryOperation = 12A batch memory-operation node. 批量内存操作节点。
Conditional = 13A conditional-execution node. 条件执行节点。
Empty = 5An empty synchronization node. 空同步节点。
EventRecord = 7An event-record node. event 记录节点。
ExternalSemaphoreSignal = 8An external-semaphore signal node. 外部 semaphore signal 节点。
ExternalSemaphoreWait = 9An external-semaphore wait node. 外部 semaphore wait 节点。
Graph = 4A child-graph node. 子 graph 节点。
Host = 3A host-callback node. 主机回调节点。
Kernel = 0A kernel-launch node. kernel 启动节点。
Memcpy = 1A memory-copy node. 内存复制节点。
MemoryAlloc = 10A memory-allocation node. 内存分配节点。
MemoryFree = 11A memory-free node. 内存释放节点。
Memset = 2A memory-set node. 内存填充节点。
WaitEvent = 6An event-wait node. event 等待节点。