Browse Source

fix

tags/v1.2.0
wangxiaotian22 3 years ago
parent
commit
79ae2d3fe1
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      ge/graph/build/memory/graph_mem_assigner.cc

+ 2
- 2
ge/graph/build/memory/graph_mem_assigner.cc View File

@@ -803,9 +803,9 @@ Status GraphMemoryAssigner::FilterAtomicNodesForMemoryAssign(
(void) ge::AttrUtils::GetBool(peer_in_node_desc, ATTR_NAME_REFERENCE, is_reference);
if (is_reference) {
REPORT_INNER_ERROR("E19999", "Op:%s cannot have both atomic and is_reference attribute, "
"not support now", peer_in_node_desc->GetName());
"not support now", peer_in_node_desc->GetName().c_str());
GELOGE(FAILED, "[Check][Attr]Op:%s cannot have both atomic and is_reference attribute, "
"not support now", peer_in_node_desc->GetName());
"not support now", peer_in_node_desc->GetName().c_str());
return ge::PARAM_INVALID;
}



Loading…
Cancel
Save