Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
7b2aa3fa
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看板
提交
7b2aa3fa
编写于
9月 16, 2019
作者:
H
huzhiqiang
提交者:
Yan Chunwei
9月 16, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add dynamic library for tiny and full publish (#2036) (#2045)
上级
e27e1b08
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
83 addition
and
0 deletion
+83
-0
lite/CMakeLists.txt
lite/CMakeLists.txt
+18
-0
lite/api/CMakeLists.txt
lite/api/CMakeLists.txt
+31
-0
lite/api/paddle_api_shared.cc
lite/api/paddle_api_shared.cc
+34
-0
未找到文件。
lite/CMakeLists.txt
浏览文件 @
7b2aa3fa
...
...
@@ -69,6 +69,7 @@ if (LITE_WITH_LIGHT_WEIGHT_FRAMEWORK AND LITE_WITH_ARM)
COMMAND cp
"
${
CMAKE_SOURCE_DIR
}
/lite/api/paddle_*.h"
"
${
INFER_LITE_PUBLISH_ROOT
}
/cxx/include"
COMMAND cp
"
${
CMAKE_BINARY_DIR
}
/libpaddle_api_full_bundled.a"
"
${
INFER_LITE_PUBLISH_ROOT
}
/cxx/lib"
COMMAND cp
"
${
CMAKE_BINARY_DIR
}
/libpaddle_api_light_bundled.a"
"
${
INFER_LITE_PUBLISH_ROOT
}
/cxx/lib"
COMMAND cp
"
${
CMAKE_BINARY_DIR
}
/lite/api/*.so"
"
${
INFER_LITE_PUBLISH_ROOT
}
/cxx/lib"
#COMMAND cp "${CMAKE_BINARY_DIR}/lite/api/model_optimize_tool" "${INFER_LITE_PUBLISH_ROOT}/bin"
COMMAND cp
"
${
CMAKE_BINARY_DIR
}
/lite/gen_code/paddle_code_generator"
"
${
INFER_LITE_PUBLISH_ROOT
}
/bin"
COMMAND cp
"
${
CMAKE_BINARY_DIR
}
/lite/api/test_model_bin"
"
${
INFER_LITE_PUBLISH_ROOT
}
/bin"
...
...
@@ -79,6 +80,11 @@ if (LITE_WITH_LIGHT_WEIGHT_FRAMEWORK AND LITE_WITH_ARM)
add_dependencies
(
publish_inference_cxx_lib bundle_full_api
)
add_dependencies
(
publish_inference_cxx_lib bundle_light_api
)
add_dependencies
(
publish_inference_cxx_lib test_model_bin
)
if
(
ARM_TARGET_OS STREQUAL
"android"
)
add_dependencies
(
publish_inference_cxx_lib paddle_api_full_shared
)
add_dependencies
(
publish_inference_cxx_lib paddle_api_light_shared
)
add_dependencies
(
publish_inference_cxx_lib paddle_cxx_api_shared
)
endif
()
add_dependencies
(
publish_inference publish_inference_cxx_lib
)
add_custom_command
(
TARGET publish_inference_cxx_lib POST_BUILD
COMMAND
${
CMAKE_STRIP
}
"--strip-debug"
${
INFER_LITE_PUBLISH_ROOT
}
/cxx/lib/*.a
)
...
...
@@ -93,6 +99,18 @@ if (LITE_WITH_LIGHT_WEIGHT_FRAMEWORK AND LITE_WITH_ARM)
)
add_dependencies
(
tiny_publish_lib bundle_light_api
)
add_dependencies
(
publish_inference tiny_publish_lib
)
else
()
if
(
ARM_TARGET_OS STREQUAL
"android"
)
add_custom_target
(
tiny_publish_cxx_lib
${
TARGET
}
COMMAND mkdir -p
"
${
INFER_LITE_PUBLISH_ROOT
}
/cxx"
COMMAND mkdir -p
"
${
INFER_LITE_PUBLISH_ROOT
}
/cxx/include"
COMMAND mkdir -p
"
${
INFER_LITE_PUBLISH_ROOT
}
/cxx/lib"
COMMAND cp
"
${
CMAKE_SOURCE_DIR
}
/lite/api/paddle_*.h"
"
${
INFER_LITE_PUBLISH_ROOT
}
/cxx/include"
COMMAND cp
"
${
CMAKE_BINARY_DIR
}
/lite/api/libpaddle_cxx_api_shared.so"
"
${
INFER_LITE_PUBLISH_ROOT
}
/cxx/lib"
)
add_dependencies
(
tiny_publish_cxx_lib paddle_cxx_api_shared
)
add_dependencies
(
publish_inference tiny_publish_cxx_lib
)
endif
()
endif
()
endif
()
...
...
lite/api/CMakeLists.txt
浏览文件 @
7b2aa3fa
...
...
@@ -4,6 +4,30 @@ else()
lite_cc_library
(
place SRCS paddle_place.cc DEPS glog
)
endif
(
LITE_WITH_LIGHT_WEIGHT_FRAMEWORK
)
if
(
LITE_ON_TINY_PUBLISH
)
set
(
CMAKE_CXX_FLAGS_RELEASE
"-Os -DNDEBUG"
)
set
(
CMAKE_C_FLAGS_RELEASE
"-Os -DNDEBUG"
)
set
(
lib_DEPS light_api paddle_api paddle_api_light
)
else
()
set
(
lib_DEPS light_api cxx_api paddle_api_full paddle_api paddle_api_light
)
endif
()
if
((
NOT LITE_ON_TINY_PUBLISH
)
AND
(
ARM_TARGET_OS STREQUAL
"android"
))
lite_cc_library
(
paddle_cxx_api_shared MODULE
SRCS paddle_api_shared.cc
DEPS
${
lib_DEPS
}
ARM_DEPS
${
arm_kernels
}
NPU_DEPS
${
npu_kernels
}
)
# Unlike static library, module library has to link target to be able to work
# as a single .so lib.
target_link_libraries
(
paddle_cxx_api_shared
${
lib_DEPS
}
${
arm_kernels
}
${
npu_kernels
}
)
else
()
if
(
ARM_TARGET_OS STREQUAL
"android"
)
add_library
(
paddle_cxx_api_shared SHARED
""
)
target_sources
(
paddle_cxx_api_shared PUBLIC paddle_api_shared.cc
)
add_dependencies
(
paddle_cxx_api_shared op_list_h kernel_list_h
${
lib_DEPS
}
)
endif
()
endif
()
if
(
WITH_TESTING
)
lite_cc_library
(
lite_api_test_helper SRCS lite_api_test_helper.cc
DEPS scope optimizer target_wrapper_host model_parser program
...
...
@@ -174,6 +198,7 @@ if (LITE_ON_TINY_PUBLISH)
lite_cc_library
(
paddle_api_light SRCS light_api_impl.cc DEPS light_api paddle_api stream
)
else
()
lite_cc_library
(
paddle_api_light SRCS light_api_impl.cc DEPS light_api paddle_api
)
lite_cc_library
(
paddle_api_light_shared MODULE SRCS light_api_impl.cc DEPS light_api paddle_api
)
endif
()
if
(
NOT LITE_ON_TINY_PUBLISH
)
lite_cc_library
(
paddle_api_full SRCS cxx_api_impl.cc DEPS cxx_api paddle_api_light
...
...
@@ -182,6 +207,12 @@ if (NOT LITE_ON_TINY_PUBLISH)
NPU_DEPS
${
npu_kernels
}
CL_DEPS
${
opencl_kernels
}
FPGA_DEPS
${
fpga_kernels
}
)
lite_cc_library
(
paddle_api_full_shared MODULE SRCS cxx_api_impl.cc DEPS cxx_api paddle_api_light
${
ops
}
ARM_DEPS
${
arm_kernels
}
NPU_DEPS
${
npu_kernels
}
CL_DEPS
${
opencl_kernels
}
FPGA_DEPS
${
fpga_kernels
}
)
# The final inference library for just MobileConfig.
bundle_static_library
(
paddle_api_full paddle_api_full_bundled bundle_full_api
)
endif
()
...
...
lite/api/paddle_api_shared.cc
0 → 100644
浏览文件 @
7b2aa3fa
/* Copyright (c) 2019 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. */
#include "lite/api/paddle_api.h"
#include "lite/api/paddle_use_kernels.h"
#include "lite/api/paddle_use_ops.h"
#ifndef LITE_ON_TINY_PUBLISH
#include "lite/api/paddle_use_passes.h"
#endif
namespace
paddle
{
namespace
lite_api
{
void
RunModel
()
{
// 1. Set CxxConfig
CxxConfig
config
;
// 2. Create PaddlePredictor by CxxConfig
std
::
shared_ptr
<
PaddlePredictor
>
predictor
=
CreatePaddlePredictor
<
CxxConfig
>
(
config
);
}
}
// namespace lite_api
}
// namespace paddle
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录