From b7a98e84b5b03b2701582581a8267219d2dad61e Mon Sep 17 00:00:00 2001 From: "wangwenhua1@huawei.com" Date: Sat, 21 Nov 2020 18:02:01 +0800 Subject: [PATCH] error message add memory --- ge/graph/build/memory/graph_mem_assigner.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ge/graph/build/memory/graph_mem_assigner.cc b/ge/graph/build/memory/graph_mem_assigner.cc index dc134a27..8fa4f542 100755 --- a/ge/graph/build/memory/graph_mem_assigner.cc +++ b/ge/graph/build/memory/graph_mem_assigner.cc @@ -1710,7 +1710,7 @@ ge::Status GraphMemoryAssigner::GetNodeMemoryType(const NodePtr &node, int64_t & std::string error = "The size" + FmtToStr(mem_type_list.size()) + " of mem type list is not equal to the size of in data anchor" + FmtToStr(node->GetAllInDataAnchorsSize()) + ", opname is" + - FmtToStr(node->GetName()) + ", optype is " + FmtToStr(node.GetType()); + FmtToStr(node->GetName()) + ", optype is " + FmtToStr(node->GetType()); GE_ERRORLOG_AND_ERRORMSG(FAILED, error.c_str()); return FAILED; }