Searched refs:dst_def (Results 1 – 1 of 1) sorted by relevance
/external/tensorflow/tensorflow/core/graph/ |
D | graph_partition.cc | 1016 NodeDef* dst_def = dst_graph->add_node(); in Partition() local 1017 *dst_def = dst->def(); in Partition() 1018 MergeDebugInfo(NodeDebugInfo(dst->def()), dst_def); in Partition() 1019 dst_def->set_device(dst->assigned_device_name()); in Partition() 1020 dst_def->clear_input(); // Inputs are filled below in Partition() 1023 status = GetNodeAttr(*dst_def, "_start_time", &start_time); in Partition() 1026 AddNodeAttr("_start_time", start_time, dst_def); in Partition() 1075 AddInput(dst_def, src->name(), edge->src_output()); in Partition() 1110 AddInput(dst_def, recv_node_name, Graph::kControlSlot); in Partition() 1112 AddInput(dst_def, recv_node_name, 0); in Partition() [all …]
|