Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
机器未来
Paddle
提交
b61fa16a
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看板
未验证
提交
b61fa16a
编写于
4月 13, 2022
作者:
H
hong
提交者:
GitHub
4月 13, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add split backward yaml (#41746)
上级
c9c03e7b
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
25 addition
and
5 deletion
+25
-5
python/paddle/fluid/tests/unittests/test_split_op.py
python/paddle/fluid/tests/unittests/test_split_op.py
+23
-4
python/paddle/utils/code_gen/api.yaml
python/paddle/utils/code_gen/api.yaml
+1
-0
python/paddle/utils/code_gen/backward.yaml
python/paddle/utils/code_gen/backward.yaml
+1
-1
未找到文件。
python/paddle/fluid/tests/unittests/test_split_op.py
浏览文件 @
b61fa16a
...
...
@@ -19,6 +19,7 @@ import numpy as np
from
op_test
import
OpTest
,
convert_float_to_uint16
import
paddle.fluid
as
fluid
from
paddle.fluid
import
compiler
,
Program
,
program_guard
,
core
from
paddle.fluid.framework
import
_test_eager_guard
class
TestSplitOp
(
OpTest
):
...
...
@@ -402,12 +403,30 @@ class API_TestDygraphSplit(unittest.TestCase):
with
fluid
.
dygraph
.
guard
():
input_1
=
np
.
random
.
random
([
4
,
6
,
6
]).
astype
(
"int32"
)
# input is a variable which shape is [4, 6, 6]
input
=
fluid
.
dygraph
.
to_variable
(
input_1
)
input
=
paddle
.
to_tensor
(
input_1
)
x0
,
x1
,
x2
=
paddle
.
split
(
input
,
num_or_sections
=
3
,
axis
=
1
)
x0_out
=
x0
.
numpy
()
x1_out
=
x1
.
numpy
()
x2_out
=
x2
.
numpy
()
ex_x0
,
ex_x1
,
ex_x2
=
np
.
split
(
input_1
,
3
,
axis
=
1
)
with
_test_eager_guard
():
# input is a variable which shape is [4, 6, 6]
input
=
paddle
.
to_tensor
(
input_1
)
input
.
stop_gradient
=
False
x0
,
x1
,
x2
=
paddle
.
split
(
input
,
num_or_sections
=
3
,
axis
=
1
)
eager_x0_out
=
x0
.
numpy
()
eager_x1_out
=
x1
.
numpy
()
eager_x2_out
=
x2
.
numpy
()
loss
=
x0
.
sum
()
loss
.
backward
()
manul_grad
=
np
.
zeros_like
(
input_1
)
manul_grad
[:,
:
2
,
:]
=
1
self
.
assertTrue
(
np
.
allclose
(
input
.
gradient
(),
manul_grad
))
self
.
assertTrue
(
np
.
allclose
(
ex_x0
,
eager_x0_out
))
self
.
assertTrue
(
np
.
allclose
(
ex_x1
,
eager_x1_out
))
self
.
assertTrue
(
np
.
allclose
(
ex_x2
,
eager_x2_out
))
self
.
assertTrue
(
np
.
allclose
(
ex_x0
,
x0_out
))
self
.
assertTrue
(
np
.
allclose
(
ex_x1
,
x1_out
))
self
.
assertTrue
(
np
.
allclose
(
ex_x2
,
x2_out
))
...
...
@@ -416,7 +435,7 @@ class API_TestDygraphSplit(unittest.TestCase):
with
fluid
.
dygraph
.
guard
():
input_1
=
np
.
random
.
random
([
4
,
6
,
6
]).
astype
(
"bool"
)
# input is a variable which shape is [4, 6, 6]
input
=
fluid
.
dygraph
.
to_variable
(
input_1
)
input
=
paddle
.
to_tensor
(
input_1
)
x0
,
x1
,
x2
=
paddle
.
split
(
input
,
num_or_sections
=
3
,
axis
=
1
)
x0_out
=
x0
.
numpy
()
x1_out
=
x1
.
numpy
()
...
...
@@ -430,7 +449,7 @@ class API_TestDygraphSplit(unittest.TestCase):
with
fluid
.
dygraph
.
guard
():
input_1
=
np
.
random
.
random
([
4
,
6
,
6
]).
astype
(
"int32"
)
# input is a variable which shape is [4, 6, 6]
input
=
fluid
.
dygraph
.
to_variable
(
input_1
)
input
=
paddle
.
to_tensor
(
input_1
)
num1
=
paddle
.
full
(
shape
=
[
1
],
fill_value
=
2
,
dtype
=
'int32'
)
x0
,
x1
,
x2
=
paddle
.
split
(
input
,
num_or_sections
=
[
num1
,
2
,
2
],
axis
=
1
)
...
...
@@ -446,7 +465,7 @@ class API_TestDygraphSplit(unittest.TestCase):
with
fluid
.
dygraph
.
guard
():
input_1
=
np
.
random
.
random
([
4
,
6
,
6
]).
astype
(
"int32"
)
# input is a variable which shape is [4, 6, 6]
input
=
fluid
.
dygraph
.
to_variable
(
input_1
)
input
=
paddle
.
to_tensor
(
input_1
)
num1
=
paddle
.
full
(
shape
=
[
1
],
fill_value
=
1
,
dtype
=
'int32'
)
x0
,
x1
,
x2
=
paddle
.
split
(
input
,
num_or_sections
=
[
2
,
2
,
2
],
axis
=
num1
)
...
...
python/paddle/utils/code_gen/api.yaml
浏览文件 @
b61fa16a
...
...
@@ -1917,6 +1917,7 @@
args
:
(Tensor x, IntArray num_or_sections, Scalar(int) axis)
output
:
Tensor[]
invoke
:
split_impl(x, num_or_sections, axis)
backward
:
split_grad
-
api
:
sqrt
args
:
(Tensor x)
...
...
python/paddle/utils/code_gen/backward.yaml
浏览文件 @
b61fa16a
...
...
@@ -1523,7 +1523,7 @@
-
backward_api
:
split_grad
forward
:
split (Tensor x, IntArray num_or_sections, Scalar axis) -> Tensor[](out)
args
:
(Tensor[] out_grad, Scalar axis)
args
:
(Tensor[] out_grad, Scalar axis
= -1
)
output
:
Tensor(x_grad)
invoke
:
concat( out_grad, axis)
# TODO(zhangyunfei) The config of double grad and triple grad will be supported in the future.
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录