Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
magicwindyyd
mindspore
提交
e3c4ee75
M
mindspore
项目概览
magicwindyyd
/
mindspore
与 Fork 源项目一致
Fork自
MindSpore / mindspore
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
mindspore
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
e3c4ee75
编写于
6月 30, 2020
作者:
W
wenchunjiang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
reset call inputs only when graph has been splited
上级
2a84a86b
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
11 addition
and
5 deletion
+11
-5
mindspore/ccsrc/session/ascend_session.cc
mindspore/ccsrc/session/ascend_session.cc
+11
-5
未找到文件。
mindspore/ccsrc/session/ascend_session.cc
浏览文件 @
e3c4ee75
...
...
@@ -225,7 +225,7 @@ static void BindCallArgsWithParameter(const std::vector<AnfNodePtr> ¶meters,
// if a call has kernel input, it's a child graph split from ME, so these kernel input should be set into real input of
// graph.For example, call input = (prim,graph,kernel1,kernel2),then real_input = [kernel1,kernel2]
static
void
UpdateRealInput
(
NotNull
<
KernelGraphPtr
>
graph
)
{
static
void
UpdateRealInput
(
NotNull
<
KernelGraphPtr
>
graph
,
bool
split_flag
)
{
auto
call_nodes
=
graph
->
FindNodeByPrimitive
(
prim
::
kPrimCall
);
for
(
auto
&
call_node
:
call_nodes
)
{
MS_EXCEPTION_IF_NULL
(
call_node
);
...
...
@@ -236,7 +236,9 @@ static void UpdateRealInput(NotNull<KernelGraphPtr> graph) {
std
::
vector
<
AnfNodePtr
>
(
call_node
->
inputs
().
begin
()
+
2
,
call_node
->
inputs
().
end
());
std
::
vector
<
AnfNodePtr
>
child_inputs
=
child_graphs
[
0
]
->
inputs
();
BindCallArgsWithParameter
(
child_inputs
,
real_args
,
child_graphs
[
0
].
get
());
call_node
->
set_inputs
(
std
::
vector
<
AnfNodePtr
>
(
call_node
->
inputs
().
begin
(),
call_node
->
inputs
().
begin
()
+
2
));
if
(
split_flag
)
{
call_node
->
set_inputs
(
std
::
vector
<
AnfNodePtr
>
(
call_node
->
inputs
().
begin
(),
call_node
->
inputs
().
begin
()
+
2
));
}
}
else
if
(
child_graphs
.
size
()
==
2
)
{
auto
get_partial_args
=
[
&
](
size_t
input_index
)
->
std
::
vector
<
AnfNodePtr
>
{
auto
switch_node
=
call_node
->
input
(
1
);
...
...
@@ -248,8 +250,10 @@ static void UpdateRealInput(NotNull<KernelGraphPtr> graph) {
auto
partial_cnode
=
partial
->
cast
<
CNodePtr
>
();
MS_EXCEPTION_IF_NULL
(
partial_cnode
);
auto
ret
=
std
::
vector
<
AnfNodePtr
>
(
partial_cnode
->
inputs
().
begin
()
+
2
,
partial_cnode
->
inputs
().
end
());
partial_cnode
->
set_inputs
(
std
::
vector
<
AnfNodePtr
>
(
partial_cnode
->
inputs
().
begin
(),
partial_cnode
->
inputs
().
begin
()
+
2
));
if
(
split_flag
)
{
partial_cnode
->
set_inputs
(
std
::
vector
<
AnfNodePtr
>
(
partial_cnode
->
inputs
().
begin
(),
partial_cnode
->
inputs
().
begin
()
+
2
));
}
return
ret
;
};
BindCallArgsWithParameter
(
child_graphs
[
0
]
->
inputs
(),
get_partial_args
(
2
),
child_graphs
[
0
].
get
());
...
...
@@ -1678,6 +1682,7 @@ AnfNodePtr AscendSession::BindNewCallToNewGraph(NotNull<KernelGraphPtr> graph,
void
AscendSession
::
SplitGraph
(
NotNull
<
KernelGraphPtr
>
graph
,
const
std
::
set
<
PrimitivePtr
>
&
cut_prims
)
{
MS_LOG
(
INFO
)
<<
"Start,graph_id:"
<<
graph
->
graph_id
();
bool
split_flag
=
false
;
auto
apply_list
=
GetCNodes
(
TopoSort
(
graph
->
get_return
()));
// update the root graph child graph order
AscendControlParser
::
UpdateChildGraphOrder
(
graph
);
...
...
@@ -1710,9 +1715,10 @@ void AscendSession::SplitGraph(NotNull<KernelGraphPtr> graph, const std::set<Pri
AscendControlParser
::
InsertControlDependToGraph
(
graph
,
NOT_NULL
(
cur_call_node
),
NOT_NULL
(
pre_call_node
));
}
}
split_flag
=
true
;
}
AscendControlParser
::
UpdateChildGraphOrder
(
graph
);
UpdateRealInput
(
graph
);
UpdateRealInput
(
graph
,
split_flag
);
MS_LOG
(
INFO
)
<<
"Split graph["
<<
graph
->
graph_id
()
<<
"] end"
;
// recurse to split child graph
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录