Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
magicwindyyd
mindspore
提交
5886c3ac
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看板
提交
5886c3ac
编写于
5月 08, 2020
作者:
K
kswang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix assign cause ir inconsistency
上级
e48eba0d
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
9 addition
and
5 deletion
+9
-5
mindspore/ccsrc/session/ascend_session.cc
mindspore/ccsrc/session/ascend_session.cc
+8
-4
mindspore/ccsrc/session/ascend_session.h
mindspore/ccsrc/session/ascend_session.h
+1
-1
未找到文件。
mindspore/ccsrc/session/ascend_session.cc
浏览文件 @
5886c3ac
...
...
@@ -770,7 +770,7 @@ void AscendSession::MergeSwitchCompile() {
}
void
AscendSession
::
InsertAllAssigns
()
{
std
::
set
<
std
::
pair
<
AnfNodePtr
,
AnfNodePtr
>>
assigns
;
std
::
vector
<
std
::
pair
<
AnfNodePtr
,
AnfNodePtr
>>
assigns
;
for
(
auto
assign
:
assigns_
)
{
auto
front_anf
=
std
::
get
<
0
>
(
assign
);
auto
to_graph_id
=
std
::
get
<
1
>
(
assign
);
...
...
@@ -782,9 +782,10 @@ void AscendSession::InsertAllAssigns() {
MS_LOG
(
EXCEPTION
)
<<
"input_index "
<<
input_idx
<<
" out of range size "
<<
graph_inputs
.
size
();
}
auto
backend_parameter
=
graph_inputs
[
input_idx
];
(
void
)
assigns
.
insert
(
std
::
pair
<
AnfNodePtr
,
AnfNodePtr
>
(
front_anf
,
backend_parameter
));
assigns
.
emplace_back
(
std
::
pair
<
AnfNodePtr
,
AnfNodePtr
>
(
front_anf
,
backend_parameter
));
}
// erase the repeat assign
std
::
set
<
std
::
pair
<
AnfNodePtr
,
AnfNodePtr
>>
inserted_nodes
;
for
(
auto
&
assign
:
assigns
)
{
auto
front_anf
=
assign
.
first
;
auto
backend_parameter
=
assign
.
second
;
...
...
@@ -792,7 +793,10 @@ void AscendSession::InsertAllAssigns() {
auto
from_graph
=
GetGraph
(
from_graph_id
);
MS_EXCEPTION_IF_NULL
(
from_graph
);
auto
backend_arg
=
from_graph
->
GetBackendAnfByFrontAnf
(
front_anf
);
InsertAssignToGraph
(
from_graph_id
,
backend_arg
,
backend_parameter
);
if
(
inserted_nodes
.
find
(
assign
)
==
inserted_nodes
.
end
())
{
InsertAssignToGraph
(
from_graph_id
,
backend_arg
,
backend_parameter
);
(
void
)
inserted_nodes
.
insert
(
assign
);
}
}
}
...
...
@@ -857,7 +861,7 @@ void AscendSession::SetChildGraphParameter(const AnfNodePtr &front_anf, GraphId
}
MS_LOG
(
INFO
)
<<
"Assign of node"
<<
backend_arg
->
DebugString
()
<<
" of graph "
<<
from_graph_id
<<
" to node"
<<
backend_parameter
->
DebugString
()
<<
"of graph "
<<
to_graph_id
;
(
void
)
assigns_
.
insert
(
std
::
tuple
<
AnfNodePtr
,
GraphId
,
size_t
>
(
front_anf
,
to_graph_id
,
input_idx
));
assigns_
.
emplace_back
(
std
::
tuple
<
AnfNodePtr
,
GraphId
,
size_t
>
(
front_anf
,
to_graph_id
,
input_idx
));
}
void
AscendSession
::
SetChildGraphParameter
(
const
tensor
::
TensorPtr
&
front_tensor
,
GraphId
to_graph_id
,
...
...
mindspore/ccsrc/session/ascend_session.h
浏览文件 @
5886c3ac
...
...
@@ -140,7 +140,7 @@ class AscendSession : public SessionBasic {
std
::
unordered_map
<
GraphId
,
std
::
pair
<
GraphId
,
GraphId
>>
switches_
;
std
::
unordered_map
<
GraphId
,
AnfNodePtr
>
condition_output_
;
// share parameters
std
::
set
<
std
::
tuple
<
AnfNodePtr
,
GraphId
,
size_t
>>
assigns_
;
std
::
vector
<
std
::
tuple
<
AnfNodePtr
,
GraphId
,
size_t
>>
assigns_
;
// initial tensors, these tensor will sync data to device before run graph
std
::
map
<
std
::
pair
<
GraphId
,
size_t
>
,
tensor
::
TensorPtr
>
initial_tenosrs_
;
// final_graph_id is used in every root graph has it's own session situation
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录