Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
a729cb9c
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,发现更多精彩内容 >>
未验证
提交
a729cb9c
编写于
3月 08, 2023
作者:
R
Ruibiao Chen
提交者:
GitHub
3月 08, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix bug of HandleComplexGradToRealGrad (#51302)
上级
e36cac06
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
21 addition
and
19 deletion
+21
-19
paddle/fluid/framework/new_executor/interpreter/interpreter_util.cc
...id/framework/new_executor/interpreter/interpreter_util.cc
+21
-19
未找到文件。
paddle/fluid/framework/new_executor/interpreter/interpreter_util.cc
浏览文件 @
a729cb9c
...
...
@@ -703,6 +703,7 @@ void BuildOpFuncList(const platform::Place& place,
// op is not a operatorwithkernel, so direcly run OperatorBase::Run()
HandleOperatorBase
(
place
,
var_scope
,
ops
[
i
],
&
op_func_node
,
local_scope
);
vec_func_list
->
emplace_back
(
op_func_node
);
}
else
{
VLOG
(
4
)
<<
"OP is not null"
;
auto
op_with_kernel
=
const_cast
<
framework
::
OperatorWithKernel
*>
(
...
...
@@ -871,20 +872,14 @@ void BuildOpFuncList(const platform::Place& place,
}
}
// post-process grad_op.outputs if need cast complex grad into real
// grad.
// NOTE(Aurelius84): insert a transfer_dtype_op inplacely to cast it.
if
(
IsGradOp
(
op_type
)
&&
framework
::
IsComplexType
(
kernel_type
.
data_type_
))
{
interpreter
::
HandleComplexGradToRealGrad
(
op_func_node
,
place
,
output_name_map
,
&
runtime_context
.
outputs
,
var_scope
,
vec_func_list
,
local_scope
,
static_build
);
// for debug nan/inf
if
(
FLAGS_check_nan_inf
)
{
VLOG
(
4
)
<<
"Check nan/inf"
;
framework
::
details
::
CheckOpHasNanOrInf
(
*
op
,
*
runtime_scope
,
place
);
}
vec_func_list
->
emplace_back
(
op_func_node
);
if
(
!
op_func_node
.
inplace_back_map
.
empty
())
{
auto
&
m
=
op_func_node
.
inplace_back_map
;
// NOTE(zhiqiu): same logic as TransferInplaceVarsBack() in
...
...
@@ -903,10 +898,19 @@ void BuildOpFuncList(const platform::Place& place,
}
}
// for debug nan/inf
if
(
FLAGS_check_nan_inf
)
{
VLOG
(
4
)
<<
"Check nan/inf"
;
framework
::
details
::
CheckOpHasNanOrInf
(
*
op
,
*
runtime_scope
,
place
);
// post-process grad_op.outputs if need cast complex grad into real
// grad.
// NOTE(Aurelius84): insert a transfer_dtype_op inplacely to cast it.
if
(
IsGradOp
(
op_type
)
&&
framework
::
IsComplexType
(
kernel_type
.
data_type_
))
{
interpreter
::
HandleComplexGradToRealGrad
(
op_func_node
,
place
,
output_name_map
,
&
runtime_context
.
outputs
,
var_scope
,
vec_func_list
,
local_scope
,
static_build
);
}
}
}
catch
(
platform
::
EnforceNotMet
&
ex
)
{
...
...
@@ -927,8 +931,6 @@ void BuildOpFuncList(const platform::Place& place,
VLOG
(
4
)
<<
"End run "
<<
place
<<
" "
<<
op_func_node
.
operator_base_
->
DebugStringEx
(
local_scope
);
vec_func_list
->
emplace_back
(
op_func_node
);
// gc---------------------------------------------
auto
iter
=
unused_var_map
.
find
(
op
);
if
(
iter
==
unused_var_map
.
end
())
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录