From 8eb681886d292e26dfcf73d3e7a628150145ac06 Mon Sep 17 00:00:00 2001 From: "gengchao4@huawei.com" Date: Sat, 24 Oct 2020 11:13:51 +0800 Subject: [PATCH] modify compile error --- ge/graph/build/memory/block_mem_assigner.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ge/graph/build/memory/block_mem_assigner.cc b/ge/graph/build/memory/block_mem_assigner.cc index d782267b..90c82870 100755 --- a/ge/graph/build/memory/block_mem_assigner.cc +++ b/ge/graph/build/memory/block_mem_assigner.cc @@ -1279,7 +1279,7 @@ Status BlockMemAssigner::AssignOutputMemoryWithReuse(const NodePtr &node, vector MemoryBlock *mem_block = ApplyOutMemory(node, i, ranges, is_op_reuse_mem_, out_node_set_continuous_input); if (mem_block != nullptr) { GE_IF_BOOL_EXEC(reset_zero_copy_flag, - memory_block->is_zero_copy_ = false; + mem_block->is_zero_copy_ = false; GELOGI("Node[%s] output[%u] need assign memory before reassign.", op_desc->GetName().c_str(), i);); node_out_blocks_[node->GetName()].emplace_back(mem_block); if (out_node_set_continuous_input) {