Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MegEngine 天元
MegEngine
提交
53da5c79
MegEngine
项目概览
MegEngine 天元
/
MegEngine
大约 1 年 前同步成功
通知
399
Star
4705
Fork
582
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
MegEngine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
53da5c79
编写于
8月 04, 2021
作者:
M
Megvii Engine Team
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat(cg): add comp_seq_sync_device option
GitOrigin-RevId: c2199c59e9744352207e8cbd6d53616d968319bf
上级
e1c7b22f
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
19 addition
and
9 deletion
+19
-9
imperative/src/impl/ops/utility.cpp
imperative/src/impl/ops/utility.cpp
+1
-0
src/core/impl/graph/cg_impl_seq.cpp
src/core/impl/graph/cg_impl_seq.cpp
+15
-9
src/core/include/megbrain/graph/cg.h
src/core/include/megbrain/graph/cg.h
+3
-0
未找到文件。
imperative/src/impl/ops/utility.cpp
浏览文件 @
53da5c79
...
@@ -288,6 +288,7 @@ ComputingGraphHolder& get_computing_graph(std::shared_ptr<OpDef> compiled_op, Sm
...
@@ -288,6 +288,7 @@ ComputingGraphHolder& get_computing_graph(std::shared_ptr<OpDef> compiled_op, Sm
cg_holder
.
graph
->
options
().
async_exec_level
=
0
;
cg_holder
.
graph
->
options
().
async_exec_level
=
0
;
cg_holder
.
graph
->
options
().
graph_opt_level
=
compiled_op
->
cast_final_safe
<
CompiledOp
>
().
gopt_level
;
cg_holder
.
graph
->
options
().
graph_opt_level
=
compiled_op
->
cast_final_safe
<
CompiledOp
>
().
gopt_level
;
cg_holder
.
graph
->
options
().
enable_var_mem_defragment
=
false
;
cg_holder
.
graph
->
options
().
enable_var_mem_defragment
=
false
;
cg_holder
.
graph
->
options
().
comp_seq_sync_device
=
false
;
cg_holder
.
graph
->
set_device_memory_allocator
(
cg_holder
.
allocator
);
cg_holder
.
graph
->
set_device_memory_allocator
(
cg_holder
.
allocator
);
// cg_holder.graph->options().graph_opt.jit = 2;
// cg_holder.graph->options().graph_opt.jit = 2;
VarNodeArray
input_vars
;
VarNodeArray
input_vars
;
...
...
src/core/impl/graph/cg_impl_seq.cpp
浏览文件 @
53da5c79
...
@@ -385,21 +385,27 @@ void ComputingGraphImpl::ComputingSequence::do_wait(bool explicit_user_wait) {
...
@@ -385,21 +385,27 @@ void ComputingGraphImpl::ComputingSequence::do_wait(bool explicit_user_wait) {
}
}
}
}
for
(
auto
cn
:
m_used_comp_node
)
{
bool
sync_device
=
m_owner_graph
->
options
().
comp_seq_sync_device
;
m_event_end
.
at
(
cn
)
->
host_wait
();
if
(
sync_device
)
{
for
(
auto
cn
:
m_used_comp_node
)
{
m_event_end
.
at
(
cn
)
->
host_wait
();
}
}
}
m_wait_finished
=
true
;
m_wait_finished
=
true
;
#if MGB_NEED_MEGDNN_ASYNC_ERROR
#if MGB_NEED_MEGDNN_ASYNC_ERROR
// FIXME: It CAN NOT work well if more than one ComputingSequnces has been
// FIXME: It CAN NOT work well if more than one ComputingSequnces has been
// executed on the same compnode and got AsyncError concurrently, because
// executed on the same compnode and got AsyncError concurrently, because
// only the first async error on each comp_node would be recorded.
// only the first async error on each comp_node would be recorded.
for
(
auto
&&
cn
:
m_used_comp_node
)
{
if
(
sync_device
)
{
auto
error
=
cn
.
check_async_error
();
for
(
auto
&&
cn
:
m_used_comp_node
)
{
if
(
error
)
{
auto
error
=
cn
.
check_async_error
();
static_cast
<
const
OperatorNodeExcExtraInfo
*>
(
error
->
extra_info
())
if
(
error
)
{
->
opr
()
static_cast
<
const
OperatorNodeExcExtraInfo
*>
(
error
->
extra_info
())
->
owner_graph
()
->
opr
()
->
record_async_error
(
std
::
move
(
error
));
->
owner_graph
()
->
record_async_error
(
std
::
move
(
error
));
}
}
}
}
}
#endif
#endif
...
...
src/core/include/megbrain/graph/cg.h
浏览文件 @
53da5c79
...
@@ -520,6 +520,9 @@ class ComputingGraph : public std::enable_shared_from_this<ComputingGraph>,
...
@@ -520,6 +520,9 @@ class ComputingGraph : public std::enable_shared_from_this<ComputingGraph>,
*/
*/
bool
no_force_inplace
=
false
;
bool
no_force_inplace
=
false
;
//! whether to sync comp_node when waiting computing sequence
bool
comp_seq_sync_device
=
true
;
//! add extra deps for the comp seq if a specific var is dependent
//! add extra deps for the comp seq if a specific var is dependent
ThinHashMap
<
VarNode
*
,
VarNodeArray
>
extra_vardeps
;
ThinHashMap
<
VarNode
*
,
VarNodeArray
>
extra_vardeps
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录