Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Crayon鑫
Paddle
提交
21d94dd3
P
Paddle
项目概览
Crayon鑫
/
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看板
未验证
提交
21d94dd3
编写于
4月 29, 2022
作者:
W
Weilong Wu
提交者:
GitHub
4月 29, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[Eager] Support test_diff_op switch to eager mode (#42360)
上级
05d6be7e
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
30 addition
and
10 deletion
+30
-10
paddle/fluid/eager/backward.cc
paddle/fluid/eager/backward.cc
+7
-1
python/paddle/fluid/tests/unittests/test_diff_op.py
python/paddle/fluid/tests/unittests/test_diff_op.py
+17
-4
python/paddle/tensor/math.py
python/paddle/tensor/math.py
+6
-5
未找到文件。
paddle/fluid/eager/backward.cc
浏览文件 @
21d94dd3
...
...
@@ -553,7 +553,13 @@ std::vector<paddle::experimental::Tensor> RunBackward(
for
(
size_t
i
=
0
;
i
<
tensors
.
size
();
i
++
)
{
const
paddle
::
experimental
::
Tensor
&
tensor
=
tensors
[
i
];
AutogradMeta
*
auto_grad_meta
=
EagerUtils
::
unsafe_autograd_meta
(
tensor
);
AutogradMeta
*
auto_grad_meta
=
EagerUtils
::
nullable_autograd_meta
(
tensor
);
if
(
auto_grad_meta
==
nullptr
)
{
VLOG
(
3
)
<<
"Skip auto grad since there is no grad op for var or loss is "
"stop_gradient=True: "
<<
tensor
.
name
();
continue
;
}
// Get grad input info from target tensors
auto
input_info
=
auto_grad_meta
->
OutRankInfo
();
...
...
python/paddle/fluid/tests/unittests/test_diff_op.py
浏览文件 @
21d94dd3
...
...
@@ -19,8 +19,7 @@ import paddle
import
paddle.fluid
as
fluid
import
paddle.fluid.layers
as
layers
import
paddle.fluid.core
as
core
from
paddle.fluid.framework
import
_enable_legacy_dygraph
_enable_legacy_dygraph
()
from
paddle.fluid.framework
import
_test_eager_guard
class
TestDiffOp
(
unittest
.
TestCase
):
...
...
@@ -55,7 +54,7 @@ class TestDiffOp(unittest.TestCase):
if
core
.
is_compiled_with_cuda
():
self
.
places
.
append
(
paddle
.
CUDAPlace
(
0
))
def
test
_dygraph
(
self
):
def
func
_dygraph
(
self
):
for
place
in
self
.
places
:
paddle
.
disable_static
()
x
=
paddle
.
to_tensor
(
self
.
input
,
place
=
place
)
...
...
@@ -71,6 +70,13 @@ class TestDiffOp(unittest.TestCase):
append
=
self
.
append
)
self
.
assertTrue
((
out
.
numpy
()
==
self
.
output
).
all
(),
True
)
def
test_dygraph
(
self
):
with
_test_eager_guard
():
self
.
setUp
()
self
.
func_dygraph
()
self
.
setUp
()
self
.
func_dygraph
()
def
test_static
(
self
):
paddle
.
enable_static
()
places
=
[
fluid
.
CPUPlace
()]
...
...
@@ -110,7 +116,7 @@ class TestDiffOp(unittest.TestCase):
fetch_list
=
[
out
])
self
.
assertTrue
((
fetches
[
0
]
==
self
.
output
).
all
(),
True
)
def
test
_grad
(
self
):
def
func
_grad
(
self
):
for
place
in
self
.
places
:
x
=
paddle
.
to_tensor
(
self
.
input
,
place
=
place
,
stop_gradient
=
False
)
if
self
.
prepend
is
not
None
:
...
...
@@ -129,6 +135,13 @@ class TestDiffOp(unittest.TestCase):
except
:
raise
RuntimeError
(
"Check Diff Gradient Failed"
)
def
test_grad
(
self
):
with
_test_eager_guard
():
self
.
setUp
()
self
.
func_grad
()
self
.
setUp
()
self
.
func_grad
()
class
TestDiffOpAxis
(
TestDiffOp
):
def
set_args
(
self
):
...
...
python/paddle/tensor/math.py
浏览文件 @
21d94dd3
...
...
@@ -4260,18 +4260,19 @@ def diff(x, n=1, axis=-1, prepend=None, append=None, name=None):
ends_2
=
[
dim_len
]
attrs_2
+=
(
'ends'
,
ends_2
)
if
in_dygraph_mode
():
input_back
=
input_front
=
_C_ops
.
final_state_slice
(
new_input
,
axes
,
starts_2
,
ends_2
,
infer_flags
,
input_back
=
_C_ops
.
final_state_slice
(
new_input
,
axes
,
starts_2
,
ends_2
,
infer_flags
,
[])
else
:
input_back
=
_C_ops
.
slice
(
new_input
,
None
,
None
,
None
,
None
,
'axes'
,
axes
,
\
'infer_flags'
,
infer_flags
,
*
attrs_2
)
if
x
.
dtype
==
paddle
.
bool
:
op
=
getattr
(
_C_ops
,
"logical_xor"
)
out
=
op
(
input_back
,
input_front
)
if
in_dygraph_mode
():
return
_C_ops
.
final_state_logical_xor
(
input_back
,
input_front
)
else
:
return
_C_ops
.
logical_xor
(
input_back
,
input_front
)
else
:
out
=
elementwise_sub
(
input_back
,
input_front
,
axis
=
axis
)
return
out
return
elementwise_sub
(
input_back
,
input_front
,
axis
=
axis
)
else
:
check_variable_and_dtype
(
x
,
'x'
,
[
'float32'
,
'float64'
,
'bool'
,
'int32'
,
'int64'
],
'diff'
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录