| 839 | } |
| 840 | |
| 841 | bool GpuExecutor::StopTimer(Stream* stream, Timer* timer) { |
| 842 | return AsGpuTimer(timer)->Stop(AsGpuStream(stream)); |
| 843 | } |
| 844 | |
| 845 | port::Status GpuExecutor::BlockHostUntilDone(Stream* stream) { |
| 846 | return GpuDriver::SynchronizeStream(context_, AsGpuStreamValue(stream)); |
nothing calls this directly
no test coverage detected