From 921c0f4a4a3dff4e6477992020136f0fbb6c09b5 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 26 Dec 2020 11:21:51 +0800 Subject: [PATCH] mod add control edge log print --- parser/tensorflow/tensorflow_parser.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser/tensorflow/tensorflow_parser.cc b/parser/tensorflow/tensorflow_parser.cc index 15c61ce..a59077c 100644 --- a/parser/tensorflow/tensorflow_parser.cc +++ b/parser/tensorflow/tensorflow_parser.cc @@ -667,7 +667,7 @@ Status TensorFlowModelParser::AddEdges(ge::ComputeGraphPtr &graph) { return INTERNAL_ERROR, "Add link failed from op[%s] to op[%s].", src->GetName().c_str(), dest->GetName().c_str()); } else { - GELOGD("Start add contorl edge: from %s to %s.", src->GetName().c_str(), dest->GetName().c_str()); + GELOGD("Start add control edge: from %s to %s.", src->GetName().c_str(), dest->GetName().c_str()); ge::InControlAnchorPtr in_archor_ptr = dest->GetInControlAnchor(); GE_CHECK_NOTNULL(in_archor_ptr); ge::OutControlAnchorPtr out_archor_ptr = src->GetOutControlAnchor();