Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MegEngine 天元
MegEngine
提交
cfad9a5d
MegEngine
项目概览
MegEngine 天元
/
MegEngine
大约 1 年 前同步成功
通知
399
Star
4705
Fork
582
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
MegEngine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
cfad9a5d
编写于
12月 03, 2021
作者:
M
Megvii Engine Team
提交者:
XindaH
12月 16, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(mgb/cambricon): fix magicmind runtime opr when set workspace point second time
GitOrigin-RevId: 1ac9d0eabad312dcbcffacd7f35522a37884ddb3
上级
262e124b
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
16 addition
and
4 deletion
+16
-4
src/cambricon/impl/magicmind_runtime_opr.cpp
src/cambricon/impl/magicmind_runtime_opr.cpp
+14
-4
src/cambricon/include/megbrain/cambricon/magicmind_runtime_opr.h
...bricon/include/megbrain/cambricon/magicmind_runtime_opr.h
+1
-0
src/cambricon/test/magicmind_runtime_opr.cpp
src/cambricon/test/magicmind_runtime_opr.cpp
+1
-0
未找到文件。
src/cambricon/impl/magicmind_runtime_opr.cpp
浏览文件 @
cfad9a5d
...
...
@@ -168,7 +168,8 @@ MagicMindRuntimeOpr::MagicMindRuntimeOpr(
m_allocator
{
std
::
move
(
allocator
)},
m_engine
{
nullptr
},
m_context
{
nullptr
},
m_model
{
std
::
move
(
model
)}
{
m_model
{
std
::
move
(
model
)},
m_current_ptr
{
nullptr
}
{
mgb_assert
(
inputs
[
0
]
->
comp_node
().
device_type
()
==
CompNode
::
DeviceType
::
CAMBRICON
,
"MagicMindRuntimeOpr can only be used on cambricon comp node; "
...
...
@@ -230,8 +231,18 @@ void MagicMindRuntimeOpr::scn_do_execute() {
MM_CHECK
(
tensor
->
SetDimensions
(
mgb_shape_to_mm_dims
(
output
(
i
)
->
shape
())));
MM_CHECK
(
tensor
->
SetData
(
output
(
i
)
->
dev_tensor
().
raw_ptr
()));
}
auto
size
=
output
().
back
()
->
dev_tensor
().
layout
().
span
().
dist_byte
();
MM_CHECK
(
m_context
->
SetWorkspace
(
output
().
back
()
->
dev_tensor
().
raw_ptr
(),
size
));
if
(
m_current_ptr
==
nullptr
)
{
auto
size
=
output
().
back
()
->
dev_tensor
().
layout
().
span
().
dist_byte
();
m_current_ptr
=
output
().
back
()
->
dev_tensor
().
raw_ptr
();
MM_CHECK
(
m_context
->
SetWorkspace
(
m_current_ptr
,
size
));
}
else
{
auto
current_ptr
=
output
().
back
()
->
dev_tensor
().
raw_ptr
();
mgb_assert
(
current_ptr
==
m_current_ptr
,
"workspace has been changed, the execution context should be "
"reconstructed, but now this is not supported (got:%p,prev:%p)"
,
current_ptr
,
m_current_ptr
);
}
MM_CHECK
(
m_context
->
Enqueue
(
inputs
,
outputs
,
cnrt_env
.
queue
));
for
(
auto
&&
i
:
inputs
)
{
i
->
Destroy
();
...
...
@@ -293,7 +304,6 @@ void MagicMindRuntimeOpr::get_output_var_shape(
false
,
"static shape infer for MagicMindRuntimeOpr(%s) failed"
,
cname
());
}
return
;
for
(
auto
&&
i
:
inputs
)
{
i
->
Destroy
();
}
...
...
src/cambricon/include/megbrain/cambricon/magicmind_runtime_opr.h
浏览文件 @
cfad9a5d
...
...
@@ -93,6 +93,7 @@ private:
IEnginePtr
m_engine
;
mutable
IContextPtr
m_context
;
IModelPtr
m_model
;
dt_byte
*
m_current_ptr
;
};
}
// namespace opr
...
...
src/cambricon/test/magicmind_runtime_opr.cpp
浏览文件 @
cfad9a5d
...
...
@@ -642,6 +642,7 @@ TEST(TestMagicMindRuntimeOpr, GraphShapeMutable) {
auto
func
=
graph
->
compile
(
{
make_callback_copy
(
out1
,
o1
),
make_callback_copy
(
out2
,
o2
)});
func
->
execute
();
func
->
execute
();
HostTensorND
o1_mm
(
cn
,
mkshp
(
no
,
co
,
ho
,
wo
),
dtype
::
Float32
()),
o2_mm
(
cn
,
mkshp
(
no
,
co
,
ho
,
wo
),
dtype
::
Float32
());
std
::
memcpy
(
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录