Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
3779412c
P
Paddle
项目概览
PaddlePaddle
/
Paddle
1 年多 前同步成功
通知
2302
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看板
未验证
提交
3779412c
编写于
8月 17, 2023
作者:
W
wanghuancoder
提交者:
GitHub
8月 17, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[IR] trace run when sync bn (#56362)
* trace run when sync bn
上级
5356f2e0
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
20 addition
and
2 deletion
+20
-2
paddle/fluid/framework/new_executor/new_ir_interpreter.cc
paddle/fluid/framework/new_executor/new_ir_interpreter.cc
+18
-2
paddle/fluid/framework/new_executor/new_ir_interpreter.h
paddle/fluid/framework/new_executor/new_ir_interpreter.h
+2
-0
未找到文件。
paddle/fluid/framework/new_executor/new_ir_interpreter.cc
浏览文件 @
3779412c
...
...
@@ -344,6 +344,19 @@ void NewIRInterpreter::UpdateSyncOpNum() {
VLOG
(
4
)
<<
"Update sync op num, sync op num is: "
<<
sync_op_num_
;
}
void
NewIRInterpreter
::
UpdateNcclOpNum
()
{
static
std
::
set
<
std
::
string
>
nccl_op_set
=
{
"pd.sync_batch_norm_"
,
"pd.sync_batch_norm"
,
"pd.sync_batch_norm_grad"
};
int64_t
nccl_op_num
=
0
;
for
(
auto
&
ins
:
vec_instruction_base_
)
{
if
(
nccl_op_set
.
count
(
ins
->
Name
()))
{
nccl_op_num
=
nccl_op_num
+
1
;
}
}
nccl_op_num_
=
nccl_op_num
;
VLOG
(
4
)
<<
"Update nccl op num, nccl op num is: "
<<
nccl_op_num
;
}
// Note(zhangbo):
// When there is a KQueueSync type OP in the model, breadth traversal is better
// than depth traversal. For example: OP(O) ->(direct_run)-> OP(A)
...
...
@@ -852,7 +865,7 @@ FetchList NewIRInterpreter::Run(const std::vector<std::string>& feed_names,
VLOG
(
4
)
<<
"Done PreAnalysis"
;
// Run
if
(
FLAGS_enable_new_ir_in_executor_trace_run
||
if
(
FLAGS_enable_new_ir_in_executor_trace_run
||
nccl_op_num_
>
1
||
((
execution_config_
.
used_for_jit
||
execution_config_
.
used_for_cinn
)
&&
(
sync_op_num_
==
0
)))
{
LOG_FIRST_N
(
INFO
,
1
)
<<
"New ir interpreter is running in BetaRun mode "
...
...
@@ -867,7 +880,7 @@ FetchList NewIRInterpreter::Run(const std::vector<std::string>& feed_names,
is_build_
=
true
;
is_shared_results_build_
=
true
;
}
else
{
if
(
FLAGS_enable_new_ir_in_executor_trace_run
||
if
(
FLAGS_enable_new_ir_in_executor_trace_run
||
nccl_op_num_
>
1
||
((
execution_config_
.
used_for_jit
||
execution_config_
.
used_for_cinn
)
&&
(
sync_op_num_
==
0
)))
{
TraceRunImpl
();
...
...
@@ -1182,6 +1195,9 @@ void NewIRInterpreter::PreAnalysis() {
UpdateSyncOpNum
();
VLOG
(
4
)
<<
"Done UpdateSyncOpNum"
;
UpdateNcclOpNum
();
VLOG
(
4
)
<<
"Done UpdateNcclOpNum"
;
}
::
ir
::
Value
NewIRInterpreter
::
GetValueByName
(
const
std
::
string
&
var_name
)
{
...
...
paddle/fluid/framework/new_executor/new_ir_interpreter.h
浏览文件 @
3779412c
...
...
@@ -84,6 +84,7 @@ class NewIRInterpreter : public InterpreterBaseImpl {
private:
// build graph
void
UpdateSyncOpNum
();
void
UpdateNcclOpNum
();
void
AnalyseExecuteOrderForTrace
(
std
::
map
<
size_t
,
std
::
set
<
size_t
>>
op_downstream_map
,
InstructionSchedulingPriorityLess
compare
);
...
...
@@ -148,6 +149,7 @@ class NewIRInterpreter : public InterpreterBaseImpl {
// used for Trace
int64_t
sync_op_num_
{
-
1
};
int64_t
nccl_op_num_
{
-
1
};
std
::
vector
<
size_t
>
trace_execute_order_
;
std
::
vector
<
HookFunc
>
hookfuncs_
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录