Browse Source

!168 mod add control edge log

Merge pull request !168 from 王笑天/master
pull/168/MERGE
储星 Gitee 5 years ago
parent
commit
2458a4fb10
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      parser/tensorflow/tensorflow_parser.cc

+ 1
- 1
parser/tensorflow/tensorflow_parser.cc View File

@@ -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();


Loading…
Cancel
Save