| 332 | } |
| 333 | |
| 334 | inline se::port::Status ToExecutorStatus(const Status& s) { |
| 335 | return s.ok() ? se::port::Status::OK() |
| 336 | : se::port::Status(static_cast<se::port::error::Code>( |
| 337 | static_cast<int>(s.code())), |
| 338 | s.error_message()); |
| 339 | } |
| 340 | |
| 341 | template <typename> |
| 342 | struct ToTFDataType; |
no test coverage detected