Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
magicwindyyd
mindspore
提交
ea9b5468
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看板
提交
ea9b5468
编写于
7月 10, 2020
作者:
W
WilliamLian
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix bug of hccl kernel info
上级
82b4cada
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
21 addition
and
3 deletion
+21
-3
mindspore/ccsrc/kernel/hccl/hccl_kernel_metadata.cc
mindspore/ccsrc/kernel/hccl/hccl_kernel_metadata.cc
+20
-2
tests/st/pynative/test_pynative_resnet50.py
tests/st/pynative/test_pynative_resnet50.py
+1
-1
未找到文件。
mindspore/ccsrc/kernel/hccl/hccl_kernel_metadata.cc
浏览文件 @
ea9b5468
...
...
@@ -16,12 +16,30 @@
#include "kernel/hccl/hccl_kernel_metadata.h"
#include <memory>
#include <set>
#include "utils/utils.h"
#include "kernel/hccl/hcom_util.h"
#include "session/anf_runtime_algorithm.h"
namespace
mindspore
{
namespace
kernel
{
namespace
{
std
::
string
GetKernelFormat
(
const
CNodePtr
&
kernel_node
,
size_t
index
)
{
const
std
::
set
<
std
::
string
>
kReduceNoSupportedSet
=
{
kOpFormat_FRAC_Z
,
kOpFormat_FRACTAL_Z_C04
,
kOpFormat_C1HWNCoC0
};
auto
op_name
=
AnfAlgo
::
GetCNodeName
(
kernel_node
);
auto
format
=
AnfAlgo
::
GetPrevNodeOutputFormat
(
kernel_node
,
index
);
if
(
op_name
!=
kReduceScatter
&&
op_name
!=
kAllGatherOpName
)
{
return
format
;
}
if
(
format
==
kOpFormat_FRAC_NZ
&&
AnfAlgo
::
GetPrevNodeOutputInferShape
(
kernel_node
,
index
).
size
()
<=
2
)
{
return
kOpFormat_DEFAULT
;
}
if
(
kReduceNoSupportedSet
.
find
(
format
)
!=
kReduceNoSupportedSet
.
end
())
{
return
kOpFormat_DEFAULT
;
}
return
format
;
}
}
// namespace
void
HcclMetadataInfo
(
const
CNodePtr
&
kernel_node
,
std
::
vector
<
std
::
shared_ptr
<
KernelBuildInfo
>>
*
kernel_info_list
)
{
const
std
::
vector
<
TypeId
>
kHcclSupportTypes
=
{
kNumberTypeInt8
,
kNumberTypeInt32
,
kNumberTypeFloat16
,
kNumberTypeFloat32
,
kNumberTypeInt16
};
...
...
@@ -36,13 +54,13 @@ void HcclMetadataInfo(const CNodePtr &kernel_node, std::vector<std::shared_ptr<K
std
::
vector
<
std
::
string
>
inputs_format
{};
std
::
vector
<
TypeId
>
inputs_type
{};
for
(
size_t
input_index
=
0
;
input_index
<
AnfAlgo
::
GetInputTensorNum
(
kernel_node
);
++
input_index
)
{
inputs_format
.
emplace_back
(
AnfAlgo
::
GetPrevNodeOutput
Format
(
kernel_node
,
input_index
));
inputs_format
.
emplace_back
(
GetKernel
Format
(
kernel_node
,
input_index
));
inputs_type
.
push_back
(
type
);
}
std
::
vector
<
std
::
string
>
outputs_format
;
std
::
vector
<
TypeId
>
outputs_type
;
for
(
size_t
output_index
=
0
;
output_index
<
AnfAlgo
::
GetOutputTensorNum
(
kernel_node
);
++
output_index
)
{
outputs_format
.
emplace_back
(
AnfAlgo
::
GetPrevNodeOutput
Format
(
kernel_node
,
output_index
));
outputs_format
.
emplace_back
(
GetKernel
Format
(
kernel_node
,
output_index
));
outputs_type
.
push_back
(
type
);
}
auto
builder
=
KernelBuildInfo
::
KernelBuildInfoBuilder
();
...
...
tests/st/pynative/test_pynative_resnet50.py
浏览文件 @
ea9b5468
...
...
@@ -428,5 +428,5 @@ def test_pynative_resnet50():
cost_time
=
end_time
-
start_time
print
(
"======step: "
,
step
,
" loss: "
,
loss_output
.
asnumpy
(),
" cost time: "
,
cost_time
)
if
step
>
1
:
assert
cost_time
<
0.
5
assert
cost_time
<
0.
3
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录