|
cuEventSynchronize |
( |
CUevent |
hEvent |
) |
|
Waits until the event has actually been recorded. If cuEventRecord() has been called on this event, the function returns CUDA_ERROR_INVALID_VALUE.
If cuEventRecord() has previously been called and the event has not been recorded yet, this function returns CUDA_ERROR_INVALID_VALUE.
- Parameters:
-
| hEvent | - Event to wait for |
- Returns:
- CUDA_SUCCESS, CUDA_ERROR_DEINITIALIZED, CUDA_ERROR_NOT_INITIALIZED, CUDA_ERROR_INVALID_CONTEXT, CUDA_ERROR_INVALID_HANDLE
- Note:
- Note that this function may also return error codes from previous, asynchronous launches.
- See also:
- cuEventCreate, cuEventRecord, cuEventQuery, cuEventDestroy, cuEventElapsedTime
|