Browse Source

!14337 fix device memory not free for constexpr

From: @chujinjin
Reviewed-by: @zhoufeng54,@kisnwang
Signed-off-by: @kisnwang
pull/14337/MERGE
mindspore-ci-bot Gitee 5 years ago
parent
commit
c335796f63
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      mindspore/ccsrc/pipeline/pynative/pynative_execute.cc

+ 1
- 1
mindspore/ccsrc/pipeline/pynative/pynative_execute.cc View File

@@ -812,8 +812,8 @@ abstract::AbstractBasePtr ForwardExecutor::CheckConstValue(const PrimitivePyPtr
MS_EXCEPTION_IF_NULL(new_abs);
new_abs = new_abs->Broaden(config);
MS_LOG(DEBUG) << "Broaden for " << prim->ToString() << " " << config;
node_abs_map_[id] = new_abs;
}
node_abs_map_[id] = new_abs;
}
return new_abs;
}


Loading…
Cancel
Save