Browse Source

fix error code and add complex128 support

tags/v1.5.1
lichun 3 years ago
parent
commit
a5137fb87f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ge/graph/build/memory/memory_assigner.cc

+ 1
- 1
ge/graph/build/memory/memory_assigner.cc View File

@@ -29,7 +29,7 @@ Status MemoryAssigner::AssignMemory(bool is_loop_graph, map<uint64_t, size_t> &m
}

// Reassign memory for special nodes
Status ret = graph_mem_assigner.ReAssignMemory(is_loop_graph, mem_offset)
Status ret = graph_mem_assigner.ReAssignMemory(is_loop_graph, mem_offset);
if (ret != ge::SUCCESS) {
GELOGE(ge::FAILED, "[ReAssign][Memory] failed, graph:%s", compute_graph_->GetName().c_str());
return ret;


Loading…
Cancel
Save