!14337 fix device memory not free for constexpr

From: @chujinjin
Reviewed-by: @zhoufeng54,@kisnwang
Signed-off-by: @kisnwang
This commit is contained in:
mindspore-ci-bot 2021-03-30 16:24:51 +08:00 committed by Gitee
commit c335796f63
1 changed files with 1 additions and 1 deletions

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;
}