Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
magicwindyyd
mindspore
提交
b04b8794
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看板
提交
b04b8794
编写于
4月 27, 2020
作者:
M
mindspore-ci-bot
提交者:
Gitee
4月 27, 2020
浏览文件
操作
浏览文件
下载
差异文件
!714 fix select wrong kernel
Merge pull request !714 from chenjianping/r0.2
上级
16c00622
290f783f
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
9 addition
and
11 deletion
+9
-11
mindspore/ccsrc/device/ascend/kernel_select_ascend.cc
mindspore/ccsrc/device/ascend/kernel_select_ascend.cc
+9
-11
未找到文件。
mindspore/ccsrc/device/ascend/kernel_select_ascend.cc
浏览文件 @
b04b8794
...
...
@@ -218,16 +218,7 @@ void AddNodeInputDataType(const CNodePtr &kernel_node, size_t input_index,
std
::
vector
<
TypeId
>
*
node_mix_precision_datatype
)
{
AnfNodePtr
cur_input
=
AnfAlgo
::
GetInputNode
(
kernel_node
,
input_index
);
MS_EXCEPTION_IF_NULL
(
cur_input
);
TypeId
input_origin_type
;
if
(
cur_input
->
isa
<
Parameter
>
()
&&
AnfAlgo
::
IsParameterWeight
(
cur_input
->
cast
<
ParameterPtr
>
()))
{
// weight
input_origin_type
=
AnfAlgo
::
GetOutputDeviceDataType
(
cur_input
,
0
);
}
else
if
(
cur_input
->
isa
<
ValueNode
>
())
{
input_origin_type
=
AnfAlgo
::
GetOutputDeviceDataType
(
cur_input
,
0
);
}
else
{
// feature map
input_origin_type
=
AnfAlgo
::
GetPrevNodeOutputInferDataType
(
kernel_node
,
input_index
);
}
TypeId
input_origin_type
=
AnfAlgo
::
GetPrevNodeOutputInferDataType
(
kernel_node
,
input_index
);
AddSupportMixedPrecisionDataTypeIndex
(
input_origin_type
,
node_mix_precision_datatype_index
);
node_mix_precision_datatype
->
push_back
(
input_origin_type
);
}
...
...
@@ -297,6 +288,12 @@ bool RaiseDataTypePrecisionSelect(const std::vector<int> &node_mix_precision_dat
return
!
kernel_match_datatype_idx
->
empty
();
}
bool
CanDataTypeReduce
(
const
std
::
vector
<
int
>
&
datatype_indexes
,
int
check_index
,
const
std
::
vector
<
int
>
&
node_mix_precision_datatype_index
)
{
return
datatype_indexes
[
check_index
]
!=
kUnSupportMixedDataTypeIndex
&&
datatype_indexes
[
check_index
]
<=
node_mix_precision_datatype_index
[
check_index
];
}
bool
RaiseOrReduceDataTypePrecisionSelect
(
const
std
::
vector
<
int
>
&
node_mix_precision_datatype_index
,
const
std
::
vector
<
TypeId
>
&
node_mix_precision_datatype
,
const
std
::
map
<
size_t
,
std
::
vector
<
TypeId
>>
&
kernel_support_datatypes
,
...
...
@@ -329,7 +326,7 @@ bool RaiseOrReduceDataTypePrecisionSelect(const std::vector<int> &node_mix_preci
if
(
i
>=
datatype_indexes
.
size
())
{
MS_LOG
(
EXCEPTION
)
<<
"index "
<<
i
<<
"> kernel datatype indexes size "
<<
datatype_indexes
.
size
();
}
if
(
datatype_indexes
[
i
]
==
kUnSupportMixedDataTypeIndex
)
{
if
(
!
CanDataTypeReduce
(
datatype_indexes
,
i
,
node_mix_precision_datatype_index
)
)
{
iter
=
kernel_match_datatype_idx
->
erase
(
iter
);
}
else
{
++
iter
;
...
...
@@ -376,6 +373,7 @@ void PrecisionReduce(const std::vector<int> &node_mix_precision_datatype_index,
bool
selected_ret
=
RaiseDataTypePrecisionSelect
(
node_mix_precision_datatype_index
,
node_mix_precision_datatype
,
kernel_support_datatype
,
kernel_match_datatype_idx
);
if
(
selected_ret
)
{
*
precision_reduce
=
false
;
return
;
}
if
(
context_ptr
->
enable_reduce_precision
())
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录