| 560 | |
| 561 | template <typename TensorT> |
| 562 | Status AddOutput(Graph<TensorT>* graph, const Node* from_node, |
| 563 | Value<TensorT>** output) { |
| 564 | auto link = graph->NewValue(); |
| 565 | RETURN_IF_ERROR(graph->SetProducer(from_node->id, link->id)); |
| 566 | *output = link; |
| 567 | return OkStatus(); |
| 568 | } |
| 569 | |
| 570 | template <typename TensorT> |
| 571 | Status ConnectTwoNodes(Graph<TensorT>* graph, const Node* from_node, |