x86.md 7.6 KB
Newer Older
1
# PaddleLite使用X86预测部署
2

3 4
## 一、Docker或者Linux环境

5
Paddle-Lite 支持在Docker或Linux环境编译x86预测库。环境搭建参考[环境准备](../user_guides/source_compile)
6

7
### 编译
8 9 10

1、 下载代码
```bash
11
# 下载Paddle-Lite源码
12
git clone https://github.com/PaddlePaddle/Paddle-Lite.git
13
# 切换到release分支
14
git checkout release/v2.6.0
15 16 17 18 19 20
```

2、 源码编译

```bash
cd Paddle-Lite
21
./lite/tools/build.sh --build_python=ON x86
22 23 24

# 其他可选择编译选项
# --with_log=OFF 关闭LOG信息输出
25
# --build_python=OFF 编译python预测库
26 27
```

28
### 编译结果说明
29 30 31 32 33 34 35 36 37 38

x86编译结果位于 `build.lite.x86/inference_lite_lib`
**具体内容**说明:

1、 `bin`文件夹:可执行工具文件 `test_model_bin`

2、 `cxx`文件夹:包含c++的库文件与相应的头文件

- `include`  : 头文件
- `lib` : 库文件
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
  - 静态库文件:
    - `libpaddle_api_full_bundled.a`  :full_api 静态库
    - `libpaddle_api_light_bundled.a` :light_api 静态库
  - 动态库文件:
    - `libpaddle_full_api_shared.so` :full_api 动态库
    - `libpaddle_light_api_shared.so`:light_api 动态库

3、 `third_party` 文件夹:依赖的第三方预测库mklml

- mklml : Paddle-Lite预测库依赖的mklml数学库

4、 `demo/cxx`文件夹:x86预测库的C++ 示例demo

- `mobilenetv1_full` :使用full_api 执行mobilenet_v1预测的C++ demo
- `mobilenetv1_light` :使用light_api 执行mobilenet_v1预测的C++ demo

55 56 57 58
5、 `demo/python`文件夹:x86预测库的Python 示例demo

- `mobilenetv1_full_api.py` :使用full_api 执行mobilenet_v1预测的Python demo
- `mobilenetv1_light_api.py` :使用light_api 执行mobilenet_v1预测的Python demo
59

60
6、 `python`文件夹:包含python的库文件和对应的.whl包
61

62 63 64 65
- `install`文件夹:编译成功的.whl包位于`install/dist/*.whl`
- `lib`文件夹:.whl包依赖的库文件

**(若不需要编译python预测库,则将编译命令替换为`./lite/tools/build.sh x86`)**
66

67
### x86预测API使用示例
68

69
1、`mobilenetv1_full`目录结构
70

71 72 73 74
```bash
mobilenetv1_full/
|-- CMakeLists.txt
|-- build.sh
75 76
|-- build.bat
-- mobilenet_full_api.cc
77
```
78

79
本demo使用cmake构建`CMakeLists.txt`为cmake脚本,`mobilenet_full_api.cc`是x86示例的源代码、`build.sh`为编译的脚本。
80

81
2、demo使用方法
82 83 84

``` bash
# 1、编译
85
cd mobilenetv1_full
86 87 88 89 90
sh build.sh
```
编译结果为当前目录下的 `mobilenet_full_api `
``` bash
# 2、执行预测
91
./mobilenet_full_api ./mobilenet_v1
92
```
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
下载并解压模型[`mobilenet_v1`](http://paddle-inference-dist.bj.bcebos.com/mobilenet_v1.tar.gz)到当前目录,执行以上命令进行预测。

```bash
# 3、执行demo后输出结果如下,全一输入下mobilenet_v1的预测结果
Output shape 1000
Output[0]: 0.000191312
Output[100]: 0.000159713
Output[200]: 0.000264313
Output[300]: 0.000210793
Output[400]: 0.00103236
Output[500]: 0.000110071
Output[600]: 0.00482924
Output[700]: 0.00184533
Output[800]: 0.000202116
Output[900]: 0.000585591
```


111 112 113

3、示例源码`mobilenet_full_api.cc`

114 115 116
```c++
#include <iostream>
#include <vector>
117
#include "paddle_api.h"
118 119


120
using namespace paddle::lite_api;  // NOLINT
121 122 123 124 125 126 127

int64_t ShapeProduction(const shape_t& shape) {
  int64_t res = 1;
  for (auto i : shape) res *= i;
  return res;
}

128 129 130 131 132 133 134 135
void RunModel(std::string model_dir) {
   // 1. Create CxxConfig
   CxxConfig config;
   config.set_model_dir(model_dir);
   config.set_valid_places({
     Place{TARGET(kX86), PRECISION(kFloat)},
     Place{TARGET(kHost), PRECISION(kFloat)}
   });
136 137 138 139 140 141
  // 2. Create PaddlePredictor by CxxConfig
  std::shared_ptr<PaddlePredictor> predictor =
      CreatePaddlePredictor<CxxConfig>(config);

  // 3. Prepare input data
  std::unique_ptr<Tensor> input_tensor(std::move(predictor->GetInput(0)));
142
  input_tensor->Resize({1, 3, 224, 224});
143 144 145 146 147 148 149 150 151 152 153
  auto* data = input_tensor->mutable_data<float>();
  for (int i = 0; i < ShapeProduction(input_tensor->shape()); ++i) {
    data[i] = 1;
  }

  // 4. Run predictor
  predictor->Run();

  // 5. Get output
  std::unique_ptr<const Tensor> output_tensor(
      std::move(predictor->GetOutput(0)));
154
  std::cout << "Output shape " << output_tensor->shape()[1] << std::endl;
155
  for (int i = 0; i < ShapeProduction(output_tensor->shape()); i += 100) {
156 157
    std::cout << "Output[" << i << "]: " << output_tensor->data<float>()[i]
              << std::endl;
158 159 160 161
  }
}

int main(int argc, char** argv) {
162 163 164 165 166 167
  if (argc < 2) {
    std::cerr << "[ERROR] usage: ./" << argv[0] << " naive_buffer_model_dir\n";
    exit(1);
  }
  std::string model_dir = argv[1];
  RunModel(model_dir);
168 169
  return 0;
}
170

171
```
172 173 174 175 176 177 178 179

## 二、Windows环境

### 环境准备

#### 编译环境需求

- Windows 10 专业版
180 181
  - 目前Windows暂不支持GPU编译
- *Python 版本 2.7/3.5.1+ (64 bit)*
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
- *pip 或 pip3 版本 9.0.1+ (64 bit)*
- *Visual Studio 2015 Update3*

#### 安装步骤

1. cmake 需要3.15版本, 可在官网[下载](https://cmake.org/download/),并添加到环境变量中。

2. python 需要2.7 及以上版本, 可在官网[下载](https://www.python.org/download/releases/2.7/)

3. git可以在官网[下载](https://gitforwindows.org/),并添加到环境变量中

### 编译

1、 下载代码
```bash
git clone https://github.com/PaddlePaddle/Paddle-Lite.git
# 切换到release分支
199
git checkout release/v2.6.0
200
```
201
2、 源码编译(需要按照提示输入对应的参数)
202

203
```dos
204
cd Paddle-Lite
205
lite\tools\build_windows.bat with_extra with_python with_profile
206
```
207
编译脚本`build_windows.bat`,追加参数说明:
208 209 210 211 212 213 214

|   参数     |     介绍     |     值     |
|-----------|-------------|-------------|
|  with_extra | 可选,是否编译全量预测库(默认为OFF)。详情可参考[预测库说明](./library.html)。 | `ON``OFF` |
|  with_python | 可选,是否编译python预测库(默认为OFF) 。 | `ON``OFF` |
|  with_profile | 可选,是否支持分析器模式(默认为OFF) 。 | `ON``OFF` |

215
### 编译结果说明
216 217 218 219

x86编译结果位于 `build.lite.x86/inference_lite_lib`
**具体内容**说明:

220
1、 `cxx`文件夹:包含c++的库文件与相应的头文件
221 222 223

- `include`  : 头文件
- `lib` : 库文件
224
  - 静态库文件:
225 226 227
    - `libpaddle_api_full_bundled.lib`  :full_api 静态库
    - `libpaddle_api_light_bundled.lib` :light_api 静态库

228 229 230 231 232 233 234 235 236 237 238 239 240
2、 `third_party` 文件夹:依赖的第三方预测库mklml

- mklml : Paddle-Lite预测库依赖的mklml数学库

3、 `demo/cxx`文件夹:x86预测库的C++ 示例demo

- `mobilenetv1_full` :使用full_api 执行mobilenet_v1预测的C++ demo
- `mobilenetv1_light` :使用light_api 执行mobilenet_v1预测的C++ demo

4、 `demo/python`: x86预测库的Python示例demo

- `mobilenetv1_full_api.py`:使用full_api 执行mobilenet_v1预测的Python demo
- `mobilenetv1_light_api.py`:使用full_api 执行mobilenet_v1预测的Python demo
241

242 243 244 245
5、 `python`文件夹:包含python的库文件和对应的.whl包

- `install`文件夹:编译成功的.whl包位于`install/dist/*.whl`
- `lib`文件夹:.whl包依赖的库文件
246 247
### x86预测API使用示例

248
1、`mobilenetv1_full`目录结构
249

250 251 252 253 254 255 256
```bash
mobilenetv1_full/
|-- CMakeLists.txt
|-- build.sh
|-- build.bat
`-- mobilenet_full_api.cc
```
257

258
本demo使用cmake构建`CMakeLists.txt`为cmake脚本,`mobilenet_full_api.cc`是x86示例的源代码、`build.sh`为Linux x86编译的脚本,`build.bat`为windows x86编译脚本。
259

260
2、demo使用方法
261 262

``` bash
263 264
# 1、编译
cd mobilenetv1_full
265
build.bat
266
cd build
267
```
268 269
编译结果为当前目录下的 `Release\mobilenet_full_api.exe `
``` dos
270
# 2、执行预测
271
Release\mobilenet_full_api.exe mobilenet_v1
272
```
273
下载并解压模型[`mobilenet_v1`](http://paddle-inference-dist.bj.bcebos.com/mobilenet_v1.tar.gz)到当前`build`目录,执行以上命令进行预测。