| 25 | } |
| 26 | |
| 27 | void CudaCommand::Synchronize() |
| 28 | { |
| 29 | XASSERT(following_event_ != nullptr, |
| 30 | "following_event_ is nullptr, EnableSynchronization() should be called first"); |
| 31 | CUDA_ASSERT(Driver::EventSynchronize(following_event_)); |
| 32 | } |
| 33 | |
| 34 | bool CudaCommand::Synchronizable() |
| 35 | { |
nothing calls this directly
no outgoing calls
no test coverage detected