| 37 | } |
| 38 | |
| 39 | bool CudaCommand::EnableSynchronization() |
| 40 | { |
| 41 | if (following_event_ != nullptr) return true; |
| 42 | following_event_ = CudaEventPool::Pop(ctx_); |
| 43 | return following_event_ != nullptr; |
| 44 | } |
| 45 | |
| 46 | CUresult CudaCommand::LaunchWrapper(CUstream stream) |
| 47 | { |
nothing calls this directly
no outgoing calls
no test coverage detected