| 835 | } |
| 836 | |
| 837 | bool GpuExecutor::StartTimer(Stream* stream, Timer* timer) { |
| 838 | return AsGpuTimer(timer)->Start(AsGpuStream(stream)); |
| 839 | } |
| 840 | |
| 841 | bool GpuExecutor::StopTimer(Stream* stream, Timer* timer) { |
| 842 | return AsGpuTimer(timer)->Stop(AsGpuStream(stream)); |
nothing calls this directly
no test coverage detected