Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
6768c6ec
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2298
Star
20931
Fork
5422
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
6768c6ec
编写于
4月 27, 2023
作者:
X
xiaoguoguo626807
提交者:
GitHub
4月 27, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
【prim】Concat bug (#53350)
* modify concat_grad add sum comp rule * modify opcompat
上级
c0ee14f6
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
21 addition
and
4 deletion
+21
-4
paddle/fluid/prim/api/composite_backward/composite_backward_api.h
...luid/prim/api/composite_backward/composite_backward_api.h
+1
-1
paddle/phi/api/yaml/op_compat.yaml
paddle/phi/api/yaml/op_compat.yaml
+6
-0
python/paddle/fluid/tests/unittests/CMakeLists.txt
python/paddle/fluid/tests/unittests/CMakeLists.txt
+2
-1
python/paddle/fluid/tests/unittests/test_sum_op.py
python/paddle/fluid/tests/unittests/test_sum_op.py
+4
-2
python/paddle/incubate/autograd/composite_rules.py
python/paddle/incubate/autograd/composite_rules.py
+8
-0
未找到文件。
paddle/fluid/prim/api/composite_backward/composite_backward_api.h
浏览文件 @
6768c6ec
...
...
@@ -470,7 +470,7 @@ void concat_grad(const std::vector<Tensor>& x,
sections
.
push_back
(
x
[
i
].
dims
()[
axis_value
]);
}
std
::
vector
<
Tensor
>
x_grad_tmp
=
split
<
T
>
(
out_grad
,
phi
::
IntArray
(
sections
),
axis
);
split
<
T
>
(
out_grad
,
phi
::
IntArray
(
sections
),
axis
_value
);
for
(
int
i
=
0
;
i
<
x_num
;
++
i
)
{
set_output
<
T
>
(
x_grad_tmp
.
at
(
i
),
x_grad
.
at
(
i
));
}
...
...
paddle/phi/api/yaml/op_compat.yaml
浏览文件 @
6768c6ec
...
...
@@ -95,6 +95,12 @@
attrs
:
[
bool use_mkldnn = false
,
str x_data_format = ""
,
str y_data_format = ""
,
str mkldnn_data_type = "float32"
,
bool use_quantizer = false
,
float Scale_x = 1.0f
,
float Scale_y = 1.0f
,
float Scale_out = 1.0f
]
-
op
:
add_n (sum)
inputs
:
{
inputs
:
X
}
outputs
:
{
out
:
Out
}
-
op
:
addmm
backward
:
addmm_grad
inputs
:
...
...
python/paddle/fluid/tests/unittests/CMakeLists.txt
浏览文件 @
6768c6ec
...
...
@@ -1113,7 +1113,8 @@ set(TEST_CINN_OPS
test_dropout_op
test_group_norm_op
test_tile_op
test_roll_op
)
test_roll_op
test_sum_op
)
foreach
(
TEST_CINN_OPS
${
TEST_CINN_OPS
}
)
if
(
WITH_CINN
)
...
...
python/paddle/fluid/tests/unittests/test_sum_op.py
浏览文件 @
6768c6ec
...
...
@@ -45,6 +45,8 @@ class TestSumOp(OpTest):
def
setUp
(
self
):
self
.
op_type
=
"sum"
self
.
python_api
=
sum_wrapper
self
.
public_python_api
=
paddle
.
add_n
self
.
prim_op_type
=
"comp"
self
.
init_kernel_type
()
self
.
use_mkldnn
=
False
self
.
init_kernel_type
()
...
...
@@ -60,10 +62,10 @@ class TestSumOp(OpTest):
self
.
dtype
=
np
.
float64
def
test_check_output
(
self
):
self
.
check_output
()
self
.
check_output
(
check_prim
=
True
)
def
test_check_grad
(
self
):
self
.
check_grad
([
'x0'
],
'Out'
)
self
.
check_grad
([
'x0'
],
'Out'
,
check_prim
=
True
)
class
TestSelectedRowsSumOp
(
unittest
.
TestCase
):
...
...
python/paddle/incubate/autograd/composite_rules.py
浏览文件 @
6768c6ec
...
...
@@ -679,6 +679,14 @@ def group_norm_composite(x, scale, bias, epsilon, groups, data_layout):
return
out
,
ret_mean_
,
ret_var_
@
REGISTER_COMPOSITE
(
'sum'
)
def
sum_composite
(
x
):
ans
=
0
for
xi
in
x
:
ans
+=
xi
return
ans
@
REGISTER_COMPOSITE
(
'leaky_relu'
)
def
leaky_relu_composite
(
x
,
negative_slope
):
"""define composite rule of op leaky_relu."""
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录