Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MegEngine 天元
MegEngine
提交
ce119ef5
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看板
提交
ce119ef5
编写于
12月 20, 2021
作者:
M
Megvii Engine Team
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(lite): fix lite error when record level is 2
GitOrigin-RevId: 7dabfd8876f5c6b3004db1fea6faa8d5152066bd
上级
643ab1c1
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
22 addition
and
1 deletion
+22
-1
lite/src/mge/network_impl.cpp
lite/src/mge/network_impl.cpp
+4
-0
lite/test/test_network_options.cpp
lite/test/test_network_options.cpp
+17
-0
src/core/impl/graph/cg_impl.cpp
src/core/impl/graph/cg_impl.cpp
+1
-1
未找到文件。
lite/src/mge/network_impl.cpp
浏览文件 @
ce119ef5
...
...
@@ -436,6 +436,10 @@ void NetworkImplDft::start() const {
void
NetworkImplDft
::
forward
()
{
start
();
if
(
m_load_config
.
comp_graph
&&
m_user_config
->
options
.
comp_node_seq_record_level
==
2
)
{
m_load_config
.
comp_graph
.
reset
();
}
LITE_ASSERT
(
m_execute_func
,
"forward must be called after network loaded."
);
m_execute_func
->
execute
();
}
...
...
lite/test/test_network_options.cpp
浏览文件 @
ce119ef5
...
...
@@ -89,6 +89,23 @@ TEST(TestNetWorkOptions, const_shape) {
compare_lite_tensor
<
float
>
(
output_tensor
,
result_mgb
);
}
TEST
(
TestNetWorkOptions
,
record2
)
{
Config
config
;
std
::
string
model_path
=
"./shufflenet.mge"
;
config
.
options
.
var_sanity_check_first_run
=
false
;
config
.
options
.
const_shape
=
true
;
config
.
options
.
comp_node_seq_record_level
=
2
;
std
::
shared_ptr
<
Network
>
network
=
std
::
make_shared
<
Network
>
(
config
);
network
->
load_model
(
model_path
);
for
(
int
i
=
0
;
i
<
3
;
i
++
)
{
network
->
forward
();
network
->
wait
();
}
}
TEST
(
TestNetWorkOptions
,
NCHW44
)
{
Config
config
;
auto
tensor
=
get_input_data
(
"./input_data.npy"
);
...
...
src/core/impl/graph/cg_impl.cpp
浏览文件 @
ce119ef5
...
...
@@ -126,7 +126,7 @@ ComputingGraph::ComputingGraph() {
void
ComputingGraph
::
assert_destroy
(
std
::
shared_ptr
<
ComputingGraph
>&
ptr
)
{
mgb_assert
(
ptr
.
use_count
()
==
1
,
"unexpected use_count: %zu"
,
size_t
(
ptr
.
use_count
()));
ptr
.
use_count
()
<=
2
,
"unexpected use_count: %zu"
,
size_t
(
ptr
.
use_count
()));
ptr
.
reset
();
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录