Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
f926fb40
P
Paddle-Lite
项目概览
PaddlePaddle
/
Paddle-Lite
通知
331
Star
4
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
271
列表
看板
标记
里程碑
合并请求
78
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle-Lite
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
271
Issue
271
列表
看板
标记
里程碑
合并请求
78
合并请求
78
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
f926fb40
编写于
1月 16, 2020
作者:
W
Wilber
提交者:
GitHub
1月 16, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
model_test support print intermediate tensor. test=develop (#2776)
test_model_bin support print intermediate tensor.
上级
7cea4e9e
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
24 addition
and
1 deletion
+24
-1
lite/api/model_test.cc
lite/api/model_test.cc
+24
-1
未找到文件。
lite/api/model_test.cc
浏览文件 @
f926fb40
...
...
@@ -13,6 +13,7 @@
// limitations under the License.
#include <gflags/gflags.h>
#include <sstream>
#include <string>
#include <vector>
#include "lite/api/paddle_api.h"
...
...
@@ -33,10 +34,10 @@ using paddle::lite::profile::Timer;
DEFINE_string
(
input_shape
,
"1,3,224,224"
,
"input shapes, separated by colon and comma"
);
DEFINE_bool
(
use_optimize_nb
,
false
,
"optimized & naive buffer model for mobile devices"
);
DEFINE_string
(
arg_name
,
""
,
"the arg name"
);
namespace
paddle
{
namespace
lite_api
{
...
...
@@ -123,6 +124,28 @@ void Run(const std::vector<std::vector<int64_t>>& input_shapes,
output_num
*=
output_shape
[
i
];
}
LOG
(
INFO
)
<<
"output_num: "
<<
output_num
;
// please turn off memory_optimize_pass to use this feature.
if
(
FLAGS_arg_name
!=
""
)
{
auto
arg_tensor
=
predictor
->
GetTensor
(
FLAGS_arg_name
);
auto
arg_shape
=
arg_tensor
->
shape
();
int
arg_num
=
1
;
std
::
ostringstream
os
;
os
<<
"{"
;
for
(
int
i
=
0
;
i
<
arg_shape
.
size
();
++
i
)
{
arg_num
*=
arg_shape
[
i
];
os
<<
arg_shape
[
i
]
<<
","
;
}
os
<<
"}"
;
float
sum
=
0.
;
std
::
ofstream
out
(
FLAGS_arg_name
+
".txt"
);
for
(
size_t
i
=
0
;
i
<
arg_num
;
++
i
)
{
sum
+=
arg_tensor
->
data
<
float
>
()[
i
];
out
<<
std
::
to_string
(
arg_tensor
->
data
<
float
>
()[
i
])
<<
"
\n
"
;
}
LOG
(
INFO
)
<<
FLAGS_arg_name
<<
" shape is "
<<
os
.
str
()
<<
", mean value is "
<<
sum
*
1.
/
arg_num
;
}
}
#endif
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录