Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Crayon鑫
Paddle
提交
63b6a11b
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看板
未验证
提交
63b6a11b
编写于
9月 07, 2022
作者:
Z
zyfncg
提交者:
GitHub
9月 07, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Clear extra attrs of reduce op in OpMaker (#45786)
* clear extra attrs of reduce op in opmaker * fix reduce_mean
上级
91631492
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
49 addition
and
4 deletion
+49
-4
paddle/fluid/operators/reduce_ops/reduce_mean_op.cc
paddle/fluid/operators/reduce_ops/reduce_mean_op.cc
+1
-0
paddle/fluid/operators/reduce_ops/reduce_op.h
paddle/fluid/operators/reduce_ops/reduce_op.h
+0
-4
paddle/phi/api/yaml/api_compat.yaml
paddle/phi/api/yaml/api_compat.yaml
+48
-0
未找到文件。
paddle/fluid/operators/reduce_ops/reduce_mean_op.cc
浏览文件 @
63b6a11b
...
@@ -79,6 +79,7 @@ class ReduceMeanDoubleGradOpBaseMaker : public imperative::GradOpBaseMakerBase {
...
@@ -79,6 +79,7 @@ class ReduceMeanDoubleGradOpBaseMaker : public imperative::GradOpBaseMakerBase {
op
.
SetType
(
"reduce_mean"
);
op
.
SetType
(
"reduce_mean"
);
op
.
SetInput
(
"X"
,
x_gg
);
op
.
SetInput
(
"X"
,
x_gg
);
op
.
SetAttrMap
(
Attrs
());
op
.
SetAttrMap
(
Attrs
());
op
.
SetDefaultAttrsMap
(
DefaultAttrsMap
());
op
.
SetOutput
(
"Out"
,
out_grads
);
op
.
SetOutput
(
"Out"
,
out_grads
);
}
}
return
node
;
return
node
;
...
...
paddle/fluid/operators/reduce_ops/reduce_op.h
浏览文件 @
63b6a11b
...
@@ -718,10 +718,6 @@ class ReduceOpMaker : public framework::OpProtoAndCheckerMaker {
...
@@ -718,10 +718,6 @@ class ReduceOpMaker : public framework::OpProtoAndCheckerMaker {
"(int, default -1)"
"(int, default -1)"
"The dtype of output, default value is -1, the dtype is same as intput"
)
"The dtype of output, default value is -1, the dtype is same as intput"
)
.
SetDefault
(
-
1
);
.
SetDefault
(
-
1
);
AddAttr
<
bool
>
(
"use_mkldnn"
,
"(bool, default false) Only used in mkldnn kernel"
)
.
SetDefault
(
false
)
.
AsExtra
();
AddComment
(
string
::
Sprintf
(
R"DOC(
AddComment
(
string
::
Sprintf
(
R"DOC(
%s Operator.
%s Operator.
...
...
paddle/phi/api/yaml/api_compat.yaml
浏览文件 @
63b6a11b
...
@@ -203,6 +203,11 @@
...
@@ -203,6 +203,11 @@
inputs
:
{
x
:
X
}
inputs
:
{
x
:
X
}
outputs
:
{
out
:
Out
}
outputs
:
{
out
:
Out
}
-
api
:
frobenius_norm
backward
:
frobenius_norm_grad
extra
:
attrs
:
[
bool use_mkldnn = false
]
-
api
:
gelu
-
api
:
gelu
backward
:
gelu_grad
backward
:
gelu_grad
extra
:
extra
:
...
@@ -288,6 +293,49 @@
...
@@ -288,6 +293,49 @@
outputs
:
outputs
:
out
:
Out
out
:
Out
-
api
:
reduce_all
extra
:
attrs
:
[
bool use_mkldnn = false
]
-
api
:
reduce_amax
backward
:
reduce_amax_grad
extra
:
attrs
:
[
bool use_mkldnn = false
]
-
api
:
reduce_amin
backward
:
reduce_amin_grad
extra
:
attrs
:
[
bool use_mkldnn = false
]
-
api
:
reduce_any
extra
:
attrs
:
[
bool use_mkldnn = false
]
-
api
:
reduce_max
backward
:
reduce_max_grad
extra
:
attrs
:
[
bool use_mkldnn = false
]
-
api
:
reduce_mean
backward
:
reduce_mean_grad
extra
:
attrs
:
[
bool use_mkldnn = false
]
-
api
:
reduce_min
backward
:
reduce_min_grad
extra
:
attrs
:
[
bool use_mkldnn = false
]
-
api
:
reduce_prod
backward
:
reduce_prod_grad
extra
:
attrs
:
[
bool use_mkldnn = false
]
-
api
:
reduce_sum
backward
:
reduce_sum_grad
extra
:
attrs
:
[
bool use_mkldnn = false
]
-
api
:
renorm
-
api
:
renorm
backward
:
renorm_grad
backward
:
renorm_grad
extra
:
extra
:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录