| 671 | } |
| 672 | |
| 673 | void TFOutputsFromOutputs(const std::vector<tensorflow::Output>& outputs, |
| 674 | TF_Output* tf_outputs) { |
| 675 | for (int i = 0; i < outputs.size(); i++) { |
| 676 | tf_outputs[i].oper = ToOperation(outputs[i].node()); |
| 677 | tf_outputs[i].index = outputs[i].index(); |
| 678 | } |
| 679 | } |
| 680 | #endif // !defined(IS_MOBILE_PLATFORM) && !defined(IS_SLIM_BUILD) |
| 681 | |
| 682 | } // namespace |
no test coverage detected