C++ API

CreatePaddlePredictor

  1. template <typename ConfigT>
  2. std::shared_ptr<PaddlePredictor> CreatePaddlePredictor(const ConfigT&);

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

示例:

  1. // 设置MobileConfig
  2. MobileConfig config;
  3. config.set_model_dir(FLAGS_model_dir);
  4. // 根据MobileConfig创建PaddlePredictor
  5. std::shared_ptr<PaddlePredictor> predictor = CreatePaddlePredictor<MobileConfig>(config);

参数:

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

返回:PaddlePredictor指针

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

CxxConfig

  1. class CxxConfig;

CxxConfig用来配置构建CxxPredictor的配置信息,如protobuf格式的模型地址、能耗模式、工作线程数、place信息等等。

示例:

  1. config = CxxConfig()
  2. # 设置模型目录,加载非combined模型时使用
  3. config.set_model_dir(<your_model_dir_path>)
  4. # 设置工作线程数
  5. config.set_threads(4);
  6. # 设置能耗模式
  7. config.set_power_mode(PowerMode.LITE_POWER_NO_BIND)
  8. # 设置valid places
  9. places = [Place(TargetType.ARM, PrecisionType.FP32)]
  10. config.set_valid_places(places)
  11. # 根据CxxConfig创建CxxPredictor
  12. predictor = create_paddle_predictor(config)

set_model_dir(model_dir)

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

参数:

  • model_dir(str) - 模型文件夹路径

返回:None

返回类型:None

model_dir()

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

参数:

  • None

返回:模型文件夹路径

返回类型:str

set_model_file(model_file)

设置模型文件路径,加载combined形式模型时使用。

参数:

  • model_file(str) - 模型文件路径

返回类型:None

model_file()

获取设置模型文件路径,加载combined形式模型时使用。

参数:

  • None

返回:模型文件路径

返回类型:str

set_param_file(param_file)

设置模型参数文件路径,加载combined形式模型时使用。

参数:

  • param_file(str) - 模型文件路径

返回类型:None

param_file()

获取设置模型参数文件路径,加载combined形式模型时使用。

参数:

  • None

返回:模型参数文件路径

返回类型:str

set_valid_places(valid_places)

设置可用的places列表。

参数:

  • valid_places(list) - 可用place列表。

返回类型:None

示例:

  1. config = CxxConfig()
  2. # 设置模型目录,加载非combined模型时使用
  3. config.set_model_dir(<your_model_dir_path>)
  4. # 设置valid places
  5. # 注意,valid_places列表中Place的排序表明了用户对Place的偏好程度,如用户想优先使用ARM上Int8精度的
  6. # kernel,则应把Place(TargetType.ARM, PrecisionType.INT8)置于valid_places列表的首位。
  7. places = [Place(TargetType.ARM, PrecisionType.INT8),
  8. Place(TargetType.ARM, PrecisionType.FP32)]
  9. config.set_valid_places(places)
  10. # 根据CxxConfig创建CxxPredictor
  11. predictor = create_paddle_predictor(config)

set_power_mode(mode)

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

注意:只在开启OpenMP时生效,否则系统自动调度。此函数只在使用LITE_WITH_ARM编译选项下生效。

参数:

  • mode(PowerMode) - CPU能耗模式

返回:None

返回类型:None

power_mode()

获取设置的CPU能耗模式。

注意:此函数只在使用LITE_WITH_ARM编译选项下生效。

参数:

  • None

返回:设置的CPU能耗模式

返回类型:PowerMode

set_threads(threads)

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

注意:只在开启OpenMP的模式下生效,否则只使用单线程。此函数只在使用LITE_WITH_ARM编译选项下生效。

参数:

  • threads(int) - 工作线程数

返回:None

返回类型:None

threads()

获取设置的工作线程数。

注意:此函数只在使用LITE_WITH_ARM编译选项下生效。

参数:

  • None

返回:工作线程数

返回类型:int

set_x86_math_library_num_threads(threads)

设置CPU Math库线程数,CPU核心数支持情况下可加速预测。默认为1,并且仅在x86下有效。

参数:

  • threads(int) - CPU Math库线程数。

返回:None

返回类型:None

x86_math_library_num_threads()

返回CPU Math库线程数,CPU核心数支持情况下可加速预测。仅在x86下有效。

参数:

  • None

返回:CPU Math库线程数。

返回类型:int

MobileConfig

  1. class MobileConfig;

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

注意:输入的模型需要使用Model Optimize Tool转化为NaiveBuffer格式的优化模型。

示例:

  1. MobileConfig config;
  2. // 设置NaiveBuffer格式模型目录,从文件加载模型时使用
  3. config.set_model_from_file(<your_model_path>);
  4. // 设置工作线程数
  5. config.set_threads(4);
  6. // 设置能耗模式
  7. config.set_power_mode(LITE_POWER_HIGH);
  8. // 根据MobileConfig创建PaddlePredictor
  9. std::shared_ptr<PaddlePredictor> predictor = CreatePaddlePredictor<MobileConfig>(config);

set_model_from_file(model_file)

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

参数:

  • model_file(std::string) - 模型文件路径

返回:None

返回类型:void

set_model_dir(model_dir)

注意:Lite模型格式在release/v2.3.0之后修改,本接口为加载老格式模型的接口,将在release/v3.0.0废弃。建议替换为set_model_from_file接口。

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

参数:

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

返回:None

返回类型:void

model_dir()

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

参数:

  • None

返回:模型文件夹路径

返回类型:std::string

set_model_from_buffer(model_buffer)

设置模型的内存数据,当需要从内存加载模型时使用。

参数:

  • model_buffer(std::string) - 内存中的模型数据

返回:None

返回类型:void

set_model_buffer(model_buffer, model_buffer_size, param_buffer, param_buffer_size)

注意:Lite模型格式在release/v2.3.0之后修改,本接口为加载老格式模型的接口,将在release/v3.0.0废弃。建议替换为set_model_from_buffer接口。

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

示例:

  1. // 读取模型文件到内存
  2. std::string model_buffer = ReadFile(FLAGS_model_path);
  3. std::string params_buffer = lite::ReadFile(FLAGS_params_path);
  4. // 设置MobileConfig
  5. lite_api::MobileConfig config;
  6. config.set_model_buffer(model_buffer.c_str(), model_buffer.size(),
  7. params_buffer.c_str(), params_buffer.size());
  8. // 根据MobileConfig创建PaddlePredictor
  9. 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

model_from_memory()

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

参数:

  • None

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

返回类型:bool

model_buffer()

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

参数:

  • None

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

返回类型:const std::string&

param_buffer()

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

参数:

  • None

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

返回类型:const std::string&

set_power_mode(mode)

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

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

参数:

  • mode(PowerMode) - CPU能耗模式

返回:None

返回类型:void

power_mode()

获取设置的CPU能耗模式。

参数:

  • None

返回:设置的CPU能耗模式

返回类型:PowerMode

set_threads(threads)

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

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

参数:

  • threads(int) - 工作线程数

返回:None

返回类型:void

threads()

获取设置的工作线程数。

参数:

  • None

返回:工作线程数

返回类型:int

PaddlePredictor

  1. class PaddlePredictor

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

示例:

  1. int64_t ShapeProduction(const shape_t& shape) {
  2. int64_t res = 1;
  3. for (auto i : shape) res *= i;
  4. return res;
  5. }
  6. // 设置MobileConfig
  7. MobileConfig config;
  8. config.set_model_dir(FLAGS_model_dir);
  9. // 根据MobileConfig创建PaddlePredictor
  10. std::shared_ptr<PaddlePredictor> predictor = CreatePaddlePredictor<MobileConfig>(config);
  11. // 获得模型的输入和输出名称
  12. std::vector<std::string> input_names = predictor->GetInputNames();
  13. for (int i = 0; i < input_names.size(); i ++) {
  14. printf("Input name[%d]: %s\n", i, input_names[i].c_str());
  15. }
  16. std::vector<std::string> output_names = predictor->GetOutputNames();
  17. for (int i = 0; i < output_names.size(); i ++) {
  18. printf("Output name[%d]: %s\n", i, output_names[i].c_str());
  19. }
  20. // 准备输入数据
  21. // (1)根据index获取输入Tensor
  22. std::unique_ptr<Tensor> input_tensor(std::move(predictor->GetInput(0)));
  23. // (2)根据名称获取输入Tensor
  24. // std::unique_ptr<Tensor> input_tensor(std::move(predictor->GetInputByName(input_names[0])));
  25. input_tensor->Resize({1, 3, 224, 224});
  26. auto* data = input_tensor->mutable_data<float>();
  27. for (int i = 0; i < ShapeProduction(input_tensor->shape()); ++i) {
  28. data[i] = 1;
  29. }
  30. // 执行预测
  31. predictor->Run();
  32. // 获取输出
  33. // (1)根据index获取输出Tensor
  34. std::unique_ptr<const Tensor> output_tensor(std::move(predictor->GetOutput(0)));
  35. // (2)根据名称获取输出Tensor
  36. // std::unique_ptr<const Tensor> output_tensor(std::move(predictor->GetOutput(output_names[0])));
  37. printf("Output dim: %d\n", output_tensor->shape()[1]);
  38. for (int i = 0; i < ShapeProduction(output_tensor->shape()); i += 100) {
  39. printf("Output[%d]: %f\n", i, output_tensor->data<float>()[i]);
  40. }

GetInput(index)

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

参数:

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

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

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

GetOutput(index)

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

参数:

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

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

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

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的指针。

注意GetTensor接口是为开发者设计的调试接口,可以输出转化后模型中的任一节点。如果出现GetTensor(InputName)返回值为空Tensor,可能原因是以该InputName命名的Tensor在模型转化的子图融合过程被融合替换了。

参数:

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

返回:指向const Tensor的指针

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

Run()

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

参数:

  • None

返回:None

返回类型:void

GetVersion()

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

参数:

  • None

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

返回类型:std::string

TargetType

  1. class TargetType;

TargetType为目标设备硬件类型,用户可以根据应用场景选择硬件平台类型。

枚举型变量TargetType的所有可能取值包括:

{X86, CUDA, ARM, OpenCL, FPGA, NPU}

PrecisionType

  1. class PrecisionType {FP32};

PrecisionType为模型中Tensor的数据精度,默认值为FP32(float32)。

枚举型变量PrecisionType的所有可能取值包括:

{FP32, INT8, INT32, INT64}

DataLayoutType

  1. class DataLayoutType {NCHW};

DataLayoutType为Tensor的数据格式,默认值为NCHW(number, channel, height, weigth)。

枚举型变量DataLayoutType的所有可能取值包括:

{NCHW, NHWC}

Place

  1. class Place{
  2. TargetType target;
  3. PrecisionType precision{FP32};
  4. DataLayoutType layout{NCHW}
  5. }

PlaceTargetTypePrecisionTypeDataLayoutType的集合,说明运行时的设备类型、数据精度和数据格式。

示例:

  1. Place{TargetType(ARM), PrecisionType(FP32), DataLayoutType(NCHW)}

PowerMode

  1. enum PowerMode;

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

示例:

  1. MobileConfig config;
  2. // 设置NaiveBuffer格式模型目录
  3. config.set_model_dir(FLAGS_model_dir);
  4. // 设置能耗模式
  5. config.set_power_mode(LITE_POWER_HIGH);
  6. // 根据MobileConfig创建PaddlePredictor
  7. 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

  1. class Tensor

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

注意:用户应使用PaddlePredictorGetInputGetOuput接口获取输入/输出的Tensor

示例:

  1. int64_t ShapeProduction(const shape_t& shape) {
  2. int64_t res = 1;
  3. for (auto i : shape) res *= i;
  4. return res;
  5. }
  6. // 设置MobileConfig
  7. MobileConfig config;
  8. config.set_model_dir(FLAGS_model_dir);
  9. // 根据MobileConfig创建PaddlePredictor
  10. std::shared_ptr<PaddlePredictor> predictor = CreatePaddlePredictor<MobileConfig>(config);
  11. // 准备输入数据, 获取输入Tensor
  12. std::unique_ptr<Tensor> input_tensor(std::move(predictor->GetInput(0)));
  13. // 设置输入Tensor维度信息
  14. input_tensor->Resize({1, 3, 224, 224});
  15. // 设置输入数据
  16. auto* data = input_tensor->mutable_data<float>();
  17. for (int i = 0; i < ShapeProduction(input_tensor->shape()); ++i) {
  18. data[i] = 1;
  19. }
  20. // 执行预测
  21. predictor->Run();
  22. // 获取输出Tensor
  23. std::unique_ptr<const Tensor> output_tensor(std::move(predictor->GetOutput(0)));
  24. // 获取输出Tensor维度
  25. printf("Output dim: %d\n", output_tensor->shape()[1]);
  26. // 获取输出Tensor数据
  27. for (int i = 0; i < ShapeProduction(output_tensor->shape()); i += 100) {
  28. printf("Output[%d]: %f\n", i, output_tensor->data<float>()[i]);
  29. }

Resize(shape)

设置Tensor的维度信息。

参数:

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

返回:None

返回类型:void

shape()

获取Tensor的维度信息。

参数:

  • None

返回:Tensor的维度信息

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

data<T>()

  1. template <typename T>
  2. const T* data() const;

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

示例:

  1. std::unique_ptr<const Tensor> output_tensor(std::move(predictor->GetOutput(0)));
  2. // 如果模型中输出为float类型
  3. output_tensor->data<float>()

参数:

  • None

返回:Tensor底层数据常量指针

返回类型:const T*

mutable_data<T>()

  1. template <typename T>
  2. T* mutable_data() const;

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

示例:

  1. std::unique_ptr<Tensor> input_tensor(std::move(predictor->GetInput(0)));
  2. // 如果模型中输出为float类型
  3. auto* data = input_tensor->mutable_data<float>();
  4. // 设置Tensor数据
  5. for (int i = 0; i < ShapeProduction(input_tensor->shape()); ++i) {
  6. data[i] = 1;
  7. }

参数:

  • None

返回:Tensor底层数据指针

返回类型:T*

SetLoD(lod)

设置Tensor的LoD信息。

参数:

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

返回:None

返回类型:void

lod()

获取Tensor的LoD信息

参数:

  • None

返回:Tensor的LoD信息

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