CUDA Event
2019. 5. 21. 10:49
CUDA Event → Stream 내부 명령에 흐름 중, 특정 지점에 표시를 남기는 것(일종의 표시 → marker) Creation and Destruction cudaError_t cudaEventCreate (cudaEvent_t* event); cudaError_t cudaEventDestory (cudaEvent_t event); Recording Events cudaError_t cudaEventRecord (cudaEvent_t event, cudaStream_t stream = 0); stream에 event 발생 위치를 표시함 stream에서 꺼내질 때 정보가 event에 기록됨 Synchronization / Querying cudaError_t cudaEventSynchronize ..