paddle_analysis_config.h 9.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// 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

#include <cassert>
#include <memory>
#include <string>
19
#include <unordered_set>
20 21
#include <vector>

22 23
/*! \file */

24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
// Here we include some header files with relative paths, for that in deploy,
// the abstract path of this header file will be changed.
#include "paddle_api.h"           // NOLINT
#include "paddle_pass_builder.h"  // NOLINT

namespace paddle {

class AnalysisPredictor;
// ==
//
// -----------------------------------------------------------------------------------
// NOTE: The following APIs are not mature yet, we are still working on them.
namespace contrib {

// NOTE WIP, not stable yet.
39 40
struct AnalysisConfig {
  AnalysisConfig() = default;
41
  explicit AnalysisConfig(const AnalysisConfig& other);
42 43 44 45
  explicit AnalysisConfig(const std::string& model_dir);
  explicit AnalysisConfig(const std::string& prog_file,
                          const std::string& params_file);

46 47
  /** Set model with a directory.
   */
48
  void SetModel(const std::string& model_dir) { model_dir_ = model_dir; }
49 50
  /** Set model with two specific pathes for program and parameters.
   */
51 52
  void SetModel(const std::string& prog_file_path,
                const std::string& params_file_path);
53 54
  /** Set program file path.
   */
55
  void SetProgFile(const std::string& x) { prog_file_ = x; }
56 57
  /** Set parameter composed file path.
   */
58
  void SetParamsFile(const std::string& x) { params_file_ = x; }
59 60
  /** Get the model directory path.
   */
61
  const std::string& model_dir() const { return model_dir_; }
62 63
  /** Get the program file path.
   */
64
  const std::string& prog_file() const { return prog_file_; }
65 66
  /** Get the composed parameters file.
   */
67 68 69
  const std::string& params_file() const { return params_file_; }

  // GPU related.
70 71 72 73 74 75

  /**
   * \brief Turn on GPU.
   * @param memory_pool_init_size_mb initial size of the GPU memory pool in MB.
   * @param device_id the GPU card to use (default is 0).
   */
76
  void EnableUseGpu(uint64_t memory_pool_init_size_mb, int device_id = 0);
77 78
  /** Turn off the GPU.
   */
79
  void DisableGpu();
80 81
  /** A bool state telling whether the GPU is turned on.
   */
82
  bool use_gpu() const { return use_gpu_; }
83 84
  /** Get the GPU device id.
   */
85
  int gpu_device_id() const { return device_id_; }
86 87
  /** Get the initial size in MB of the GPU memory pool.
   */
88
  int memory_pool_init_size_mb() const { return memory_pool_init_size_mb_; }
89 90
  /** Get the proportion of the initial memory pool size compared to the device.
   */
91
  float fraction_of_gpu_memory_for_pool() const;
92

93 94 95 96
  /** \brief Control whether to perform IR graph optimization.
   *
   * If turned off, the AnalysisConfig will act just like a NativeConfig.
   */
97
  void SwitchIrOptim(int x = true) { enable_ir_optim_ = x; }
98 99
  /** A boolean state tell whether the ir graph optimization is actived.
   */
100
  bool ir_optim() const { return enable_ir_optim_; }
101

102 103 104 105
  /** \brief INTERNAL Determine whether to use the feed and fetch operators.
   * Just for internal development, not stable yet.
   * When ZeroCopyTensor is used, this should turned off.
   */
106
  void SwitchUseFeedFetchOps(int x = true) { use_feed_fetch_ops_ = x; }
107 108
  /** A boolean state telling whether to use the feed and fetch operators.
   */
109
  bool use_feed_fetch_ops_enabled() const { return use_feed_fetch_ops_; }
110

111 112 113 114 115 116
  /** \brief Control whether to specify the inputs' names.
   *
   * The PaddleTensor type has a `name` member, assign it with the corresponding
   * variable name. This is used only when the input PaddleTensors passed to the
   * `PaddlePredictor.Run(...)` cannot follow the order in the training phase.
   */
117
  void SwitchSpecifyInputNames(bool x = true) { specify_input_name_ = x; }
118 119 120 121

  /** A boolean state tell whether the input PaddleTensor names specified should
   * be used to reorder the inputs in `PaddlePredictor.Run(...)`.
   */
122
  bool specify_input_name() const { return specify_input_name_; }
123

124 125 126 127 128 129 130 131 132 133 134 135 136
  /**
   * \brief Turn on the TensorRT engine.
   *
   * The TensorRT engine will accelerate some subgraphes in the original Fluid
   * computation graph. In some models such as TensorRT50, GoogleNet and so on,
   * it gains significant performance acceleration.
   *
   * @param workspace_size the memory size(in byte) used for TensorRT workspace.
   * @param max_batch_size the maximum batch size of this prediction task,
   * better set as small as possible, or performance loss.
   * @param min_subgrpah_size the minimum TensorRT subgraph size needed, if a
   * subgraph is less than this, it will not transfer to TensorRT engine.
   */
137
  void EnableTensorRtEngine(int workspace_size = 1 << 20,
138
                            int max_batch_size = 1, int min_subgraph_size = 3);
139 140
  /** A boolean state telling whether the TensorRT engine is used.
   */
141 142
  bool tensorrt_engine_enabled() const { return use_tensorrt_; }

143 144
  /** Control whther to debug IR graph analysis phase.
   */
145
  void SwitchIrDebug(int x = true) { ir_debug_ = x; }
146

147 148
  /** Turn on MKLDNN.
   */
L
luotao1 已提交
149
  void EnableMKLDNN();
150 151
  /** A boolean state telling whether to use the MKLDNN.
   */
152 153
  bool mkldnn_enabled() const { return use_mkldnn_; }

154 155
  /** Set and get the number of cpu math library threads.
   */
156
  void SetCpuMathLibraryNumThreads(int cpu_math_library_num_threads);
157 158
  /** An int state telling how many threads are used in the CPU math library.
   */
159 160 161 162
  int cpu_math_library_num_threads() const {
    return cpu_math_library_num_threads_;
  }

163 164
  /** Transform the AnalysisConfig to NativeConfig.
   */
165 166 167 168 169 170 171 172 173 174 175
  NativeConfig ToNativeConfig() const {
    NativeConfig config;
    config.model_dir = model_dir_;
    config.prog_file = prog_file_;
    config.param_file = params_file_;
    config.use_gpu = use_gpu_;
    config.device = device_id_;
    config.fraction_of_gpu_memory = fraction_of_gpu_memory_for_pool();
    config.specify_input_name = specify_input_name_;
    return config;
  }
176 177 178
  /** Specify the operator type list to use MKLDNN acceleration.
   * @param op_list the operator type list.
   */
179 180 181
  void SetMKLDNNOp(std::unordered_set<std::string> op_list) {
    mkldnn_enabled_op_types_ = op_list;
  }
182

183 184 185 186 187 188
  /** Specify the memory buffer of program and parameter
   * @param prog_buffer the memory buffer of program.
   * @param prog_buffer_size the size of the data.
   * @param params_buffer the memory buffer of the composed parameters file.
   * @param params_buffer_size the size of the commposed parameters data.
   */
T
Tao Luo 已提交
189
  void SetModelBuffer(const char* prog_buffer, size_t prog_buffer_size,
190 191 192
                      const char* params_buffer, size_t params_buffer_size);
  /** A boolean state telling whether the model is set from the CPU memory.
   */
T
Tao Luo 已提交
193
  bool model_from_memory() const { return model_from_memory_; }
T
Tao Luo 已提交
194

Y
Yan Chunwei 已提交
195 196 197 198 199 200 201
  /** Turn on memory optimize
   * NOTE still in development, will release latter.
   */
  void EnableMemoryOptim(bool force_update_cache = false);
  /** Tell whether the memory optimization is activated. */
  bool enable_memory_optim() const;

202 203
  friend class ::paddle::AnalysisPredictor;

204 205 206
  /** NOTE just for developer, not an official API, easily to be broken.
   * Get a pass builder for customize the passes in IR analysis phase.
   */
207 208 209 210 211 212 213 214
  PassStrategy* pass_builder() const;

 protected:
  // Update the config.
  void Update();

  std::string SerializeInfoCache();

215
 protected:
216 217 218 219 220 221 222 223 224 225 226
  // Model pathes.
  std::string model_dir_;
  std::string prog_file_;
  std::string params_file_;

  // GPU releated.
  bool use_gpu_{false};
  int device_id_{0};
  uint64_t memory_pool_init_size_mb_{100};  // initial size is 100MB.

  // TensorRT releated.
227
  bool use_tensorrt_{false};
228 229
  // For workspace_size, refer it from here:
  // https://docs.nvidia.com/deeplearning/sdk/tensorrt-developer-guide/index.html#troubleshooting
230
  int tensorrt_workspace_size_;
231 232 233 234
  // 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.
235
  int tensorrt_max_batchsize_;
236 237 238 239 240
  //  We transform the Ops that can be converted into TRT layer in the model,
  //  and aggregate these Ops into subgraphs for TRT execution.
  //  We set this variable to control the minimum number of nodes in the
  //  subgraph, 3 as default value.
  int tensorrt_min_subgraph_size_{3};
241

Y
Yan Chunwei 已提交
242 243 244 245
  // memory reuse related.
  bool enable_memory_optim_{false};
  bool memory_optim_force_update_{false};

246 247 248
  bool use_mkldnn_{false};
  std::unordered_set<std::string> mkldnn_enabled_op_types_;

T
Tao Luo 已提交
249
  bool model_from_memory_{false};
250

251 252 253 254 255 256 257 258 259 260 261 262
  bool enable_ir_optim_{true};
  bool use_feed_fetch_ops_{true};
  bool ir_debug_{false};

  bool specify_input_name_{false};

  int cpu_math_library_num_threads_{1};

  // A runtime cache, shouldn't be transferred to others.
  std::string serialized_info_cache_;

  mutable std::unique_ptr<PassStrategy> pass_builder_;
263 264 265 266
};

}  // namespace contrib
}  // namespace paddle