| 679 | } |
| 680 | |
| 681 | bool GpuExecutor::StartTimer(Stream* stream, Timer* timer) { |
| 682 | return AsGpuTimer(timer)->Start(AsGpuStream(stream)); |
| 683 | } |
| 684 | |
| 685 | bool GpuExecutor::StopTimer(Stream* stream, Timer* timer) { |
| 686 | return AsGpuTimer(timer)->Stop(AsGpuStream(stream)); |
nothing calls this directly
no test coverage detected