Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
机器未来
Paddle
提交
1e0ea6a4
P
Paddle
项目概览
机器未来
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
1e0ea6a4
编写于
6月 02, 2022
作者:
W
wanghuancoder
提交者:
GitHub
6月 02, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[Eager] clear_gradient use set_constant but not zeros_like (#43171)
* clear_gradient use set_constant but not zeros_like
上级
3fcfcd51
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
21 addition
and
4 deletion
+21
-4
paddle/fluid/pybind/eager_method.cc
paddle/fluid/pybind/eager_method.cc
+21
-4
未找到文件。
paddle/fluid/pybind/eager_method.cc
浏览文件 @
1e0ea6a4
...
...
@@ -53,6 +53,7 @@ typedef SSIZE_T ssize_t;
#include "paddle/fluid/memory/allocation/mmap_allocator.h"
#include "paddle/fluid/pybind/tensor_py.h"
#include "paddle/phi/core/ddim.h"
#include "paddle/phi/kernels/funcs/math_function.h"
namespace
paddle
{
namespace
pybind
{
...
...
@@ -518,7 +519,10 @@ static PyObject* tensor_clear_gradient(TensorObject* self, PyObject* args,
}
else
if
(
grad
->
is_dense_tensor
())
{
if
(
grad
->
initialized
())
{
if
(
set_to_zero
)
{
grad
->
set_impl
(
paddle
::
experimental
::
zeros_like
(
*
grad
).
impl
());
auto
*
grad_t
=
static_cast
<
phi
::
DenseTensor
*>
(
grad
->
impl
().
get
());
auto
*
dev_ctx
=
platform
::
DeviceContextPool
::
Instance
().
Get
(
grad_t
->
place
());
phi
::
funcs
::
set_constant
(
*
dev_ctx
,
grad_t
,
0.0
);
if
(
is_leaf
)
{
std
::
static_pointer_cast
<
egr
::
GradNodeAccumulation
>
(
egr
::
EagerUtils
::
grad_node
(
self
->
tensor
))
...
...
@@ -555,15 +559,28 @@ static PyObject* tensor__zero_grads(TensorObject* self, PyObject* args,
"Please check if you have manually cleared"
"the grad inside autograd_meta"
));
if
(
grad
->
initialized
())
{
if
(
grad
->
is_dense_tensor
())
{
auto
*
t
=
static_cast
<
phi
::
DenseTensor
*>
(
grad
->
impl
().
get
());
auto
*
dev_ctx
=
platform
::
DeviceContextPool
::
Instance
().
Get
(
t
->
place
());
phi
::
funcs
::
set_constant
(
*
dev_ctx
,
t
,
0.0
);
}
else
{
grad
->
set_impl
(
paddle
::
experimental
::
zeros_like
(
*
(
grad
)).
impl
());
}
}
}
else
{
auto
meta
=
egr
::
EagerUtils
::
unsafe_autograd_meta
(
self
->
tensor
);
if
(
meta
->
MutableGrad
()
->
initialized
())
{
if
(
meta
->
MutableGrad
()
->
is_dense_tensor
())
{
auto
*
t
=
static_cast
<
phi
::
DenseTensor
*>
(
meta
->
MutableGrad
()
->
impl
().
get
());
auto
*
dev_ctx
=
platform
::
DeviceContextPool
::
Instance
().
Get
(
t
->
place
());
phi
::
funcs
::
set_constant
(
*
dev_ctx
,
t
,
0.0
);
}
else
{
meta
->
MutableGrad
()
->
set_impl
(
paddle
::
experimental
::
zeros_like
(
*
(
meta
->
MutableGrad
())).
impl
());
}
}
}
RETURN_PY_NONE
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录