Home
last modified time | relevance | path

Searched refs:to_fanin (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/core/grappler/
Dmutable_graph_view.cc666 MutableGraphView::OutputPort to_fanin(nodes().at(old_node_name), idx); in SwapNodeNames() local
667 fanouts()[to_fanin].insert({node, node_idx}); in SwapNodeNames()
668 UpdateMaxRegularOutputPortForAddedFanin(to_fanin); in SwapNodeNames()
1237 const TensorId& to_fanin) { in UpdateFanin() argument
1238 auto error_status = [node_name, from_fanin, to_fanin](absl::string_view msg) { in UpdateFanin()
1241 node_name, from_fanin.ToString(), to_fanin.ToString()); in UpdateFanin()
1246 TF_RETURN_IF_ERROR(CheckFaninIsValid(to_fanin, error_status)); in UpdateFanin()
1252 NodeDef* to_fanin_node = GetNode(to_fanin.node()); in UpdateFanin()
1254 CheckNodeExists(to_fanin.node(), to_fanin_node, error_status)); in UpdateFanin()
1258 bool to_fanin_is_control = IsTensorIdControlling(to_fanin); in UpdateFanin()
[all …]
Dmutable_graph_view.h220 const TensorId& to_fanin);
Dmutable_graph_view_test.cc1538 const TensorId& from_fanin, const TensorId& to_fanin, in TestUpdateFanin() argument
1555 Status s = graph.UpdateFanin(node_name, from_fanin, to_fanin); in TestUpdateFanin()