Utility function for converting to internal C++ datatypes.
| 28 | |
| 29 | // Utility function for converting to internal C++ datatypes. |
| 30 | OutputTensor ToOutputTensor(const Output& output) { |
| 31 | return OutputTensor(output.node(), output.index()); |
| 32 | } |
| 33 | |
| 34 | // Utility function for converting to internal C++ datatypes. |
| 35 | std::vector<OutputTensor> ToOutputTensors(const std::vector<Output>& outputs) { |
no test coverage detected