Home
last modified time | relevance | path

Searched refs:identity_def (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/core/common_runtime/
Dplacer_inspection_required_ops_utils.cc181 NodeDef identity_def; in AddInputIdentity() local
182 TF_RETURN_IF_ERROR(builder.Finalize(&identity_def)); in AddInputIdentity()
183 MergeDebugInfo(NodeDebugInfo(*node), &identity_def); in AddInputIdentity()
188 << identity_def.DebugString(); in AddInputIdentity()
191 Node* identity_node = graph->AddNode(identity_def, &status); in AddInputIdentity()
220 NodeDef identity_def; in AddOutputIdentities() local
221 TF_RETURN_IF_ERROR(builder.Finalize(&identity_def)); in AddOutputIdentities()
222 MergeDebugInfo(NodeDebugInfo(*node), &identity_def); in AddOutputIdentities()
225 *identity_node = graph->AddNode(identity_def, &status); in AddOutputIdentities()
Dparallel_concat_optimizer.cc95 NodeBuilder identity_def = base_make_node("Identity", n->name()); in Run() local
96 identity_def.Input(start, 0); in Run()
98 identity_def.ControlInput(s); in Run()
101 TF_RETURN_IF_ERROR(identity_def.Finalize(g, &identity_node)); in Run()