Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
30417999
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2299
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看板
未验证
提交
30417999
编写于
3月 15, 2022
作者:
Z
Zhanlue Yang
提交者:
GitHub
3月 15, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fixed issues with generated scale operator (#40482)
* Fixed issues with generated scale operator * Fixed minor issues
上级
187fcfa3
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
23 addition
and
26 deletion
+23
-26
paddle/fluid/eager/auto_code_generator/eager_generator.cc
paddle/fluid/eager/auto_code_generator/eager_generator.cc
+23
-26
未找到文件。
paddle/fluid/eager/auto_code_generator/eager_generator.cc
浏览文件 @
30417999
...
...
@@ -56,23 +56,29 @@ static std::string LegalizeVariableName(const std::string& var_name) {
return
ret
;
}
static
bool
IgnoreGradAttribute
(
const
std
::
string
&
op_type
,
const
std
::
string
&
attr_name
)
{
// Attributes in operators_with_attrs are created manually during code
// generation
// We should ignore these arbitrary attrs when setting up grad attribute map
if
(
operators_with_attrs
.
count
(
op_type
))
{
if
(
operators_with_attrs
[
op_type
].
count
(
attr_name
))
{
return
true
;
}
}
static
std
::
string
HandleDynamicGradAttributes
(
const
std
::
string
&
fwd_op_type
,
const
std
::
string
&
attrs_name
)
{
std
::
string
additional_grad_attrs_str
=
""
;
if
(
fwd_op_type
==
"sum"
)
{
const
char
*
GRAD_ATTRS_TEMPLATE
=
" %s[
\"
%s
\"
] = %s;
\n
"
;
additional_grad_attrs_str
=
paddle
::
string
::
Sprintf
(
GRAD_ATTRS_TEMPLATE
,
attrs_name
,
"scale"
,
"float(1.0)"
);
additional_grad_attrs_str
+=
paddle
::
string
::
Sprintf
(
GRAD_ATTRS_TEMPLATE
,
attrs_name
,
"bias"
,
"float(0.0f)"
);
additional_grad_attrs_str
+=
paddle
::
string
::
Sprintf
(
GRAD_ATTRS_TEMPLATE
,
attrs_name
,
"bias_after_scale"
,
"bool(true)"
);
// Only allow SumOp
if
(
op_type
!=
"sum"
)
{
return
true
;
}
else
if
(
fwd_op_type
==
"scale"
)
{
const
char
*
GRAD_ATTRS_TEMPLATE
=
" %s[
\"
%s
\"
] = %s;
\n
"
;
additional_grad_attrs_str
+=
paddle
::
string
::
Sprintf
(
GRAD_ATTRS_TEMPLATE
,
attrs_name
,
"bias"
,
"float(0.0f)"
);
additional_grad_attrs_str
+=
paddle
::
string
::
Sprintf
(
GRAD_ATTRS_TEMPLATE
,
attrs_name
,
"bias_after_scale"
,
"bool(true)"
);
}
return
false
;
return
additional_grad_attrs_str
;
}
static
void
PrepareAttrMapForOps
()
{
...
...
@@ -1866,18 +1872,9 @@ static std::string GenerateSingleOpBase(
const
char
*
ATTRS_TEMPLATE
=
" auto& %s = this->attr_map_;
\n
"
;
std
::
string
grad_attrs_str
=
paddle
::
string
::
Sprintf
(
ATTRS_TEMPLATE
,
attrs_name
);
for
(
const
auto
&
iter
:
grad_attrs
)
{
if
(
IgnoreGradAttribute
(
fwd_op_type
,
iter
.
first
))
continue
;
std
::
pair
<
std
::
string
,
std
::
string
>
type_val
=
GetAttrType
(
iter
.
second
,
false
/*is_arg*/
);
const
char
*
GRAD_ATTRS_TEMPLATE
=
" %s %s = %s;
\n
"
" %s[
\"
%s
\"
] = %s;
\n
"
;
std
::
string
var_name
=
iter
.
first
+
std
::
to_string
(
*
outs_size
);
grad_attrs_str
+=
paddle
::
string
::
Sprintf
(
GRAD_ATTRS_TEMPLATE
,
type_val
.
first
,
var_name
,
type_val
.
second
,
attrs_name
,
iter
.
first
,
var_name
);
}
// Handle dynamic grad attributes
grad_attrs_str
+=
HandleDynamicGradAttributes
(
fwd_op_type
,
attrs_name
);
generated_grad_function_body
+=
grad_attrs_str
;
const
char
*
TRACE_OP_TEMPLATE
=
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录