paddle_api.h 13.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// Copyright (c) 2018 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.
#pragma once

16 17 18
/*! \file paddle_api.h
 */

Y
Yan Chunwei 已提交
19 20 21 22 23 24
/*! \mainpage Paddle Inference APIs
 * \section intro_sec Introduction
 * The Paddle inference library aims to offer an high performance inference SDK
 * for Paddle users.
 */

25
#include <cassert>
26
#include <map>
27 28 29 30
#include <memory>
#include <string>
#include <vector>

31 32
/*! \namespace paddle
 */
33 34
namespace paddle {

35
/// \brief Paddle data type.
36 37 38
enum PaddleDType {
  FLOAT32,
  INT64,
39
  INT32,
40
  UINT8,
41 42 43
  // TODO(Superjomn) support more data types if needed.
};

44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
/// \brief Memory manager for PaddleTensor.
///
/// The PaddleBuf holds a buffer for data input or output. The memory can be
/// allocated by user or by PaddleBuf itself, but in any case, the PaddleBuf
/// should be reused for better performance.
///
/// For user allocated memory, the following API can be used:
/// - PaddleBuf(void* data, size_t length) to set an external memory by
/// specifying the memory address and length.
/// - Reset(void* data, size_t length) to reset the PaddleBuf with an external
/// memory.
/// ATTENTION, for user allocated memory, deallocation should be done by users
/// externally after the program finished. The PaddleBuf won't do any allocation
/// or deallocation.
///
/// To have the PaddleBuf allocate and manage the memory:
/// - PaddleBuf(size_t length) will allocate a memory of size `length`.
/// - Resize(size_t length) resize the memory to no less than `length`,
/// ATTENTION
///  if the allocated memory is larger than `length`, nothing will done.
///
/// Usage:
///
/// Let PaddleBuf manage the memory internally.
/// \code{cpp}
/// const int num_elements = 128;
/// PaddleBuf buf(num_elements/// sizeof(float));
/// \endcode
///
/// Or
/// \code{cpp}
/// PaddleBuf buf;
/// buf.Resize(num_elements/// sizeof(float));
/// \endcode
/// Works the exactly the same.
///
/// One can also make the `PaddleBuf` use the external memory.
/// \code{cpp}
/// PaddleBuf buf;
/// void* external_memory = new float[num_elements];
/// buf.Reset(external_memory, num_elements*sizeof(float));
/// ...
/// delete[] external_memory; // manage the memory lifetime outside.
/// \endcode
///
89 90
class PaddleBuf {
 public:
91 92 93 94 95
  ///
  /// \brief PaddleBuf allocate memory internally, and manage it.
  ///
  /// \param[in] length The length of data.
  ///
96 97
  explicit PaddleBuf(size_t length)
      : data_(new char[length]), length_(length), memory_owned_(true) {}
98 99 100 101 102 103
  ///
  /// \brief Set external memory, the PaddleBuf won't manage it.
  ///
  /// \param[in] data The start address of the external memory.
  /// \param[in] length The length of data.
  ///
104 105
  PaddleBuf(void* data, size_t length)
      : data_(data), length_(length), memory_owned_{false} {}
106 107 108 109 110 111 112 113 114 115 116
  ///
  /// \brief Copy only available when memory is managed externally.
  ///
  /// \param[in] other another `PaddleBuf`
  ///
  explicit PaddleBuf(const PaddleBuf& other);
  ///
  /// \brief Resize the memory.
  ///
  /// \param[in] length The length of data.
  ///
117
  void Resize(size_t length);
118 119 120 121 122 123
  ///
  /// \brief Reset to external memory, with address and length set.
  ///
  /// \param[in] data The start address of the external memory.
  /// \param[in] length The length of data.
  ///
124
  void Reset(void* data, size_t length);
125 126 127
  ///
  /// \brief Tell whether the buffer is empty.
  ///
128
  bool empty() const { return length_ == 0; }
129 130 131
  ///
  /// \brief Get the data's memory address.
  ///
132
  void* data() const { return data_; }
133 134 135
  ///
  /// \brief Get the memory length.
  ///
136 137 138 139 140 141 142 143 144 145
  size_t length() const { return length_; }

  ~PaddleBuf() { Free(); }
  PaddleBuf& operator=(const PaddleBuf&);
  PaddleBuf& operator=(PaddleBuf&&);
  PaddleBuf() = default;
  PaddleBuf(PaddleBuf&& other);

 private:
  void Free();
146 147
  void* data_{nullptr};  ///< pointer to the data memory.
  size_t length_{0};     ///< number of memory bytes.
148 149 150
  bool memory_owned_{true};
};

151 152 153
///
/// \brief Basic input and output data structure for PaddlePredictor.
///
154 155
struct PaddleTensor {
  PaddleTensor() = default;
156
  std::string name;  ///<  variable name.
157
  std::vector<int> shape;
158
  PaddleBuf data;  ///<  blob of data.
159
  PaddleDType dtype;
160
  std::vector<std::vector<size_t>> lod;  ///<  Tensor+LoD equals LoDTensor
161 162 163
};

enum class PaddlePlace { kUNK = -1, kCPU, kGPU };
Y
Yan Chunwei 已提交
164

165 166 167 168 169 170 171 172
/// \brief Represents an n-dimensional array of values.
/// The ZeroCopyTensor is used to store the input or output of the network.
/// Zero copy means that the tensor supports direct copy of host or device data
/// to device,
/// eliminating additional CPU copy. ZeroCopyTensor is only used in the
/// AnalysisPredictor.
/// It is obtained through PaddlePredictor::GetinputTensor()
/// and PaddlePredictor::GetOutputTensor() interface.
173 174
class ZeroCopyTensor {
 public:
175 176 177 178
  /// \brief Reset the shape of the tensor.
  /// Generally it's only used for the input tensor.
  /// Reshape must be called before calling mutable_data() or copy_from_cpu()
  /// \param shape The shape to set.
179 180
  void Reshape(const std::vector<int>& shape);

181 182 183 184
  /// \brief Get the memory pointer in CPU or GPU with specific data type.
  /// Please Reshape the tensor first before call this.
  /// It's usually used to get input data pointer.
  /// \param place The place of the tensor.
185 186
  template <typename T>
  T* mutable_data(PaddlePlace place);
187 188 189 190 191 192

  /// \brief Get the memory pointer directly.
  /// It's usually used to get the output data pointer.
  /// \param[out] place To get the device type of the tensor.
  /// \param[out] size To get the data size of the tensor.
  /// \return The tensor data buffer pointer.
193 194 195
  template <typename T>
  T* data(PaddlePlace* place, int* size) const;

196 197 198
  /// \brief Copy the host memory to tensor data.
  /// It's usually used to set the input tensor data.
  /// \param data The pointer of the data, from which the tensor will copy.
N
nhzlx 已提交
199 200 201
  template <typename T>
  void copy_from_cpu(const T* data);

202 203 204
  /// \brief Copy the tensor data to the host memory.
  /// It's usually used to get the output tensor data.
  /// \param[out] data The tensor will copy the data to the address.
N
nhzlx 已提交
205 206 207
  template <typename T>
  void copy_to_cpu(T* data);

208
  /// \brief Return the shape of the Tensor.
N
nhzlx 已提交
209
  std::vector<int> shape() const;
210

211 212 213 214
  /// \brief Set lod info of the tensor.
  /// More about LOD can be seen here:
  ///  https://www.paddlepaddle.org.cn/documentation/docs/zh/beginners_guide/basic_concept/lod_tensor.html#lodtensor
  /// \param x the lod info.
215
  void SetLoD(const std::vector<std::vector<size_t>>& x);
216
  /// \brief Return the lod info of the tensor.
217
  std::vector<std::vector<size_t>> lod() const;
218
  /// \brief Return the name of the tensor.
219
  const std::string& name() const { return name_; }
N
nhzlx 已提交
220 221 222 223
  void SetPlace(PaddlePlace place, int device = -1) {
    place_ = place;
    device_ = device;
  }
224

225 226 227
  /// \brief Return the data type of the tensor.
  /// It's usually used to get the output tensor data type.
  /// \return The data type of the tensor.
N
nhzlx 已提交
228
  PaddleDType type() const;
229

230 231 232 233 234 235 236 237 238 239
 protected:
  explicit ZeroCopyTensor(void* scope) : scope_{scope} {}
  void SetName(const std::string& name) { name_ = name; }
  void* FindTensor() const;

 private:
  std::string name_;
  bool input_or_output_;
  friend class AnalysisPredictor;
  void* scope_{nullptr};
240 241 242
  // The corresponding tensor pointer inside Paddle workspace is cached for
  // performance.
  mutable void* tensor_{nullptr};
N
nhzlx 已提交
243
  PaddlePlace place_;
244
  PaddleDType dtype_;
N
nhzlx 已提交
245
  int device_;
246 247
};

248 249
/// \brief A Predictor for executing inference on a model.
/// Base class for AnalysisPredictor and NativePaddlePredictor.
250 251 252 253 254 255 256
class PaddlePredictor {
 public:
  struct Config;
  PaddlePredictor() = default;
  PaddlePredictor(const PaddlePredictor&) = delete;
  PaddlePredictor& operator=(const PaddlePredictor&) = delete;

257 258 259 260 261 262 263 264
  /// \brief This interface takes input and runs the network.
  /// There are redundant copies of data between hosts in this operation,
  /// so it is more recommended to use the zecopyrun interface
  /// \param[in] inputs An list of PaddleTensor as the input to the network.
  /// \param[out] output_data Pointer to the tensor list, which holds the output
  /// paddletensor
  /// \param[in] batch_size This setting has been discarded and can be ignored.
  /// \return Whether the run is successful
265 266 267 268
  virtual bool Run(const std::vector<PaddleTensor>& inputs,
                   std::vector<PaddleTensor>* output_data,
                   int batch_size = -1) = 0;

269 270 271
  /// \brief  Used to get the name of the network input.
  /// Be inherited by AnalysisPredictor, Only used in ZeroCopy scenarios.
  /// \return Input tensor names.
N
nhzlx 已提交
272 273
  virtual std::vector<std::string> GetInputNames() { return {}; }

274 275
  /// \brief Get the input shape of the model.
  /// \return A map contains all the input names and shape defined in the model.
276 277 278 279
  virtual std::map<std::string, std::vector<int64_t>> GetInputTensorShape() {
    return {};
  }

280 281 282
  /// \brief Used to get the name of the network output.
  /// Be inherited by AnalysisPredictor, Only used in ZeroCopy scenarios.
  /// \return Output tensor names.
N
nhzlx 已提交
283 284
  virtual std::vector<std::string> GetOutputNames() { return {}; }

285 286 287 288 289
  /// \brief Get the input ZeroCopyTensor by name.
  /// Be inherited by AnalysisPredictor, Only used in ZeroCopy scenarios.
  /// The name is obtained from the GetInputNames() interface.
  /// \param name The input tensor name.
  /// \return Return the corresponding input ZeroCopyTensor.
290 291 292 293
  virtual std::unique_ptr<ZeroCopyTensor> GetInputTensor(
      const std::string& name) {
    return nullptr;
  }
294 295 296 297 298 299

  /// \brief Get the output ZeroCopyTensor by name.
  /// Be inherited by AnalysisPredictor, Only used in ZeroCopy scenarios.
  /// The name is obtained from the GetOutputNames() interface.
  /// \param name The output tensor name.
  /// \return Return the corresponding output ZeroCopyTensor.
300 301 302 303
  virtual std::unique_ptr<ZeroCopyTensor> GetOutputTensor(
      const std::string& name) {
    return nullptr;
  }
304 305 306 307 308 309 310 311 312
  /// \brief Run the network with zero-copied inputs and outputs.
  /// Be inherited by AnalysisPredictor and only used in ZeroCopy scenarios.
  /// This will save the IO copy for transfering inputs and outputs to predictor
  /// workspace
  /// and get some performance improvement.
  /// To use it, one should call the AnalysisConfig.SwitchUseFeedFetchOp(true)
  /// and then use the `GetInputTensor` and `GetOutputTensor`
  /// to directly write or read the input/output tensors.
  /// \return Whether the run is successful
313 314
  virtual bool ZeroCopyRun() { return false; }

315 316 317 318
  /// \brief Clone an existing predictor
  /// When using clone, the same network will be created,
  /// and the parameters between them are shared.
  /// \return unique_ptr which contains the pointer of predictor
319 320
  virtual std::unique_ptr<PaddlePredictor> Clone() = 0;

321
  /// \brief Destroy the Predictor.
322 323
  virtual ~PaddlePredictor() = default;

324
  virtual std::string GetSerializedProgram() const {
Y
Yan Chunwei 已提交
325 326
    assert(false);  // Force raise error.
    return "NotImplemented";
327
  }
Y
Yan Chunwei 已提交
328

329
  /// \brief Base class for NativeConfig and AnalysisConfig.
330
  struct Config {
331
    std::string model_dir; /*!< path to the model directory. */
332 333 334
  };
};

335 336 337 338 339 340 341
///
/// \brief configuration manager for `NativePredictor`.
///
/// `AnalysisConfig` manages configurations of `NativePredictor`.
/// During inference procedure, there are many parameters(model/params path,
/// place of inference, etc.)
///
342
struct NativeConfig : public PaddlePredictor::Config {
343
  /// GPU related fields.
344 345
  bool use_gpu{false};
  int device{0};
346
  float fraction_of_gpu_memory{
347
      -1.f};  ///< Change to a float in (0,1] if needed.
348 349

  std::string prog_file;
350 351
  std::string
      param_file;  ///< Specify the exact path of program and parameter files.
352

353 354 355 356
  bool specify_input_name{false};  ///< Specify the variable's name of each
                                   ///< input if input tensors don't follow the
                                   ///< `feeds` and `fetches` of the phase
                                   ///< `save_inference_model`.
L
luotao1 已提交
357

358
  /// Set and get the number of cpu math library threads.
L
luotao1 已提交
359 360 361 362 363
  void SetCpuMathLibraryNumThreads(int cpu_math_library_num_threads) {
    cpu_math_library_num_threads_ = cpu_math_library_num_threads;
  }
  int cpu_math_library_num_threads() const {
    return cpu_math_library_num_threads_;
L
luotao1 已提交
364 365 366
  }

 protected:
367 368 369
  int cpu_math_library_num_threads_{1};  ///< number of cpu math library (such
                                         ///< as MKL, OpenBlas) threads for each
                                         ///< instance.
370 371
};

372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
///
/// \brief A factory to help create different predictors.
///
/// Usage:
///
/// \code{.cpp}
/// NativeConfig config;
/// ... // change the configs.
/// auto native_predictor = CreatePaddlePredictor(config);
/// \endcode
///
/// FOR EXTENSION DEVELOPER:
/// Different predictors are designated by config type. Similar configs can be
/// merged, but there shouldn't be a huge config containing different fields for
/// more than one kind of predictors.
////
388 389 390
template <typename ConfigT>
std::unique_ptr<PaddlePredictor> CreatePaddlePredictor(const ConfigT& config);

391 392 393
/// NOTE The following APIs are too trivial, we will discard it in the following
/// versions.
///
394
enum class PaddleEngineKind {
395 396 397
  kNative = 0,         ///< Use the native Fluid facility.
  kAutoMixedTensorRT,  ///< Automatically mix Fluid with TensorRT.
  kAnalysis,           ///< More optimization.
398 399 400 401 402 403 404
};

template <typename ConfigT, PaddleEngineKind engine>
std::unique_ptr<PaddlePredictor> CreatePaddlePredictor(const ConfigT& config);

int PaddleDtypeSize(PaddleDType dtype);

Y
Yan Chunwei 已提交
405 406
std::string get_version();

407
}  // namespace paddle