cxx_api_doc.md 12.4 KB
Newer Older
S
sangoly 已提交
1 2 3 4 5 6
---
layout: post
title: C++ API文档

---

7 8
* TOC
{:toc}
S
sangoly 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62

# CreatePaddlePredictor

```c++
template <typename ConfigT>
std::shared_ptr<PaddlePredictor> CreatePaddlePredictor(const ConfigT&);
```

`CreatePaddlePredictor`用来根据`MobileConfig`构建预测器。

示例:

```c++
// 设置MobileConfig
MobileConfig config;
config.set_model_dir(FLAGS_model_dir);

// 根据MobileConfig创建PaddlePredictor
std::shared_ptr<PaddlePredictor> predictor = CreatePaddlePredictor<MobileConfig>(config);
```

参数:

- `config(MobileConfig)` - 用于构建Predictor的配置信息。

返回:`PaddlePredictor`指针

返回类型:`std::shared_ptr<PaddlePredictor>`

# MobileConfig

```c++
class MobileConfig;
```

`MobileConfig`用来配置构建轻量级PaddlePredictor的配置信息,如NaiveBuffer格式的模型地址、模型的内存地址(从内存加载模型时使用)、能耗模式、工作线程数等等。

*注意:输入的模型需要使用[Model Optimize Tool](../model_optimize_tool)转化为NaiveBuffer格式的优化模型。*

示例:

```c++
MobileConfig config;
// 设置NaiveBuffer格式模型目录,从文件加载模型时使用
config.set_model_dir(FLAGS_model_dir);
// 设置工作线程数
config.set_threads(4);
// 设置能耗模式
config.set_power_mode(LITE_POWER_HIGH);

// 根据MobileConfig创建PaddlePredictor
std::shared_ptr<PaddlePredictor> predictor = CreatePaddlePredictor<MobileConfig>(config);
```

63
## `set_model_dir(model_dir)`
S
sangoly 已提交
64 65 66 67 68 69 70 71 72 73 74 75 76

设置模型文件夹路径,当需要从磁盘加载模型时使用。

参数:

- `model_dir(std::string)` - 模型文件夹路径

返回:`None`

返回类型:`void`



77
## `model_dir()`
S
sangoly 已提交
78 79 80 81 82 83 84 85 86 87 88 89 90

返回设置的模型文件夹路径。

参数:

- `None`

返回:模型文件夹路径

返回类型:`std::string`



91
## `set_model_buffer(model_buffer, model_buffer_size, param_buffer, param_buffer_size)`
S
sangoly 已提交
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123

设置模型、参数的内存地址,当需要从内存加载模型时使用。

示例:

```c++
// 读取模型文件到内存
std::string model_buffer = ReadFile(FLAGS_model_path);
std::string params_buffer = lite::ReadFile(FLAGS_params_path);

// 设置MobileConfig
lite_api::MobileConfig config;
config.set_model_buffer(model_buffer.c_str(), model_buffer.size(), 
                        params_buffer.c_str(), params_buffer.size());

// 根据MobileConfig创建PaddlePredictor
std::shared_ptr<PaddlePredictor> predictor = CreatePaddlePredictor<MobileConfig>(config);
```

参数:

- `model_buffer(const char*)` - 内存中模型结构数据。
- `model_buffer_size(size_t)` - 内存中模型结构数据的大小。
- `param_buffer(const char*)` - 内存中模型参数数据。
- `param_buffer_size(size_t)` - 内存中模型参数数据的大小。

返回:`None`

返回类型:`Void`



124
## `model_from_memory()`
S
sangoly 已提交
125 126 127 128 129 130 131 132 133 134 135 136 137

是否从内存中加载模型,当使用`set_model_buffer`接口时返回`true`

参数:

- `None`

返回:是否从内存加载模型

返回类型:`bool`



138
## `model_buffer()`
S
sangoly 已提交
139 140 141 142 143 144 145 146 147 148 149 150 151

获取内存中模型结构数据。

参数:

- `None`

返回:内存中模型结构数据

返回类型:`const std::string&`



152
## `param_buffer()`
S
sangoly 已提交
153 154 155 156 157 158 159 160 161 162 163 164 165

获取内存中模型参数数据。

参数:

- `None`

返回:内存中模型结构数据

返回类型:`const std::string&`



166
## `set_power_mode(mode)`
S
sangoly 已提交
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181

设置CPU能耗模式。若不设置,则默认使用`LITE_POWER_HIGH`

*注意:只在开启`OpenMP`时生效,否则系统自动调度。*

参数:

- `mode(PowerMode)` - CPU能耗模式

返回:`None`

返回类型:`void`



182
## `power_mode()`
S
sangoly 已提交
183 184 185 186 187 188 189 190 191 192 193 194 195

获取设置的CPU能耗模式。

参数:

- `None`

返回:设置的CPU能耗模式

返回类型:`PowerMode`



196
## `set_threads(threads)`
S
sangoly 已提交
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211

设置工作线程数。若不设置,则默认使用单线程。

*注意:只在开启`OpenMP`的模式下生效,否则只使用单线程。*

参数:

- `threads(int)` - 工作线程数

返回:`None`

返回类型:`void`



212
## `threads()`
S
sangoly 已提交
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247

获取设置的工作线程数。

参数:

- `None`

返回:工作线程数

返回类型:`int`

# PaddlePredictor

```c++
class PaddlePredictor
```

`PaddlePredictor`是Paddle-Lite的预测器,由`CreatePaddlePredictor`根据`MobileConfig`进行创建。用户可以根据PaddlePredictor提供的接口设置输入数据、执行模型预测、获取输出以及获得当前使用lib的版本信息等。

示例:

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

// 设置MobileConfig
MobileConfig config;
config.set_model_dir(FLAGS_model_dir);

// 根据MobileConfig创建PaddlePredictor
std::shared_ptr<PaddlePredictor> predictor = CreatePaddlePredictor<MobileConfig>(config);

248 249 250 251 252 253 254 255 256 257
// 获得模型的输入和输出名称
std::vector<std::string> input_names = predictor->GetInputNames();
for (int i = 0; i < input_names.size(); i ++) {
  printf("Input name[%d]: %s\n", i, input_names[i].c_str());
}
std::vector<std::string> output_names = predictor->GetOutputNames();
for (int i = 0; i < output_names.size(); i ++) {
  printf("Output name[%d]: %s\n", i, output_names[i].c_str());
}

S
sangoly 已提交
258
// 准备输入数据
259
// (1)根据index获取输入Tensor
S
sangoly 已提交
260
std::unique_ptr<Tensor> input_tensor(std::move(predictor->GetInput(0)));
261 262
// (2)根据名称获取输入Tensor
// std::unique_ptr<Tensor> input_tensor(std::move(predictor->GetInputByName(input_names[0])));
S
sangoly 已提交
263 264 265 266 267 268 269 270 271 272
input_tensor->Resize({1, 3, 224, 224});
auto* data = input_tensor->mutable_data<float>();
for (int i = 0; i < ShapeProduction(input_tensor->shape()); ++i) {
  data[i] = 1;
}

// 执行预测
predictor->Run();

// 获取输出
273
// (1)根据index获取输出Tensor
S
sangoly 已提交
274
std::unique_ptr<const Tensor> output_tensor(std::move(predictor->GetOutput(0)));
275 276
// (2)根据名称获取输出Tensor
// std::unique_ptr<const Tensor> output_tensor(std::move(predictor->GetOutput(output_names[0])));
S
sangoly 已提交
277 278 279 280 281 282
printf("Output dim: %d\n", output_tensor->shape()[1]);
for (int i = 0; i < ShapeProduction(output_tensor->shape()); i += 100) {
  printf("Output[%d]: %f\n", i, output_tensor->data<float>()[i]);
}
```

283
## `GetInput(index)`
S
sangoly 已提交
284 285 286 287 288 289 290 291 292 293 294 295 296

获取输入Tensor指针,用来设置模型的输入数据。

参数:

- `index(int)` - 输入Tensor的索引

返回:第`index`个输入`Tensor`的指针

返回类型:`std::unique_ptr<Tensor>`



297
## `GetOutput(index)`
S
sangoly 已提交
298 299 300 301 302 303 304 305 306 307 308

获取输出Tensor的指针,用来获取模型的输出结果。

参数:

- `index(int)` - 输出Tensor的索引

返回:第`index`个输出Tensor`的指针

返回类型:`std::unique_ptr<Tensor>`

309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353
## `GetInputNames()`

获取所有输入Tensor的名称。

参数:

- `None` 

返回:所有输入Tensor的名称

返回类型:`std::vector<std::string>`

## `GetOutputNames()`

获取所有输出Tensor的名称。

参数:

- `None`

返回:所有输出Tensor的名称

返回类型:`std::vector<std::string>`

## `GetInputByName(name)`

根据名称获取输出Tensor的指针,用来获取模型的输出结果。

参数:

- `name(const std::string)` - 输入Tensor的名称

返回:输入Tensor`的指针

返回类型:`std::unique_ptr<Tensor>`

## `GetTensor(name)`

根据名称获取输出Tensor的指针。

参数:

- `name(const std::string)` - Tensor的名称

返回:指向`const Tensor`的指针
S
sangoly 已提交
354

355
返回类型:`std::unique_ptr<const Tensor>`
S
sangoly 已提交
356

357
## `Run()`
S
sangoly 已提交
358 359 360 361 362 363 364 365 366 367 368 369 370

执行模型预测,需要在***设置输入数据后***调用。

参数:

- `None`

返回:`None`

返回类型:`void`



371
## `GetVersion()`
S
sangoly 已提交
372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465

用于获取当前lib使用的代码版本。若代码有相应tag则返回tag信息,如`v2.0-beta`;否则返回代码的`branch(commitid)`,如`develop(7e44619)`

参数:

- `None`

返回:当前lib使用的代码版本信息

返回类型:`std::string`

# PowerMode

```c++
enum PowerMode;
```

`PowerMode`为ARM CPU能耗模式,用户可以根据应用场景设置能耗模式获得最优的能效比。

示例:

```c++
MobileConfig config;
// 设置NaiveBuffer格式模型目录
config.set_model_dir(FLAGS_model_dir);
// 设置能耗模式
config.set_power_mode(LITE_POWER_HIGH);

// 根据MobileConfig创建PaddlePredictor
std::shared_ptr<PaddlePredictor> predictor = CreatePaddlePredictor<MobileConfig>(config);
```

PowerMode详细说明如下:

|         选项         | 说明                                                         |
| :------------------: | ------------------------------------------------------------ |
|   LITE_POWER_HIGH    | 绑定大核运行模式。如果ARM CPU支持big.LITTLE,则优先使用并绑定Big cluster。如果设置的线程数大于大核数量,则会将线程数自动缩放到大核数量。如果系统不存在大核或者在一些手机的低电量情况下会出现绑核失败,如果失败则进入不绑核模式。 |
|    LITE_POWER_LOW    | 绑定小核运行模式。如果ARM CPU支持big.LITTLE,则优先使用并绑定Little cluster。如果设置的线程数大于小核数量,则会将线程数自动缩放到小核数量。如果找不到小核,则自动进入不绑核模式。 |
|   LITE_POWER_FULL    | 大小核混用模式。线程数可以大于大核数量。当线程数大于核心数量时,则会自动将线程数缩放到核心数量。 |
|  LITE_POWER_NO_BIND  | 不绑核运行模式(推荐)。系统根据负载自动调度任务到空闲的CPU核心上。 |
| LITE_POWER_RAND_HIGH | 轮流绑定大核模式。如果Big cluster有多个核心,则每预测10次后切换绑定到下一个核心。 |
| LITE_POWER_RAND_LOW  | 轮流绑定小核模式。如果Little cluster有多个核心,则每预测10次后切换绑定到下一个核心。 |



# Tensor

```c++
class Tensor
```

Tensor是Paddle-Lite的数据组织形式,用于对底层数据进行封装并提供接口对数据进行操作,包括设置Shape、数据、LoD信息等。

*注意:用户应使用`PaddlePredictor`的`GetInput`和`GetOuput`接口获取输入/输出的`Tensor`。*

示例:

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

// 设置MobileConfig
MobileConfig config;
config.set_model_dir(FLAGS_model_dir);

// 根据MobileConfig创建PaddlePredictor
std::shared_ptr<PaddlePredictor> predictor = CreatePaddlePredictor<MobileConfig>(config);

// 准备输入数据, 获取输入Tensor
std::unique_ptr<Tensor> input_tensor(std::move(predictor->GetInput(0)));
// 设置输入Tensor维度信息
input_tensor->Resize({1, 3, 224, 224});
// 设置输入数据
auto* data = input_tensor->mutable_data<float>();
for (int i = 0; i < ShapeProduction(input_tensor->shape()); ++i) {
  data[i] = 1;
}

// 执行预测
predictor->Run();

// 获取输出Tensor
std::unique_ptr<const Tensor> output_tensor(std::move(predictor->GetOutput(0)));
// 获取输出Tensor维度
printf("Output dim: %d\n", output_tensor->shape()[1]);
// 获取输出Tensor数据
for (int i = 0; i < ShapeProduction(output_tensor->shape()); i += 100) {
  printf("Output[%d]: %f\n", i, output_tensor->data<float>()[i]);
}
```

466
## `Resize(shape)`
S
sangoly 已提交
467 468 469 470 471 472 473 474 475 476 477 478 479

设置Tensor的维度信息。

参数:

- `shape(std::vector<int64_t>)` - 维度信息

返回:`None`

返回类型:`void`



480
## `shape()`
S
sangoly 已提交
481 482 483 484 485 486 487 488 489 490 491 492 493

获取Tensor的维度信息。

参数:

- `None`

返回:Tensor的维度信息

返回类型:`std::vector<int64_t>`



494
## `data<T>()`
S
sangoly 已提交
495 496 497 498 499 500 501 502 503 504 505 506 507 508

```c++
template <typename T>
const T* data() const;
```

获取Tensor的底层数据的常量指针,根据传入的不同模型类型获取相应数据。用于读取Tensor数据。

示例:

```c++
std::unique_ptr<const Tensor> output_tensor(std::move(predictor->GetOutput(0)));
// 如果模型中输出为float类型
output_tensor->data<float>()
509
```
S
sangoly 已提交
510

511
参数:
S
sangoly 已提交
512

513
- `None`
S
sangoly 已提交
514

515
返回:`Tensor`底层数据常量指针
S
sangoly 已提交
516

517
返回类型:`const T*`
S
sangoly 已提交
518 519 520



521
## `mutable_data<T>()`
S
sangoly 已提交
522

523 524 525 526
```c++
template <typename T>
T* mutable_data() const;
```
S
sangoly 已提交
527

528
获取Tensor的底层数据的指针,根据传入的不同模型类型获取相应数据。用于设置Tensor数据。
S
sangoly 已提交
529

530
示例:
S
sangoly 已提交
531

532 533 534 535 536 537 538 539
```c++
std::unique_ptr<Tensor> input_tensor(std::move(predictor->GetInput(0)));
// 如果模型中输出为float类型
auto* data = input_tensor->mutable_data<float>();
// 设置Tensor数据
for (int i = 0; i < ShapeProduction(input_tensor->shape()); ++i) {
  data[i] = 1;
}
S
sangoly 已提交
540 541 542 543 544 545 546 547 548 549 550 551
```

参数:

- `None`

返回:`Tensor`底层数据指针

返回类型:`T*`



552
## `SetLoD(lod)`
S
sangoly 已提交
553 554 555 556 557 558 559 560 561 562 563 564 565

设置Tensor的LoD信息。

参数:

- `lod(std::vector<std::vector<uint64_t>>)` - Tensor的LoD信息

返回:`None`

返回类型:`void`



566
## `lod()`
S
sangoly 已提交
567 568 569 570 571 572 573 574 575 576

获取Tensor的LoD信息

参数:

- `None`

返回:`Tensor`的LoD信息

返回类型:`std::vector<std::vector<uint64_t>>`