Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
fecc52a4
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看板
提交
fecc52a4
编写于
3月 11, 2020
作者:
D
DannyIsFunny
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add GetParamNames() test=develop
上级
37fdb393
变更
5
显示空白变更内容
内联
并排
Showing
5 changed file
with
21 addition
and
0 deletion
+21
-0
lite/api/cxx_api.cc
lite/api/cxx_api.cc
+5
-0
lite/api/cxx_api.h
lite/api/cxx_api.h
+5
-0
lite/api/cxx_api_impl.cc
lite/api/cxx_api_impl.cc
+4
-0
lite/api/paddle_api.cc
lite/api/paddle_api.cc
+5
-0
lite/api/paddle_api.h
lite/api/paddle_api.h
+2
-0
未找到文件。
lite/api/cxx_api.cc
浏览文件 @
fecc52a4
...
@@ -150,6 +150,11 @@ std::vector<std::string> Predictor::GetInputNames() { return input_names_; }
...
@@ -150,6 +150,11 @@ std::vector<std::string> Predictor::GetInputNames() { return input_names_; }
// get outputnames
// get outputnames
std
::
vector
<
std
::
string
>
Predictor
::
GetOutputNames
()
{
return
output_names_
;
}
std
::
vector
<
std
::
string
>
Predictor
::
GetOutputNames
()
{
return
output_names_
;
}
// get param names
std
::
vector
<
std
::
string
>
Predictor
::
GetParamNames
()
{
return
exec_scope_
->
LocalVarNames
();
}
// append the names of inputs and outputs into input_names_ and output_names_
// append the names of inputs and outputs into input_names_ and output_names_
void
Predictor
::
PrepareFeedFetch
()
{
void
Predictor
::
PrepareFeedFetch
()
{
if
(
!
program_
)
{
if
(
!
program_
)
{
...
...
lite/api/cxx_api.h
浏览文件 @
fecc52a4
...
@@ -84,6 +84,9 @@ class LITE_API Predictor {
...
@@ -84,6 +84,9 @@ class LITE_API Predictor {
// get inputnames and get outputnames.
// get inputnames and get outputnames.
std
::
vector
<
std
::
string
>
GetInputNames
();
std
::
vector
<
std
::
string
>
GetInputNames
();
std
::
vector
<
std
::
string
>
GetOutputNames
();
std
::
vector
<
std
::
string
>
GetOutputNames
();
// get param names
std
::
vector
<
std
::
string
>
GetParamNames
();
void
PrepareFeedFetch
();
void
PrepareFeedFetch
();
// Get offset-th col of fetch results.
// Get offset-th col of fetch results.
...
@@ -144,6 +147,8 @@ class CxxPaddleApiImpl : public lite_api::PaddlePredictor {
...
@@ -144,6 +147,8 @@ class CxxPaddleApiImpl : public lite_api::PaddlePredictor {
// get inputs names and get outputs names
// get inputs names and get outputs names
std
::
vector
<
std
::
string
>
GetInputNames
()
override
;
std
::
vector
<
std
::
string
>
GetInputNames
()
override
;
std
::
vector
<
std
::
string
>
GetOutputNames
()
override
;
std
::
vector
<
std
::
string
>
GetOutputNames
()
override
;
// get param names
std
::
vector
<
std
::
string
>
GetParamNames
()
override
;
// get tensor according to tensor's name
// get tensor according to tensor's name
std
::
unique_ptr
<
const
lite_api
::
Tensor
>
GetTensor
(
std
::
unique_ptr
<
const
lite_api
::
Tensor
>
GetTensor
(
...
...
lite/api/cxx_api_impl.cc
浏览文件 @
fecc52a4
...
@@ -75,6 +75,10 @@ std::vector<std::string> CxxPaddleApiImpl::GetInputNames() {
...
@@ -75,6 +75,10 @@ std::vector<std::string> CxxPaddleApiImpl::GetInputNames() {
return
raw_predictor_
.
GetInputNames
();
return
raw_predictor_
.
GetInputNames
();
}
}
std
::
vector
<
std
::
string
>
CxxPaddleApiImpl
::
GetParamNames
()
{
return
raw_predictor_
.
GetParamNames
();
}
std
::
vector
<
std
::
string
>
CxxPaddleApiImpl
::
GetOutputNames
()
{
std
::
vector
<
std
::
string
>
CxxPaddleApiImpl
::
GetOutputNames
()
{
return
raw_predictor_
.
GetOutputNames
();
return
raw_predictor_
.
GetOutputNames
();
}
}
...
...
lite/api/paddle_api.cc
浏览文件 @
fecc52a4
...
@@ -173,6 +173,11 @@ std::unique_ptr<Tensor> PaddlePredictor::GetMutableTensor(
...
@@ -173,6 +173,11 @@ std::unique_ptr<Tensor> PaddlePredictor::GetMutableTensor(
return
nullptr
;
return
nullptr
;
}
}
std
::
vector
<
std
::
string
>
PaddlePredictor
::
GetParamNames
()
{
LOG
(
FATAL
)
<<
"The GetParamNames API is only supported by CxxConfig predictor."
;
}
void
PaddlePredictor
::
SaveOptimizedModel
(
const
std
::
string
&
model_dir
,
void
PaddlePredictor
::
SaveOptimizedModel
(
const
std
::
string
&
model_dir
,
LiteModelType
model_type
,
LiteModelType
model_type
,
bool
record_info
)
{
bool
record_info
)
{
...
...
lite/api/paddle_api.h
浏览文件 @
fecc52a4
...
@@ -86,6 +86,8 @@ class LITE_API PaddlePredictor {
...
@@ -86,6 +86,8 @@ class LITE_API PaddlePredictor {
virtual
std
::
vector
<
std
::
string
>
GetInputNames
()
=
0
;
virtual
std
::
vector
<
std
::
string
>
GetInputNames
()
=
0
;
// Get output names
// Get output names
virtual
std
::
vector
<
std
::
string
>
GetOutputNames
()
=
0
;
virtual
std
::
vector
<
std
::
string
>
GetOutputNames
()
=
0
;
// Get output names
virtual
std
::
vector
<
std
::
string
>
GetParamNames
();
// Get Input by name
// Get Input by name
virtual
std
::
unique_ptr
<
Tensor
>
GetInputByName
(
const
std
::
string
&
name
)
=
0
;
virtual
std
::
unique_ptr
<
Tensor
>
GetInputByName
(
const
std
::
string
&
name
)
=
0
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录