Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
63212541
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2299
Star
20931
Fork
5422
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
63212541
编写于
9月 07, 2020
作者:
W
Wilber
提交者:
GitHub
9月 07, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Refine python inference api (#26958)
上级
eb65877c
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
123 addition
and
1 deletion
+123
-1
paddle/fluid/inference/api/paddle_inference_api.h
paddle/fluid/inference/api/paddle_inference_api.h
+1
-1
paddle/fluid/pybind/inference_api.cc
paddle/fluid/pybind/inference_api.cc
+81
-0
python/paddle/fluid/inference/__init__.py
python/paddle/fluid/inference/__init__.py
+17
-0
python/paddle/fluid/inference/wrapper.py
python/paddle/fluid/inference/wrapper.py
+23
-0
python/setup.py.in
python/setup.py.in
+1
-0
未找到文件。
paddle/fluid/inference/api/paddle_inference_api.h
浏览文件 @
63212541
...
...
@@ -73,7 +73,7 @@ class PD_INFER_DECL Tensor {
class
PD_INFER_DECL
Predictor
{
public:
Predictor
()
=
de
fault
;
Predictor
()
=
de
lete
;
~
Predictor
()
{}
// Use for clone
explicit
Predictor
(
std
::
unique_ptr
<
paddle
::
PaddlePredictor
>&&
pred
)
...
...
paddle/fluid/pybind/inference_api.cc
浏览文件 @
63212541
...
...
@@ -60,6 +60,9 @@ void BindAnalysisConfig(py::module *m);
void
BindAnalysisPredictor
(
py
::
module
*
m
);
void
BindZeroCopyTensor
(
py
::
module
*
m
);
void
BindPaddlePassBuilder
(
py
::
module
*
m
);
void
BindPaddleInferPredictor
(
py
::
module
*
m
);
void
BindPaddleInferTensor
(
py
::
module
*
m
);
void
BindPredictorPool
(
py
::
module
*
m
);
#ifdef PADDLE_WITH_MKLDNN
void
BindMkldnnQuantizerConfig
(
py
::
module
*
m
);
...
...
@@ -139,6 +142,15 @@ void ZeroCopyTensorCreate(ZeroCopyTensor &tensor, // NOLINT
tensor
.
copy_from_cpu
(
static_cast
<
const
T
*>
(
data
.
data
()));
}
template
<
typename
T
>
void
PaddleInferTensorCreate
(
paddle_infer
::
Tensor
&
tensor
,
// NOLINT
py
::
array_t
<
T
>
data
)
{
std
::
vector
<
int
>
shape
;
std
::
copy_n
(
data
.
shape
(),
data
.
ndim
(),
std
::
back_inserter
(
shape
));
tensor
.
Reshape
(
std
::
move
(
shape
));
tensor
.
CopyFromCpu
(
static_cast
<
const
T
*>
(
data
.
data
()));
}
size_t
PaddleGetDTypeSize
(
PaddleDType
dt
)
{
size_t
size
{
0
};
switch
(
dt
)
{
...
...
@@ -183,6 +195,30 @@ py::array ZeroCopyTensorToNumpy(ZeroCopyTensor &tensor) { // NOLINT
return
array
;
}
py
::
array
PaddleInferTensorToNumpy
(
paddle_infer
::
Tensor
&
tensor
)
{
// NOLINT
py
::
dtype
dt
=
PaddleDTypeToNumpyDType
(
tensor
.
type
());
auto
tensor_shape
=
tensor
.
shape
();
py
::
array
::
ShapeContainer
shape
(
tensor_shape
.
begin
(),
tensor_shape
.
end
());
py
::
array
array
(
dt
,
std
::
move
(
shape
));
switch
(
tensor
.
type
())
{
case
PaddleDType
::
INT32
:
tensor
.
CopyToCpu
(
static_cast
<
int32_t
*>
(
array
.
mutable_data
()));
break
;
case
PaddleDType
::
INT64
:
tensor
.
CopyToCpu
(
static_cast
<
int64_t
*>
(
array
.
mutable_data
()));
break
;
case
PaddleDType
::
FLOAT32
:
tensor
.
CopyToCpu
<
float
>
(
static_cast
<
float
*>
(
array
.
mutable_data
()));
break
;
default:
PADDLE_THROW
(
platform
::
errors
::
Unimplemented
(
"Unsupported data type. Now only supports INT32, INT64 and "
"FLOAT32."
));
}
return
array
;
}
py
::
bytes
SerializePDTensorToBytes
(
PaddleTensor
&
tensor
)
{
// NOLINT
std
::
stringstream
ss
;
paddle
::
inference
::
SerializePDTensorToStream
(
&
ss
,
tensor
);
...
...
@@ -200,8 +236,11 @@ void BindInferenceApi(py::module *m) {
BindNativePredictor
(
m
);
BindAnalysisConfig
(
m
);
BindAnalysisPredictor
(
m
);
BindPaddleInferPredictor
(
m
);
BindZeroCopyTensor
(
m
);
BindPaddleInferTensor
(
m
);
BindPaddlePassBuilder
(
m
);
BindPredictorPool
(
m
);
#ifdef PADDLE_WITH_MKLDNN
BindMkldnnQuantizerConfig
(
m
);
#endif
...
...
@@ -209,8 +248,17 @@ void BindInferenceApi(py::module *m) {
&
paddle
::
CreatePaddlePredictor
<
AnalysisConfig
>
,
py
::
arg
(
"config"
));
m
->
def
(
"create_paddle_predictor"
,
&
paddle
::
CreatePaddlePredictor
<
NativeConfig
>
,
py
::
arg
(
"config"
));
m
->
def
(
"create_predictor"
,
[](
const
paddle_infer
::
Config
&
config
)
->
std
::
unique_ptr
<
paddle_infer
::
Predictor
>
{
auto
pred
=
std
::
unique_ptr
<
paddle_infer
::
Predictor
>
(
new
paddle_infer
::
Predictor
(
config
));
return
std
::
move
(
pred
);
});
m
->
def
(
"paddle_dtype_size"
,
&
paddle
::
PaddleDtypeSize
);
m
->
def
(
"paddle_tensor_to_bytes"
,
&
SerializePDTensorToBytes
);
m
->
def
(
"get_version"
,
&
paddle_infer
::
GetVersion
);
m
->
def
(
"get_num_bytes_of_data_type"
,
&
paddle_infer
::
GetNumBytesOfDataType
);
}
namespace
{
...
...
@@ -525,6 +573,19 @@ void BindAnalysisPredictor(py::module *m) {
py
::
arg
(
"dir"
));
}
void
BindPaddleInferPredictor
(
py
::
module
*
m
)
{
py
::
class_
<
paddle_infer
::
Predictor
>
(
*
m
,
"PaddleInferPredictor"
)
.
def
(
py
::
init
<
const
paddle_infer
::
Config
&>
())
.
def
(
"get_input_names"
,
&
paddle_infer
::
Predictor
::
GetInputNames
)
.
def
(
"get_output_names"
,
&
paddle_infer
::
Predictor
::
GetOutputNames
)
.
def
(
"get_input_handle"
,
&
paddle_infer
::
Predictor
::
GetInputHandle
)
.
def
(
"get_output_handle"
,
&
paddle_infer
::
Predictor
::
GetOutputHandle
)
.
def
(
"run"
,
&
paddle_infer
::
Predictor
::
Run
)
.
def
(
"clone"
,
&
paddle_infer
::
Predictor
::
Clone
)
.
def
(
"clear_intermediate_tensor"
,
&
paddle_infer
::
Predictor
::
ClearIntermediateTensor
);
}
void
BindZeroCopyTensor
(
py
::
module
*
m
)
{
py
::
class_
<
ZeroCopyTensor
>
(
*
m
,
"ZeroCopyTensor"
)
.
def
(
"reshape"
,
&
ZeroCopyTensor
::
Reshape
)
...
...
@@ -538,6 +599,26 @@ void BindZeroCopyTensor(py::module *m) {
.
def
(
"type"
,
&
ZeroCopyTensor
::
type
);
}
void
BindPaddleInferTensor
(
py
::
module
*
m
)
{
py
::
class_
<
paddle_infer
::
Tensor
>
(
*
m
,
"PaddleInferTensor"
)
.
def
(
"reshape"
,
&
paddle_infer
::
Tensor
::
Reshape
)
.
def
(
"copy_from_cpu"
,
&
PaddleInferTensorCreate
<
int32_t
>
)
.
def
(
"copy_from_cpu"
,
&
PaddleInferTensorCreate
<
int64_t
>
)
.
def
(
"copy_from_cpu"
,
&
PaddleInferTensorCreate
<
float
>
)
.
def
(
"copy_to_cpu"
,
&
PaddleInferTensorToNumpy
)
.
def
(
"shape"
,
&
paddle_infer
::
Tensor
::
shape
)
.
def
(
"set_lod"
,
&
paddle_infer
::
Tensor
::
SetLoD
)
.
def
(
"lod"
,
&
paddle_infer
::
Tensor
::
lod
)
.
def
(
"type"
,
&
paddle_infer
::
Tensor
::
type
);
}
void
BindPredictorPool
(
py
::
module
*
m
)
{
py
::
class_
<
paddle_infer
::
services
::
PredictorPool
>
(
*
m
,
"PredictorPool"
)
.
def
(
py
::
init
<
const
paddle_infer
::
Config
&
,
size_t
>
())
.
def
(
"retrive"
,
&
paddle_infer
::
services
::
PredictorPool
::
Retrive
,
py
::
return_value_policy
::
reference
);
}
void
BindPaddlePassBuilder
(
py
::
module
*
m
)
{
py
::
class_
<
PaddlePassBuilder
>
(
*
m
,
"PaddlePassBuilder"
)
.
def
(
py
::
init
<
const
std
::
vector
<
std
::
string
>
&>
())
...
...
python/paddle/fluid/inference/__init__.py
0 → 100644
浏览文件 @
63212541
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from
.wrapper
import
Config
,
DataType
,
PlaceType
,
PrecisionType
,
Tensor
,
Predictor
from
..core
import
create_predictor
,
get_version
,
get_num_bytes_of_data_type
,
PredictorPool
python/paddle/fluid/inference/wrapper.py
0 → 100644
浏览文件 @
63212541
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from
..core
import
AnalysisConfig
,
PaddleDType
,
PaddlePlace
from
..core
import
PaddleInferPredictor
,
PaddleInferTensor
DataType
=
PaddleDType
PlaceType
=
PaddlePlace
PrecisionType
=
AnalysisConfig
.
Precision
Config
=
AnalysisConfig
Tensor
=
PaddleInferTensor
Predictor
=
PaddleInferPredictor
python/setup.py.in
浏览文件 @
63212541
...
...
@@ -156,6 +156,7 @@ packages=['paddle',
'paddle.framework',
'paddle.jit',
'paddle.fluid',
'paddle.fluid.inference',
'paddle.fluid.dygraph',
'paddle.fluid.dygraph.dygraph_to_static',
'paddle.fluid.dygraph.amp',
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录