paddle_inference_api.h 5.4 KB
Newer Older
Y
Yan Chunwei 已提交
1 2
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.

Y
Yan Chunwei 已提交
3 4 5
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
Y
Yan Chunwei 已提交
6

Y
Yan Chunwei 已提交
7
http://www.apache.org/licenses/LICENSE-2.0
Y
Yan Chunwei 已提交
8

Y
Yan Chunwei 已提交
9 10 11 12 13
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. */
Y
Yan Chunwei 已提交
14

15 16 17
/*
 * This file contains the definition of a simple Inference API for Paddle.
 *
18
 * ATTENTION: It requires some C++11 features, for lower version C++ or C, we
19 20 21
 * might release another API.
 */

Y
Yan Chunwei 已提交
22 23
#pragma once

24
#include <cassert>
25
#include <memory>
Y
Yan Chunwei 已提交
26 27
#include <string>
#include <vector>
D
dzhwinter 已提交
28
#include "paddle/fluid/platform/macros.h"
Y
Yan Chunwei 已提交
29 30 31

namespace paddle {

X
Xin Pan 已提交
32 33 34 35 36
enum PaddleDType {
  FLOAT32,
  INT64,
};

D
dzhwinter 已提交
37
class PADDLE_DLL PaddleBuf {
38 39 40 41 42 43
 public:
  PaddleBuf() = default;
  PaddleBuf(PaddleBuf&& other);
  // Copy only available when memory is managed externally.
  explicit PaddleBuf(const PaddleBuf&);
  PaddleBuf& operator=(const PaddleBuf&);
44
  PaddleBuf& operator=(PaddleBuf&&);
45 46 47 48
  // Do not own the memory.
  PaddleBuf(void* data, size_t length)
      : data_(data), length_(length), memory_owned_{false} {}
  // Own memory.
D
dzhwinter 已提交
49
  explicit PaddleBuf(size_t length)
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
      : data_(new char[length]), length_(length), memory_owned_(true) {}
  // Resize to `length` bytes.
  void Resize(size_t length);
  // Reset to external memory.
  void Reset(void* data, size_t length);
  bool empty() const { return length_ == 0; }
  void* data() const { return data_; }
  size_t length() const { return length_; }

  ~PaddleBuf() { Free(); }

 private:
  void Free();
  void* data_{nullptr};  // pointer to the data memory.
  size_t length_{0};     // number of memory bytes.
  bool memory_owned_{true};
X
Xin Pan 已提交
66 67
};

D
dzhwinter 已提交
68
struct PADDLE_DLL PaddleTensor {
69
  PaddleTensor() = default;
70 71
  std::string name;  // variable name.
  std::vector<int> shape;
X
Xin Pan 已提交
72 73
  PaddleBuf data;  // blob of data.
  PaddleDType dtype;
T
Tao Luo 已提交
74
  std::vector<std::vector<size_t>> lod;  // Tensor+LoD equals LoDTensor
75 76
};

Y
Yan Chunwei 已提交
77
enum class PaddleEngineKind {
78 79 80
  kNative = 0,         // Use the native Fluid facility.
  kAnakin,             // Use Anakin for inference.
  kAutoMixedTensorRT,  // Automatically mix Fluid with TensorRT.
81
  kAnalysis
Y
Yan Chunwei 已提交
82 83 84 85 86
  // TODO(Superjomn) support following engines latter.
  // kTensorRT,           // Use TensorRT for inference.
  // kAutoMixedAnakin,    // Automatically mix Fluid with Anakin.
};

87
/*
Y
Yan Chunwei 已提交
88 89 90
 * A simple Inference API for Paddle. Currently this API can be used by
 * non-sequence scenerios.
 */
D
dzhwinter 已提交
91
class PADDLE_DLL PaddlePredictor {
W
Wu Yi 已提交
92
 public:
93 94 95
  struct Config;
  PaddlePredictor() = default;
  PaddlePredictor(const PaddlePredictor&) = delete;
96
  PaddlePredictor& operator=(const PaddlePredictor&) = delete;
Y
Yan Chunwei 已提交
97 98

  // Predict an record.
X
Xin Pan 已提交
99
  // The caller should be responsible for allocating and releasing the memory of
100 101
  // responsible for the output tensor's buffer, either allocated or passed from
  // outside.
102
  virtual bool Run(const std::vector<PaddleTensor>& inputs,
103 104
                   std::vector<PaddleTensor>* output_data,
                   int batch_size = -1) = 0;
105 106 107 108

  // Clone a predictor that share the model weights, the Cloned predictor should
  // be thread-safe.
  virtual std::unique_ptr<PaddlePredictor> Clone() = 0;
Y
Yan Chunwei 已提交
109 110

  // Destroy the Predictor.
111
  virtual ~PaddlePredictor() = default;
112 113

  // The common configs for all the predictors.
D
dzhwinter 已提交
114
  struct PADDLE_DLL Config {
Y
Yan Chunwei 已提交
115
    std::string model_dir;  // path to the model directory.
Y
Yan Chunwei 已提交
116 117 118
  };
};

D
dzhwinter 已提交
119
struct PADDLE_DLL NativeConfig : public PaddlePredictor::Config {
Y
Yan Chunwei 已提交
120
  // GPU related fields.
Y
Yan Chunwei 已提交
121
  bool use_gpu{false};
Y
Yan Chunwei 已提交
122 123
  int device{0};
  float fraction_of_gpu_memory{-1.f};  // Negative to notify initialization.
124 125
  // Specify the variable's name of each input.
  bool specify_input_name{false};
Y
Yan Chunwei 已提交
126

Y
Yan Chunwei 已提交
127 128 129 130
  std::string prog_file;
  std::string param_file;
};

Y
Yan Chunwei 已提交
131
// Configurations for Anakin engine.
D
dzhwinter 已提交
132
struct PADDLE_DLL AnakinConfig : public PaddlePredictor::Config {
C
cuichaowen 已提交
133
  enum TargetType { NVGPU = 0, X86 };
Y
Yan Chunwei 已提交
134 135 136
  int device;
  std::string model_file;
  int max_batch_size{-1};
C
cuichaowen 已提交
137
  TargetType target_type;
Y
Yan Chunwei 已提交
138 139
};

D
dzhwinter 已提交
140
struct PADDLE_DLL TensorRTConfig : public NativeConfig {
141 142
  // Determine whether a subgraph will be executed by TRT.
  int min_subgraph_size{1};
143 144 145 146 147 148 149 150
  // While TensorRT allows an engine optimized for a given max batch size
  // to run at any smaller size, the performance for those smaller
  // sizes may not be as well-optimized. Therefore, Max batch is best
  // equivalent to the runtime batch size.
  int max_batch_size{1};
  // For workspace_size, refer it from here:
  // https://docs.nvidia.com/deeplearning/sdk/tensorrt-developer-guide/index.html#troubleshooting
  int workspace_size{1 << 30};
151 152
};

Y
Yan Chunwei 已提交
153 154 155 156 157 158 159 160 161
// A factory to help create different predictors.
//
// FOR EXTENSION DEVELOPER:
// Different predictors are designated by config type and engine kind. Similar
// configs can be merged, but there shouldn't be a huge config containing
// different fields for more than one kind of predictors.
//
// Similarly, each engine kind should map to a unique predictor implementation.
template <typename ConfigT, PaddleEngineKind engine = PaddleEngineKind::kNative>
D
dzhwinter 已提交
162 163
PADDLE_DLL std::unique_ptr<PaddlePredictor> CreatePaddlePredictor(
    const ConfigT& config);
164

D
dzhwinter 已提交
165
PADDLE_DLL int PaddleDtypeSize(PaddleDType dtype);
166

Y
Yan Chunwei 已提交
167
}  // namespace paddle