Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
magicwindyyd
mindspore
提交
0f4617a8
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看板
提交
0f4617a8
编写于
7月 10, 2020
作者:
M
mindspore-ci-bot
提交者:
Gitee
7月 10, 2020
浏览文件
操作
浏览文件
下载
差异文件
!2978 switch input generalizes partial
Merge pull request !2978 from Margaret_wangrui/switch_input
上级
8844462e
6d14de5f
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
51 addition
and
2 deletion
+51
-2
mindspore/ccsrc/session/session_basic.cc
mindspore/ccsrc/session/session_basic.cc
+46
-2
mindspore/ccsrc/session/session_basic.h
mindspore/ccsrc/session/session_basic.h
+4
-0
mindspore/ccsrc/utils/utils.h
mindspore/ccsrc/utils/utils.h
+1
-0
未找到文件。
mindspore/ccsrc/session/session_basic.cc
浏览文件 @
0f4617a8
...
...
@@ -497,7 +497,50 @@ CNodePtr SessionBasic::CreateNewCNode(const CNodePtr &cnode, bool valid_input, K
return
new_cnode
;
}
static
std
::
vector
<
AnfNodePtr
>
CreateSwitchOrPartialNode
(
const
CNodePtr
&
cnode
,
KernelGraph
*
graph
)
{
CNodePtr
SessionBasic
::
CreateSwitchInput
(
const
AnfNodePtr
&
node_input
,
KernelGraph
*
graph
)
{
MS_EXCEPTION_IF_NULL
(
node_input
);
MS_EXCEPTION_IF_NULL
(
graph
);
// switch input generalizes partial
if
(
AnfAlgo
::
CheckPrimitiveType
(
node_input
,
prim
::
kPrimPartial
)
||
AnfAlgo
::
CheckPrimitiveType
(
node_input
,
prim
::
kPrimCall
))
{
return
node_input
->
cast
<
CNodePtr
>
();
}
if
(
node_input
->
isa
<
CNode
>
())
{
MS_LOG
(
EXCEPTION
)
<<
"If switch input is "
<<
node_input
->
DebugString
()
<<
", it mast be partial or call."
;
}
std
::
vector
<
AnfNodePtr
>
partial_inputs
=
{
NewValueNode
(
std
::
make_shared
<
Primitive
>
(
prim
::
kPrimPartial
->
name
()))};
if
(
node_input
->
isa
<
ValueNode
>
()
&&
IsValueNode
<
FuncGraph
>
(
node_input
))
{
partial_inputs
.
emplace_back
(
node_input
);
auto
partial_node
=
graph
->
NewCNode
(
partial_inputs
);
return
partial_node
;
}
KernelGraphPtr
kernel_graph
=
NewKernelGraph
();
MS_EXCEPTION_IF_NULL
(
kernel_graph
);
kernel_graph
->
set_output
(
graph
->
GetBackendAnfByFrontAnf
(
node_input
));
partial_inputs
.
emplace_back
(
std
::
make_shared
<
ValueNode
>
(
kernel_graph
));
auto
partial_node
=
graph
->
NewCNode
(
partial_inputs
);
return
partial_node
;
}
CNodePtr
SessionBasic
::
HandleSwitchInputs
(
const
AnfNodePtr
&
anf_node
,
KernelGraph
*
graph
)
{
MS_EXCEPTION_IF_NULL
(
anf_node
);
MS_EXCEPTION_IF_NULL
(
graph
);
auto
node
=
anf_node
->
cast
<
CNodePtr
>
();
MS_EXCEPTION_IF_NULL
(
node
);
if
(
node
->
inputs
().
size
()
<
kSwitchInputSize
)
{
MS_LOG
(
EXCEPTION
)
<<
"Switch input size less than "
<<
kSwitchInputSize
;
}
auto
primitive
=
NewValueNode
(
std
::
make_shared
<
Primitive
>
(
prim
::
kPrimSwitch
->
name
()));
std
::
vector
<
AnfNodePtr
>
switch_inputs
=
{
primitive
,
node
->
input
(
1
)};
for
(
size_t
index
=
2
;
index
<
node
->
inputs
().
size
();
index
++
)
{
auto
input
=
CreateSwitchInput
(
node
->
input
(
index
),
graph
);
switch_inputs
.
emplace_back
(
input
);
}
auto
switch_node
=
graph
->
NewCNode
(
switch_inputs
);
return
switch_node
;
}
std
::
vector
<
AnfNodePtr
>
SessionBasic
::
CreateSwitchOrPartialNode
(
const
CNodePtr
&
cnode
,
KernelGraph
*
graph
)
{
MS_EXCEPTION_IF_NULL
(
cnode
);
MS_EXCEPTION_IF_NULL
(
graph
);
// create primitive of cnode:call(partial or switch)
...
...
@@ -522,7 +565,8 @@ static std::vector<AnfNodePtr> CreateSwitchOrPartialNode(const CNodePtr &cnode,
});
return
cnode_inputs
;
}
else
if
(
AnfAlgo
::
CheckPrimitiveType
(
cnode_input
,
prim
::
kPrimSwitch
))
{
cnode_inputs
.
emplace_back
(
cnode_input
);
auto
switch_node
=
HandleSwitchInputs
(
cnode_input
,
graph
);
cnode_inputs
.
emplace_back
(
switch_node
);
return
cnode_inputs
;
}
MS_LOG
(
EXCEPTION
)
<<
"CNode input[0] must be partial or switch."
;
...
...
mindspore/ccsrc/session/session_basic.h
浏览文件 @
0f4617a8
...
...
@@ -87,6 +87,10 @@ class SessionBasic {
std
::
unordered_map
<
AnfNodePtr
,
AnfNodePtr
>
*
other_graph_cnode
);
CNodePtr
CreateNewCNode
(
const
CNodePtr
&
cnode
,
KernelGraph
*
graph
);
CNodePtr
CreateSwitchInput
(
const
AnfNodePtr
&
node_input
,
KernelGraph
*
graph
);
CNodePtr
HandleSwitchInputs
(
const
AnfNodePtr
&
anf_node
,
KernelGraph
*
graph
);
std
::
vector
<
AnfNodePtr
>
CreateSwitchOrPartialNode
(
const
CNodePtr
&
cnode
,
KernelGraph
*
graph
);
// set parameters of final graph
virtual
GraphId
SetFinalGraphInput
(
const
std
::
vector
<
AnfNodePtr
>
&
)
{
return
kInvalidGraphId
;
}
// set output of final graph
...
...
mindspore/ccsrc/utils/utils.h
浏览文件 @
0f4617a8
...
...
@@ -257,6 +257,7 @@ constexpr auto kAnfPartialFuncGraphIndex = 1;
constexpr
auto
kRealInputNodeIndexInTupleGetItem
=
1
;
constexpr
auto
kInputNodeOutputIndexInTupleGetItem
=
2
;
constexpr
auto
kTupleGetItemInputSize
=
3
;
constexpr
auto
kSwitchInputSize
=
4
;
// index define of control depend
constexpr
auto
kControlDependPriorIndex
=
1
;
constexpr
auto
kControlDependBehindIndex
=
2
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录