Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
magicwindyyd
mindspore
提交
0f38cf0b
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看板
提交
0f38cf0b
编写于
7月 16, 2020
作者:
M
mindspore-ci-bot
提交者:
Gitee
7月 16, 2020
浏览文件
操作
浏览文件
下载
差异文件
!3125 Fix assign-node-wipe bug
Merge pull request !3125 from zhoufeng/xiu-ba-ge
上级
ae50c37c
3d4d434f
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
21 addition
and
5 deletion
+21
-5
mindspore/ccsrc/backend/session/ascend_control_parser.cc
mindspore/ccsrc/backend/session/ascend_control_parser.cc
+21
-5
未找到文件。
mindspore/ccsrc/backend/session/ascend_control_parser.cc
浏览文件 @
0f38cf0b
...
...
@@ -18,9 +18,12 @@
#include <utility>
#include <memory>
#include <algorithm>
#include <string>
#include "backend/session/anf_runtime_algorithm.h"
#include "utils/union_find_set.h"
#include "runtime/device/ascend/ascend_label_assign.h"
#include "utils/context/ms_context.h"
#include "debug/anf_ir_dump.h"
static
constexpr
size_t
kCNodePrim
=
0
;
static
constexpr
size_t
kCNodeCallArg
=
1
;
...
...
@@ -248,10 +251,14 @@ void AscendControlParser::EraseParameter(NotNull<KernelGraphPtr> root_graph,
}
MS_LOG
(
INFO
)
<<
"Erase "
<<
assign_node
->
DebugString
(
5
);
EraseNodeFromExecOrder
(
assign_node
,
NOT_NULL
(
&
exec_order
));
auto
source
=
AnfAlgo
::
VisitKernelWithReturnType
(
assign_node
->
input
(
kCNodeAssignSource
),
0
).
first
;
parameter_count
.
AddReadCount
(
source
,
-
1
)
;
auto
source
=
assign_node
->
input
(
kCNodeAssignSource
);
MS_EXCEPTION_IF_NULL
(
source
)
;
auto
visit_source
=
AnfAlgo
::
VisitKernelWithReturnType
(
source
,
0
).
first
;
parameter_count
.
AddWriteCount
(
para
,
-
1
);
parameter_count
.
AddReadCount
(
para
,
-
1
);
if
(
visit_source
->
isa
<
Parameter
>
())
{
parameter_count
.
AddReadCount
(
visit_source
,
read
-
1
);
}
for
(
auto
&
node
:
all_nodes
)
{
for
(
size_t
i
=
0
;
i
<
node
->
size
();
++
i
)
{
if
(
node
->
input
(
i
)
==
para
)
{
...
...
@@ -260,8 +267,6 @@ void AscendControlParser::EraseParameter(NotNull<KernelGraphPtr> root_graph,
}
}
}
parameter_count
.
AddReadCount
(
source
,
1
);
parameter_count
.
AddReadCount
(
para
,
-
1
);
}
root_graph
->
set_execution_order
(
exec_order
);
}
...
...
@@ -318,6 +323,17 @@ void AscendControlParser::ExecutorValidate(NotNull<KernelGraphPtr> root_graph) {
(
void
)
RecurseGraph
(
root_graph
,
NOT_NULL
(
&
memo
));
EraseParameter
(
root_graph
,
memo
);
EraseLabel
(
root_graph
);
auto
context_ptr
=
MsContext
::
GetInstance
();
MS_EXCEPTION_IF_NULL
(
context_ptr
);
auto
save_graphs_path
=
context_ptr
->
save_graphs_path
();
if
(
save_graphs_path
.
empty
())
{
save_graphs_path
=
"."
;
}
if
(
context_ptr
->
save_graphs_flag
())
{
std
::
string
file_path
=
save_graphs_path
+
"/after_erase_label_and_parameter.ir"
;
DumpIR
(
file_path
,
root_graph
.
get
());
}
}
std
::
vector
<
std
::
pair
<
KernelGraphPtr
,
std
::
vector
<
AnfNodePtr
>>>
AscendControlParser
::
ParseCallNode
(
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录