| 816 | } |
| 817 | |
| 818 | void GpuExecutor::DeallocateTimer(Timer* timer) { |
| 819 | AsGpuTimer(timer)->Destroy(); |
| 820 | } |
| 821 | |
| 822 | bool GpuExecutor::CreateStreamDependency(Stream* dependent, Stream* other) { |
| 823 | CUevent other_completed_event = *AsGpuStream(other)->completed_event(); |
nothing calls this directly
no test coverage detected