Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
magicwindyyd
mindspore
提交
afe04847
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看板
提交
afe04847
编写于
5月 06, 2020
作者:
M
mindspore-ci-bot
提交者:
Gitee
5月 06, 2020
浏览文件
操作
浏览文件
下载
差异文件
!919 fix pytest failed when one case compile error
Merge pull request !919 from jjfeing/master
上级
e983e73a
34c221ff
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
23 addition
and
1 deletion
+23
-1
mindspore/_extends/parallel_compile/tbe_compiler/tbe_process.py
...ore/_extends/parallel_compile/tbe_compiler/tbe_process.py
+7
-0
mindspore/ccsrc/kernel/tbe/tbe_kernel_parallel_build.cc
mindspore/ccsrc/kernel/tbe/tbe_kernel_parallel_build.cc
+14
-0
mindspore/ccsrc/kernel/tbe/tbe_kernel_parallel_build.h
mindspore/ccsrc/kernel/tbe/tbe_kernel_parallel_build.h
+2
-1
未找到文件。
mindspore/_extends/parallel_compile/tbe_compiler/tbe_process.py
浏览文件 @
afe04847
...
...
@@ -161,5 +161,12 @@ class CompilerPool:
ret
=
task_id
,
"Exception: Not support return type:"
+
str
(
ret_type
)
return
ret
def
reset_task_info
(
self
):
"""
reset task info when task compile error
"""
if
self
.
__running_tasks
:
self
.
__running_tasks
.
clear
()
compile_pool
=
CompilerPool
()
mindspore/ccsrc/kernel/tbe/tbe_kernel_parallel_build.cc
浏览文件 @
afe04847
...
...
@@ -40,6 +40,7 @@ constexpr auto kParallelCompileModule = "mindspore._extends.parallel_compile.tbe
constexpr
auto
kCreateParallelCompiler
=
"create_tbe_parallel_compiler"
;
constexpr
auto
kStartCompileOp
=
"start_compile_op"
;
constexpr
auto
kWaitOne
=
"wait_one"
;
constexpr
auto
kResetTaskInfo
=
"reset_task_info"
;
bool
TbeOpParallelBuild
(
std
::
vector
<
AnfNodePtr
>
anf_nodes
)
{
auto
build_manger
=
std
::
make_shared
<
ParallelBuildManager
>
();
...
...
@@ -96,6 +97,8 @@ bool TbeOpParallelBuild(std::vector<AnfNodePtr> anf_nodes) {
ParallelBuildManager
::
ParallelBuildManager
()
{
tbe_parallel_compiler_
=
TbePythonFuncs
::
TbeParallelCompiler
();
}
ParallelBuildManager
::~
ParallelBuildManager
()
{
ResetTaskInfo
();
}
int32_t
ParallelBuildManager
::
StartCompileOp
(
const
nlohmann
::
json
&
kernel_json
)
const
{
PyObject
*
pRes
=
nullptr
;
PyObject
*
pArgs
=
PyTuple_New
(
1
);
...
...
@@ -234,5 +237,16 @@ KernelModPtr ParallelBuildManager::GenKernelMod(const string &json_name, const s
kernel_mod_ptr
->
SetWorkspaceSizeList
(
kernel_json_info
.
workspaces
);
return
kernel_mod_ptr
;
}
void
ParallelBuildManager
::
ResetTaskInfo
()
{
if
(
task_map_
.
empty
())
{
MS_LOG
(
INFO
)
<<
"All tasks are compiled success."
;
return
;
}
task_map_
.
clear
();
same_op_list_
.
clear
();
PyObject
*
pArg
=
Py_BuildValue
(
"()"
);
(
void
)
PyObject_CallMethod
(
tbe_parallel_compiler_
,
kResetTaskInfo
,
"O"
,
pArg
);
}
}
// namespace kernel
}
// namespace mindspore
mindspore/ccsrc/kernel/tbe/tbe_kernel_parallel_build.h
浏览文件 @
afe04847
...
...
@@ -40,7 +40,7 @@ struct KernelBuildTaskInfo {
class
ParallelBuildManager
{
public:
ParallelBuildManager
();
~
ParallelBuildManager
()
=
default
;
~
ParallelBuildManager
();
int32_t
StartCompileOp
(
const
nlohmann
::
json
&
kernel_json
)
const
;
void
SaveTaskInfo
(
int32_t
task_id
,
const
AnfNodePtr
&
anf_node
,
const
std
::
string
&
json_name
,
const
std
::
vector
<
size_t
>
&
input_size_list
,
const
std
::
vector
<
size_t
>
&
output_size_list
,
...
...
@@ -58,6 +58,7 @@ class ParallelBuildManager {
KernelModPtr
GenKernelMod
(
const
string
&
json_name
,
const
string
&
processor
,
const
std
::
vector
<
size_t
>
&
input_size_list
,
const
std
::
vector
<
size_t
>
&
output_size_list
,
const
KernelPackPtr
&
kernel_pack
)
const
;
void
ResetTaskInfo
();
private:
PyObject
*
tbe_parallel_compiler_
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录