Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
bf9ed22c
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看板
未验证
提交
bf9ed22c
编写于
5月 13, 2020
作者:
H
huzhiqiang
提交者:
GitHub
5月 13, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[Opt][Python][Framework] Add opt scripts for python installing package (#3612)
上级
ca51f68f
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
138 addition
and
7 deletion
+138
-7
lite/api/opt_base.cc
lite/api/opt_base.cc
+29
-2
lite/api/opt_base.h
lite/api/opt_base.h
+4
-1
lite/api/python/bin/paddle_lite_opt
lite/api/python/bin/paddle_lite_opt
+91
-0
lite/api/python/pybind/pybind.cc
lite/api/python/pybind/pybind.cc
+4
-2
lite/api/python/setup.py.in
lite/api/python/setup.py.in
+6
-1
lite/api/python/setup_mac.py.in
lite/api/python/setup_mac.py.in
+4
-1
未找到文件。
lite/api/opt_base.cc
浏览文件 @
bf9ed22c
...
...
@@ -82,7 +82,7 @@ void OptBase::SetValidPlaces(const std::string& valid_places) {
"command argument 'valid_targets'"
;
}
void
OptBase
::
Set
Lit
eOut
(
const
std
::
string
&
lite_out_name
)
{
void
OptBase
::
Set
Optimiz
eOut
(
const
std
::
string
&
lite_out_name
)
{
lite_out_name_
=
lite_out_name
;
}
...
...
@@ -116,7 +116,7 @@ void OptBase::RunOptimize(const std::string& model_dir_path,
SetModelFile
(
model_path
);
SetParamFile
(
param_path
);
SetValidPlaces
(
valid_places
);
Set
Lit
eOut
(
optimized_out_path
);
Set
Optimiz
eOut
(
optimized_out_path
);
CheckIfModelSupported
(
false
);
OpKernelInfoCollector
::
Global
().
SetKernel2path
(
kernel2path_map
);
opt_config_
.
set_valid_places
(
valid_places_
);
...
...
@@ -248,6 +248,33 @@ void OptBase::PrintHelpInfo() {
"-----------------------------------------------------------
\n
"
;
std
::
cout
<<
"opt version:"
<<
opt_version
<<
std
::
endl
<<
help_info
;
}
void
OptBase
::
PrintExecutableBinHelpInfo
()
{
const
std
::
string
opt_version
=
lite
::
version
();
const
char
help_info
[]
=
"At least one argument should be inputed. Valid arguments are listed "
"below:
\n
"
" Arguments of model optimization:
\n
"
" `--model_dir=<model_param_dir>`
\n
"
" `--model_file=<model_path>`
\n
"
" `--param_file=<param_path>`
\n
"
" `--optimize_out_type=(protobuf|naive_buffer)`
\n
"
" `--optimize_out=<output_optimize_model_dir>`
\n
"
" `--valid_targets=(arm|opencl|x86|npu|xpu)`
\n
"
" `--record_tailoring_info=(true|false)`
\n
"
" Arguments of model checking and ops information:
\n
"
" `--print_all_ops=true` Display all the valid operators of "
"Paddle-Lite
\n
"
" `--print_supported_ops=true "
"--valid_targets=(arm|opencl|x86|npu|xpu)`"
" Display valid operators of input targets
\n
"
" `--print_model_ops=true --model_dir=<model_param_dir> "
"--valid_targets=(arm|opencl|x86|npu|xpu)`"
" Display operators in the input model
\n
"
;
std
::
cout
<<
"paddlelite opt version:"
<<
opt_version
<<
std
::
endl
<<
help_info
<<
std
::
endl
;
}
// 2. Print supported info of inputed ops
void
OptBase
::
PrintOpsInfo
(
const
std
::
set
<
std
::
string
>&
valid_ops
)
{
std
::
vector
<
std
::
string
>
lite_supported_targets
=
{
"kHost"
,
...
...
lite/api/opt_base.h
浏览文件 @
bf9ed22c
...
...
@@ -48,7 +48,7 @@ class LITE_API OptBase {
void
SetModelFile
(
const
std
::
string
&
model_path
);
void
SetParamFile
(
const
std
::
string
&
param_path
);
void
SetValidPlaces
(
const
std
::
string
&
valid_places
);
void
Set
Lit
eOut
(
const
std
::
string
&
lite_out_name
);
void
Set
Optimiz
eOut
(
const
std
::
string
&
lite_out_name
);
void
RecordModelInfo
(
bool
record_strip_info
=
true
);
// set optimized_model type
void
SetModelType
(
std
::
string
model_type
);
...
...
@@ -61,7 +61,10 @@ class LITE_API OptBase {
const
std
::
string
&
optimized_out_path
=
""
);
// fuctions of printing info
// 1. help info
// 1.1 Print help info for opt python api
void
PrintHelpInfo
();
// 1.2 Print help info for executable opt bin
void
PrintExecutableBinHelpInfo
();
// 2. PrintOpsInfo
void
PrintOpsInfo
(
const
std
::
set
<
std
::
string
>
&
valid_ops
=
{});
// print supported ops on target_types
...
...
lite/api/python/bin/paddle_lite_opt
0 → 100644
浏览文件 @
bf9ed22c
#
!/usr/bin/env python
#
Copyright
@
2020
Baidu
.
All
rights
reserved
.
""" python wrapper file for Paddle-Lite opt tool """
from
__future__
import
print_function
import
paddlelite
.
lite
as
lite
import
argparse
def
main
():
""" main funcion """
a
=
lite
.
Opt
()
parser
=
argparse
.
ArgumentParser
()
parser
.
add_argument
(
"--model_dir"
,
type
=
str
,
required
=
False
,\
help
=
"path of the model. This option will be ignored if model_file and param_file exist"
)
parser
.
add_argument
(
"--model_file"
,
type
=
str
,
required
=
False
,\
help
=
"model file path of the combined-param model."
)
parser
.
add_argument
(
"--param_file"
,
type
=
str
,
required
=
False
,\
help
=
"param file path of the combined-param model."
)
parser
.
add_argument
(
"--optimize_out_type"
,
type
=
str
,
required
=
False
,
default
=
"naive_buffer"
,\
choices
=[
'protobuf'
,
'naive_buffer'
],
\
help
=
"store type of the output optimized model. protobuf/naive_buffer."
)
parser
.
add_argument
(
"--optimize_out"
,
type
=
str
,
required
=
False
,\
help
=
"path of the output optimized model"
)
parser
.
add_argument
(
"--valid_targets"
,
type
=
str
,
required
=
False
,
default
=
"arm"
,\
help
=
"The targets this model optimized for, should be one of (arm,opencl, x86), splitted by space."
)
#
arguments
of
help
information
parser
.
add_argument
(
"--print_supported_ops"
,
type
=
str
,
default
=
"false"
,\
help
=
"{true, false}\
Print supported operators on the inputed target"
)
parser
.
add_argument
(
"--print_all_ops"
,
type
=
str
,
default
=
"false"
,\
help
=
"{true, false}\
Print all the valid operators of Paddle-Lite"
)
parser
.
add_argument
(
"--print_model_ops"
,
type
=
str
,
default
=
"false"
,\
help
=
"{true, false}\
Print operators in the input model"
)
parser
.
add_argument
(
"--display_kernels"
,
type
=
str
,
default
=
"false"
,\
help
=
"{true, false}\
Display kernel information"
)
#
arguments
of
strip
lib
according
to
input
model
parser
.
add_argument
(
"--record_tailoring_info"
,
type
=
str
,
default
=
"false"
,\
help
=
"{true, false}\
Record kernels and operators information of the optimized model \
for tailoring compiling, information are stored into optimized \
model path as hidden files"
)
parser
.
add_argument
(
"--model_set"
,
type
=
str
,
required
=
False
,\
help
=
"path of the models set. This option will be used to specific \
tailoring"
)
args
=
parser
.
parse_args
()
""" input opt params """
if
args
.
model_dir
is
not
None
:
a
.
set_model_dir
(
args
.
model_dir
)
if
args
.
model_set
is
not
None
:
a
.
set_modelset_dir
(
args
.
model_set
)
if
args
.
model_file
is
not
None
:
a
.
set_model_file
(
args
.
model_file
)
if
args
.
param_file
is
not
None
:
a
.
set_param_file
(
args
.
param_file
)
if
args
.
optimize_out_type
is
not
None
:
a
.
set_model_type
(
args
.
optimize_out_type
)
if
args
.
optimize_out
is
not
None
:
a
.
set_optimize_out
(
args
.
optimize_out
)
if
args
.
valid_targets
is
not
None
:
a
.
set_valid_places
(
args
.
valid_targets
)
if
args
.
param_file
is
not
None
:
a
.
set_param_file
(
args
.
param_file
)
if
args
.
record_tailoring_info
==
"true"
:
a
.
record_model_info
(
True
)
""" print ops info """
if
args
.
print_all_ops
==
"true"
:
a
.
print_all_ops
()
return
0
if
args
.
print_supported_ops
==
"true"
:
a
.
print_supported_ops
()
return
0
if
args
.
display_kernels
==
"true"
:
a
.
display_kernels_info
()
return
0
if
args
.
print_model_ops
==
"true"
:
a
.
check_if_model_supported
(
True
);
return
0
if
((
args
.
model_dir
is
None
)
and
(
args
.
model_file
is
None
or
args
.
param_file
is
None
)
and
(
args
.
model_set
is
None
))
or
(
args
.
optimize_out
is
None
):
a
.
executablebin_help
()
return
1
else
:
a
.
run
()
return
0
if
__name__
==
"__main__"
:
main
()
lite/api/python/pybind/pybind.cc
浏览文件 @
bf9ed22c
...
...
@@ -62,15 +62,17 @@ void BindLiteOpt(py::module *m) {
.
def
(
"set_model_file"
,
&
OptBase
::
SetModelFile
)
.
def
(
"set_param_file"
,
&
OptBase
::
SetParamFile
)
.
def
(
"set_valid_places"
,
&
OptBase
::
SetValidPlaces
)
.
def
(
"set_
lite_out"
,
&
OptBase
::
SetLit
eOut
)
.
def
(
"set_
optimize_out"
,
&
OptBase
::
SetOptimiz
eOut
)
.
def
(
"set_model_type"
,
&
OptBase
::
SetModelType
)
.
def
(
"record_model_info"
,
&
OptBase
::
RecordModelInfo
)
.
def
(
"run"
,
&
OptBase
::
Run
)
.
def
(
"run_optimize"
,
&
OptBase
::
RunOptimize
)
.
def
(
"help"
,
&
OptBase
::
PrintHelpInfo
)
.
def
(
"executablebin_help"
,
&
OptBase
::
PrintExecutableBinHelpInfo
)
.
def
(
"print_supported_ops"
,
&
OptBase
::
PrintSupportedOps
)
.
def
(
"display_kernels_info"
,
&
OptBase
::
DisplayKernelsInfo
)
.
def
(
"print_all_ops"
,
&
OptBase
::
PrintAllOps
);
.
def
(
"print_all_ops"
,
&
OptBase
::
PrintAllOps
)
.
def
(
"check_if_model_supported"
,
&
OptBase
::
CheckIfModelSupported
);
}
#endif
static
void
BindLiteLightPredictor
(
py
::
module
*
m
);
...
...
lite/api/python/setup.py.in
浏览文件 @
bf9ed22c
...
...
@@ -41,6 +41,10 @@ for file in files:
break
LITE_PATH = INFERENCE_LITE_LIB_PATH + '/python/install/lite'
PACKAGE_DATA = {'paddlelite': ['lite.so' if os.name!='nt' else 'lite.pyd']}
# copy scripts of paddlelite
shutil.copy('${PADDLE_SOURCE_DIR}/lite/api/python/bin/paddle_lite_opt', LITE_PATH)
# put all thirdparty libraries in paddlelite.libs
PACKAGE_DATA['paddlelite.libs'] = []
LIB_PATH = INFERENCE_LITE_LIB_PATH + '/python/install/libs/'
...
...
@@ -55,7 +59,7 @@ if '${WITH_MKL}' == 'ON':
PACKAGE_DATA['paddlelite.libs'] += ['msvcr120.dll']
# link lite.so to paddlelite.libs
if os.name != 'nt':
COMMAND = "patchelf --set-rpath '$ORIGIN/
../
libs/' " + LITE_PATH + "/lite.so"
COMMAND = "patchelf --set-rpath '$ORIGIN/libs/' " + LITE_PATH + "/lite.so"
if os.system(COMMAND) != 0:
raise Exception("patch third_party libs failed, command: %s" % COMMAND)
...
...
@@ -85,6 +89,7 @@ setup(
name='paddlelite',
version=PADDLELITE_VERSION,
description='Paddle-Lite Library',
scripts=['lite/paddle_lite_opt'],
packages=['paddlelite', 'paddlelite.libs'],
package_dir=PACKAGE_DIR,
package_data=PACKAGE_DATA,
...
...
lite/api/python/setup_mac.py.in
浏览文件 @
bf9ed22c
...
...
@@ -35,6 +35,8 @@ else:
# core lib of paddlelite is stored as lite.so
LITE_PATH = '${PADDLE_BINARY_DIR}/inference_lite_lib/python/install/lite'
PACKAGE_DATA = {'paddlelite': ['lite.so']}
# copy scripts of paddlelite
shutil.copy('${PADDLE_SOURCE_DIR}/lite/api/python/bin/paddle_lite_opt', LITE_PATH)
# put all thirdparty libraries in paddlelite.libs
PACKAGE_DATA['paddlelite.libs'] = []
LIB_PATH = '${PADDLE_BINARY_DIR}/inference_lite_lib/python/install/libs'
...
...
@@ -45,7 +47,7 @@ if '${WITH_MKL}' == 'ON':
PACKAGE_DATA['paddlelite.libs'] += ['libmklml.dylib', 'libiomp5.dylib']
# link lite.so to paddlelite.libs
COMMAND = "install_name_tool -id \"@loader_path/
../
libs/\" ${PADDLE_BINARY_DIR}\
COMMAND = "install_name_tool -id \"@loader_path/libs/\" ${PADDLE_BINARY_DIR}\
/inference_lite_lib/python/install/lite/lite.so"
if os.system(COMMAND) != 0:
raise Exception("patch third_party libs failed, command: %s" % COMMAND)
...
...
@@ -66,6 +68,7 @@ setup(
name='paddlelite',
version=PADDLELITE_VERSION,
description='Paddle-Lite Library',
scripts=['lite/paddle_lite_opt'],
packages=['paddlelite', 'paddlelite.libs'],
package_dir=PACKAGE_DIR,
package_data=PACKAGE_DATA,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录