| 100 | } |
| 101 | |
| 102 | bool XlaInterpreterExecutor::StartTimer(Stream *stream, Timer *timer) { |
| 103 | dynamic_cast<host::HostTimer *>(timer->implementation())->Start(stream); |
| 104 | return true; |
| 105 | } |
| 106 | |
| 107 | bool XlaInterpreterExecutor::StopTimer(Stream *stream, Timer *timer) { |
| 108 | dynamic_cast<host::HostTimer *>(timer->implementation())->Stop(stream); |
nothing calls this directly
no test coverage detected