| 683 | } |
| 684 | |
| 685 | bool GpuExecutor::StopTimer(Stream* stream, Timer* timer) { |
| 686 | return AsGpuTimer(timer)->Stop(AsGpuStream(stream)); |
| 687 | } |
| 688 | |
| 689 | port::Status GpuExecutor::BlockHostUntilDone(Stream* stream) { |
| 690 | return GpuDriver::SynchronizeStream(context_, AsGpuStreamValue(stream)); |
nothing calls this directly
no test coverage detected