Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
6d2b2a40
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看板
未验证
提交
6d2b2a40
编写于
9月 08, 2020
作者:
W
Wilber
提交者:
GitHub
9月 08, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[API] Refine tensor api. (#4231)
上级
944eb27b
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
132 addition
and
1 deletion
+132
-1
docs/api_reference/cxx_api_doc.md
docs/api_reference/cxx_api_doc.md
+76
-0
lite/api/paddle_api.cc
lite/api/paddle_api.cc
+13
-0
lite/api/paddle_api.h
lite/api/paddle_api.h
+7
-1
lite/api/paddle_api_test.cc
lite/api/paddle_api_test.cc
+36
-0
未找到文件。
docs/api_reference/cxx_api_doc.md
浏览文件 @
6d2b2a40
...
...
@@ -846,6 +846,43 @@ for (int i = 0; i < ShapeProduction(input_tensor->shape()); ++i) {
返回类型:
`T*`
### `ShareExternalMemory(data, memory_size, target)`
设置Tensor共享用户数据指针。注意:请保证数据指针在预测过程中处于有效状态。
示例:
```
c++
lite_api
::
CxxConfig
config
config
.
set_model_dir
(
FLAGS_model_dir
);
config
.
set_valid_places
({
Place
{
TARGET
(
kX86
),
PRECISION
(
kFloat
)},
Place
{
TARGET
(
kARM
),
PRECISION
(
kFloat
)},
});
auto
predictor
=
lite_api
::
CreatePaddlePredictor
(
config
);
auto
inputs
=
predictor
->
GetInputNames
();
auto
outputs
=
predictor
->
GetOutputNames
();
std
::
vector
<
float
>
external_data
(
100
*
100
,
0
);
auto
input_tensor
=
predictor
->
GetInputByName
(
inputs
[
0
]);
input_tensor
->
Resize
(
std
::
vector
<
int64_t
>
({
100
,
100
}));
size_t
memory_size
=
external_data
.
size
()
*
sizeof
(
float
);
input_tensor
->
ShareExternalMemory
(
static_cast
<
void
*>
(
external_data
.
data
()),
memory_size
,
config
.
valid_places
()[
0
].
target
);
predictor
->
Run
();
```
参数:
-
`data(void*)`
- 外部数据指针,请确保在预测过程中数据处于有效状态
-
`memory_size(size_t)`
- 外部数据所占字节大小
-
`target(TargetType)`
- 目标设备硬件类型,即数据所处设备类型
返回:
`None`
返回类型:
`void`
### `SetLoD(lod)`
...
...
@@ -872,3 +909,42 @@ for (int i = 0; i < ShapeProduction(input_tensor->shape()); ++i) {
返回:
`Tensor`
的LoD信息
返回类型:
`std::vector<std::vector<uint64_t>>`
### `precision()`
获取Tensor的精度信息
参数:
-
`None`
返回:
`Tensor`
的precision信息
返回类型:
`PrecisionType`
### `SetPrecision(precision)`
设置Tensor的精度信息
参数:
-
`precision(PrecisionType)`
- Tensor的precision信息
返回:
`None`
返回类型:
`void`
### `target()`
获取Tensor的数据所处设备信息
参数:
-
`None`
返回:
`Tensor`
的target信息
返回类型:
`TargetType`
lite/api/paddle_api.cc
浏览文件 @
6d2b2a40
...
...
@@ -83,6 +83,14 @@ const T *Tensor::data() const {
return
ctensor
(
raw_tensor_
)
->
data
<
T
>
();
}
void
Tensor
::
ShareExternalMemory
(
void
*
data
,
size_t
memory_size
,
TargetType
target
)
{
auto
buf
=
std
::
make_shared
<
lite
::
Buffer
>
(
lite
::
Buffer
(
data
,
target
,
memory_size
));
tensor
(
raw_tensor_
)
->
ResetBuffer
(
buf
,
memory_size
);
}
template
<
typename
T
>
T
*
Tensor
::
mutable_data
(
TargetType
type
)
const
{
return
tensor
(
raw_tensor_
)
->
mutable_data
<
T
>
(
type
);
...
...
@@ -93,6 +101,7 @@ template const int8_t *Tensor::data<int8_t>() const;
template
const
uint8_t
*
Tensor
::
data
<
uint8_t
>()
const
;
template
const
int64_t
*
Tensor
::
data
<
int64_t
>()
const
;
template
const
int32_t
*
Tensor
::
data
<
int32_t
>()
const
;
template
const
void
*
Tensor
::
data
<
void
>()
const
;
template
int
*
Tensor
::
mutable_data
(
TargetType
type
)
const
;
template
float
*
Tensor
::
mutable_data
(
TargetType
type
)
const
;
...
...
@@ -199,6 +208,10 @@ PrecisionType Tensor::precision() const {
return
precision
;
}
void
Tensor
::
SetPrecision
(
PrecisionType
precision
)
{
tensor
(
raw_tensor_
)
->
set_precision
(
precision
);
}
lod_t
Tensor
::
lod
()
const
{
return
ctensor
(
raw_tensor_
)
->
lod
();
}
void
Tensor
::
SetLoD
(
const
lod_t
&
lod
)
{
tensor
(
raw_tensor_
)
->
set_lod
(
lod
);
}
...
...
lite/api/paddle_api.h
浏览文件 @
6d2b2a40
...
...
@@ -49,6 +49,11 @@ struct LITE_API Tensor {
template
<
typename
T
>
T
*
mutable_data
(
TargetType
type
=
TargetType
::
kHost
)
const
;
// Share external memory. Note: ensure that the data pointer is in a valid
// state
// during the prediction process.
void
ShareExternalMemory
(
void
*
data
,
size_t
memory_size
,
TargetType
target
);
template
<
typename
T
,
TargetType
type
=
TargetType
::
kHost
>
void
CopyFromCpu
(
const
T
*
data
);
...
...
@@ -58,6 +63,7 @@ struct LITE_API Tensor {
shape_t
shape
()
const
;
TargetType
target
()
const
;
PrecisionType
precision
()
const
;
void
SetPrecision
(
PrecisionType
precision
);
// LoD of the tensor
lod_t
lod
()
const
;
...
...
@@ -153,7 +159,7 @@ class LITE_API ConfigBase {
}
// set Device ID
void
set_device_id
(
int
device_id
)
{
device_id_
=
device_id
;
}
const
int
get_device_id
()
const
{
return
device_id_
;
}
int
get_device_id
()
const
{
return
device_id_
;
}
};
/// CxxConfig is the config for the Full feature predictor.
...
...
lite/api/paddle_api_test.cc
浏览文件 @
6d2b2a40
...
...
@@ -68,6 +68,42 @@ TEST(CxxApi, run) {
FLAGS_model_dir
+
".opt2.naive"
,
LiteModelType
::
kNaiveBuffer
,
true
);
}
TEST
(
CxxApi
,
share_external_data
)
{
lite_api
::
CxxConfig
config
;
config
.
set_model_dir
(
FLAGS_model_dir
);
config
.
set_valid_places
({
Place
{
TARGET
(
kX86
),
PRECISION
(
kFloat
)},
Place
{
TARGET
(
kARM
),
PRECISION
(
kFloat
)},
});
auto
predictor
=
lite_api
::
CreatePaddlePredictor
(
config
);
auto
inputs
=
predictor
->
GetInputNames
();
auto
outputs
=
predictor
->
GetOutputNames
();
std
::
vector
<
float
>
external_data
(
100
*
100
);
for
(
int
i
=
0
;
i
<
100
*
100
;
i
++
)
{
external_data
[
i
]
=
i
;
}
auto
input_tensor
=
predictor
->
GetInputByName
(
inputs
[
0
]);
input_tensor
->
Resize
(
std
::
vector
<
int64_t
>
({
100
,
100
}));
size_t
memory_size
=
100
*
100
*
sizeof
(
float
);
input_tensor
->
ShareExternalMemory
(
static_cast
<
void
*>
(
external_data
.
data
()),
memory_size
,
config
.
valid_places
()[
0
].
target
);
predictor
->
Run
();
auto
output
=
predictor
->
GetTensor
(
outputs
[
0
]);
auto
*
out
=
output
->
data
<
float
>
();
LOG
(
INFO
)
<<
out
[
0
];
LOG
(
INFO
)
<<
out
[
1
];
EXPECT_NEAR
(
out
[
0
],
50.2132
,
1e-3
);
EXPECT_NEAR
(
out
[
1
],
-
28.8729
,
1e-3
);
}
// Demo1 for Mobile Devices :Load model from file and run
#ifdef LITE_WITH_LIGHT_WEIGHT_FRAMEWORK
TEST
(
LightApi
,
run
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录