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

///
/// \file paddle_analysis_config.h
///
/// \brief Paddle Analysis Config API信息
///
/// \author paddle-infer@baidu.com
/// \date 2020-03-20
/// \since 1.7
///

25 26 27
#pragma once

#include <cassert>
28
#include <map>
29 30
#include <memory>
#include <string>
31
#include <unordered_set>
32
#include <utility>
33
#include <vector>
34

35
#include "paddle_infer_declare.h"  // NOLINT
36

37
/*! \file */
38 39 40 41
// 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
42 43 44
#ifdef PADDLE_WITH_MKLDNN
#include "paddle_mkldnn_quantizer_config.h"  // NOLINT
#endif
45 46 47 48

namespace paddle {

class AnalysisPredictor;
49
struct MkldnnQuantizerConfig;
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
struct LiteNNAdapterConfig {
  bool use_nnadapter{false};
  std::string nnadapter_model_cache_dir;
  std::map<std::string, std::vector<char>> nnadapter_model_cache_buffers;
  std::vector<std::string> nnadapter_device_names;
  std::string nnadapter_context_properties;
  std::string nnadapter_subgraph_partition_config_path;
  std::string nnadapter_subgraph_partition_config_buffer;

  LiteNNAdapterConfig& SetDeviceNames(const std::vector<std::string>& names);

  LiteNNAdapterConfig& SetContextProperties(const std::string& properties);

  LiteNNAdapterConfig& SetModelCacheDir(const std::string& dir);

  LiteNNAdapterConfig& SetModelCacheBuffers(
      const std::string& model_cache_token,
      const std::vector<char>& model_cache_buffer);

  LiteNNAdapterConfig& SetSubgraphPartitionConfigPath(const std::string& path);

  LiteNNAdapterConfig& SetSubgraphPartitionConfigBuffer(
      const std::string& buffer);

  LiteNNAdapterConfig& Enable();
  LiteNNAdapterConfig& Disable();
};

79 80 81 82 83 84 85 86 87 88 89 90 91 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 124 125 126
struct DistConfig {
  bool use_dist_model() const { return use_dist_model_; }
  void EnableDistModel(bool use_dist_model) {
    use_dist_model_ = use_dist_model;
  }

  std::vector<std::string> trainer_endpoints() const {
    return trainer_endpoints_;
  }

  std::string current_endpoint() const { return current_endpoint_; }

  void SetEndpoints(const std::vector<std::string>& trainer_endpoints,
                    const std::string& current_endpoint) {
    trainer_endpoints_ = trainer_endpoints;
    current_endpoint_ = current_endpoint;
  }

  int64_t nranks() const { return nranks_; }

  int64_t rank() const { return rank_; }

  void SetRanks(int64_t nranks, int64_t rank) {
    nranks_ = nranks;
    rank_ = rank;
  }

  std::string comm_init_config() const { return comm_init_config_; }

  void SetCommInitConfig(const std::string& comm_init_config) {
    comm_init_config_ = comm_init_config;
  }

  void SetCarrierId(const std::string& carrier_id) { carrier_id_ = carrier_id; }

  std::string carrier_id() const { return carrier_id_; }

 protected:
  // DistModel Inference related
  bool use_dist_model_{false};  // whether use DistModel or not
  std::vector<std::string> trainer_endpoints_{};  // all trainers' endpoints
  std::string current_endpoint_{};                // current trainer's endpoint
  int64_t nranks_{1};               // total ranks (number of trainers)
  int64_t rank_{0};                 // rank
  std::string comm_init_config_{};  // converter config path
  std::string carrier_id_{"inference"};
};

127
///
128
/// \brief configuration manager for AnalysisPredictor.
129 130
/// \since 1.7.0
///
131
/// AnalysisConfig manages configurations of AnalysisPredictor.
132 133 134 135 136
/// During inference procedure, there are many parameters(model/params path,
/// place of inference, etc.)
/// to be specified, and various optimizations(subgraph fusion, memory
/// optimazation, TensorRT engine, etc.)
/// to be done. Users can manage these settings by creating and modifying an
137 138
/// AnalysisConfig,
/// and loading it into AnalysisPredictor.
139
///
140
struct PD_INFER_DECL AnalysisConfig {
141
  AnalysisConfig() = default;
142
  ///
143 144
  /// \brief Construct a new AnalysisConfig from another
  /// AnalysisConfig.
145
  ///
146
  /// \param[in] other another AnalysisConfig
147
  ///
148
  AnalysisConfig(const AnalysisConfig& other);
149
  ///
150
  /// \brief Construct a new AnalysisConfig from a no-combined model.
151 152 153
  ///
  /// \param[in] model_dir model directory of the no-combined model.
  ///
154
  explicit AnalysisConfig(const std::string& model_dir);
155
  ///
156
  /// \brief Construct a new AnalysisConfig from a combined model.
157 158 159 160
  ///
  /// \param[in] prog_file model file path of the combined model.
  /// \param[in] params_file params file path of the combined model.
  ///
161 162
  explicit AnalysisConfig(const std::string& prog_file,
                          const std::string& params_file);
163 164 165
  ///
  /// \brief Precision of inference in TensorRT.
  ///
N
nhzlx 已提交
166
  enum class Precision {
167 168 169
    kFloat32 = 0,  ///< fp32
    kInt8,         ///< int8
    kHalf,         ///< fp16
170 171 172
    kBf16,         ///< bf16
  };

173 174 175 176 177
  ///
  /// \brief Set the no-combined model dir path.
  ///
  /// \param model_dir model dir path.
  ///
178
  void SetModel(const std::string& model_dir) { model_dir_ = model_dir; }
179 180 181 182 183 184 185 186

  ///
  /// \brief Set the combined model with two specific pathes for program and
  /// parameters.
  ///
  /// \param prog_file_path model file path of the combined model.
  /// \param params_file_path params file path of the combined model.
  ///
187 188
  void SetModel(const std::string& prog_file_path,
                const std::string& params_file_path);
189 190 191 192 193
  ///
  /// \brief Set the model file path of a combined model.
  ///
  /// \param x model file path.
  ///
194
  void SetProgFile(const std::string& x) { prog_file_ = x; }
195 196 197 198 199
  ///
  /// \brief Set the params file path of a combined model.
  ///
  /// \param x params file path.
  ///
200
  void SetParamsFile(const std::string& x) { params_file_ = x; }
201 202 203 204 205 206

  ///
  /// \brief Set the path of optimization cache directory.
  ///
  /// \param opt_cache_dir the path of optimization cache directory.
  ///
207 208 209
  void SetOptimCacheDir(const std::string& opt_cache_dir) {
    opt_cache_dir_ = opt_cache_dir;
  }
210 211 212 213 214
  ///
  /// \brief Get the model directory path.
  ///
  /// \return const std::string& The model directory path.
  ///
215
  const std::string& model_dir() const { return model_dir_; }
216 217 218 219 220
  ///
  /// \brief Get the program file path.
  ///
  /// \return const std::string& The program file path.
  ///
221
  const std::string& prog_file() const { return prog_file_; }
222 223 224 225 226
  ///
  /// \brief Get the combined parameters file.
  ///
  /// \return const std::string& The combined parameters file.
  ///
227 228
  const std::string& params_file() const { return params_file_; }

229
  // Padding related.
230 231 232 233 234

  ///
  /// \brief Turn off FC Padding.
  ///
  ///
235
  void DisableFCPadding();
236 237 238 239 240
  ///
  /// \brief A boolean state telling whether fc padding is used.
  ///
  /// \return bool Whether fc padding is used.
  ///
241 242
  bool use_fc_padding() const { return use_fc_padding_; }

243
  // GPU related.
244

245 246 247 248 249
  ///
  /// \brief Turn on GPU.
  ///
  /// \param memory_pool_init_size_mb initial size of the GPU memory pool in MB.
  /// \param device_id device_id the GPU card to use (default is 0).
250
  /// \param precision the precision used in Paddle-GPU inference.
251
  ///
252 253 254 255
  void EnableUseGpu(uint64_t memory_pool_init_size_mb,
                    int device_id = 0,
                    Precision precision_mode = Precision::kFloat32);

256 257 258 259
  ///
  /// \brief Turn off GPU.
  ///
  ///
260
  void DisableGpu();
261

262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
  ///
  /// \brief Turn on XPU.
  ///
  /// \param l3_workspace_size The size of the video memory allocated by the l3
  ///         cache, the maximum is 16M.
  /// \param locked Whether the allocated L3 cache can be locked. If false,
  ///       it means that the L3 cache is not locked, and the allocated L3
  ///       cache can be shared by multiple models, and multiple models
  ///       sharing the L3 cache will be executed sequentially on the card.
  /// \param autotune Whether to autotune the conv operator in the model. If
  ///       true, when the conv operator of a certain dimension is executed
  ///       for the first time, it will automatically search for a better
  ///       algorithm to improve the performance of subsequent conv operators
  ///       of the same dimension.
  /// \param autotune_file Specify the path of the autotune file. If
  ///       autotune_file is specified, the algorithm specified in the
  ///       file will be used and autotune will not be performed again.
  /// \param precision Calculation accuracy of multi_encoder
  /// \param adaptive_seqlen Is the input of multi_encoder variable length
281
  /// \param enable_multi_stream Whether to enable the multi stream of xpu.
282
  ///
W
Wilber 已提交
283 284 285 286
  void EnableXpu(int l3_workspace_size = 0xfffc00,
                 bool locked = false,
                 bool autotune = true,
                 const std::string& autotune_file = "",
W
Wilber 已提交
287
                 const std::string& precision = "int16",
288 289
                 bool adaptive_seqlen = false,
                 bool enable_multi_stream = false);
J
jianghaicheng 已提交
290

291 292 293 294 295 296 297 298 299 300 301 302 303
  ///
  /// \brief configs of IPU
  ///
  enum class ipu_config_code {
    ipu_device_num,
    ipu_micro_batch_size,
    ipu_enable_pipelining,
    ipu_batches_per_step,
    ipu_enable_fp16,
    ipu_replica_num,
    ipu_available_memory_proportion,
    ipu_enable_half_partial,
    ipu_custom_ops_info,
304 305
    ipu_custom_patterns,
    ipu_enable_model_runtime_executor,
306 307
  };

J
jianghaicheng 已提交
308 309 310
  ///
  /// \brief Turn on IPU.
  ///
311 312 313 314 315 316
  /// \param ipu_device_num the number of IPUs.
  /// \param ipu_micro_batch_size the batch size in the graph, only work with
  /// mutable input shapes.
  /// \param ipu_enable_pipelining enable pipelining.
  /// \param ipu_batches_per_step the number of batches per run in pipelining.
  ///
W
Wilber 已提交
317 318
  void EnableIpu(int ipu_device_num = 1,
                 int ipu_micro_batch_size = 1,
319 320 321 322 323 324 325 326 327 328 329 330
                 bool ipu_enable_pipelining = false,
                 int ipu_batches_per_step = 1);

  ///
  /// \brief Set IPU config.
  ///
  /// \param ipu_enable_fp16 enable fp16.
  /// \param ipu_replica_num the number of graph replication.
  /// \param ipu_available_memory_proportion the available memory proportion for
  /// matmul/conv.
  /// \param ipu_enable_half_partial enable fp16 partial for matmul, only work
  /// with fp16.
331 332
  /// \param ipu_enable_model_runtime_executor whether to use model_runtime
  /// executor.
333
  ///
W
Wilber 已提交
334 335
  void SetIpuConfig(bool ipu_enable_fp16 = false,
                    int ipu_replica_num = 1,
336
                    float ipu_available_memory_proportion = 1.0,
337 338
                    bool ipu_enable_half_partial = false,
                    bool ipu_enable_model_runtime_executor = false);
339

340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
  ///
  /// \brief Set IPU custom ops and patterns.
  ///
  /// \param custom_ops_info the mapper of paddle custom ops and popart ops.
  /// e.g. {{paddle_op_name, popart_op_name, op_domain, op_version}}.
  /// \param custom_patterns the names of popart patterns. e.g. {{pattern_name,
  /// enable_pattern}}}
  ///
  void SetIpuCustomInfo(
      const std::vector<std::vector<std::string>>& ipu_custom_ops_info = {},
      const std::map<std::string, bool>& ipu_custom_patterns = {});

  ///
  /// \brief Load IPU config from configuration file.
  ///
  /// \param config_path configure file path for ipu.
  ///
  void LoadIpuConfig(const std::string& config_path);

359
  ///
360 361 362 363 364 365
  /// \brief Set XPU device id.
  ///
  /// \param device_id the XPU card to use (default is 0).
  ///
  void SetXpuDeviceId(int device_id = 0);
  ///
W
Wilber 已提交
366 367 368 369 370 371
  /// \brief Turn on NPU.
  ///
  /// \param device_id device_id the NPU card to use (default is 0).
  ///
  void EnableNpu(int device_id = 0);
  ///
372 373 374 375 376 377
  /// \brief Turn on CustomDevice.
  ///
  /// \param device_type device_type the custom device to use.
  ///
  /// \param device_id device_id the custom device to use (default is 0).
  ///
378
  void EnableCustomDevice(const std::string& device_type, int device_id = 0);
379
  ///
380 381 382 383 384 385 386 387 388 389 390 391
  /// \brief Turn on ONNXRuntime.
  ///
  void EnableONNXRuntime();
  ///
  /// \brief Turn off ONNXRuntime.
  ///
  void DisableONNXRuntime();
  ///
  /// \brief Turn on ONNXRuntime Optimization.
  ///
  void EnableORTOptimization();
  ///
392 393 394 395
  /// \brief A boolean state telling whether the GPU is turned on.
  ///
  /// \return bool Whether the GPU is turned on.
  ///
396
  bool use_gpu() const { return use_gpu_; }
397
  ///
398 399 400 401 402 403
  /// \brief A boolean state telling whether the XPU is turned on.
  ///
  /// \return bool Whether the XPU is turned on.
  ///
  bool use_xpu() const { return use_xpu_; }
  ///
W
Wilber 已提交
404 405 406 407 408
  /// \brief A boolean state telling whether the NPU is turned on.
  ///
  /// \return bool Whether the NPU is turned on.
  ///
  bool use_npu() const { return use_npu_; }
J
jianghaicheng 已提交
409 410 411 412 413
  /// \brief A boolean state telling whether the IPU is turned on.
  ///
  /// \return bool Whether the IPU is turned on.
  ///
  bool use_ipu() const { return use_ipu_; }
414 415 416 417 418
  /// \brief A boolean state telling whether the CustomDevice is turned on.
  ///
  /// \return bool Whether the CustomDevice is turned on.
  ///
  bool use_custom_device() const { return use_custom_device_; }
W
Wilber 已提交
419
  ///
420 421 422 423 424 425
  /// \brief A boolean state telling whether the ONNXRuntime is turned on.
  ///
  /// \return bool Whether the ONNXRuntime is turned on.
  ///
  bool use_onnxruntime() const { return use_onnxruntime_; }
  ///
426 427 428 429 430 431
  /// \brief A boolean state telling whether the Lite OpenCL is turned on.
  ///
  /// \return bool Whether the Lite OpenCL is turned on.
  ///
  bool use_opencl() const { return use_opencl_; }
  ///
432 433 434 435 436 437 438
  /// \brief A boolean state telling whether the ONNXRuntime Optimization is
  /// turned on.
  ///
  /// \return bool Whether the ONNXRuntime Optimization is turned on.
  ///
  bool ort_optimization_enabled() const { return enable_ort_optimization_; }
  ///
439 440 441 442 443 444
  /// \brief Get the GPU device id.
  ///
  /// \return int The GPU device id.
  ///
  int gpu_device_id() const { return gpu_device_id_; }
  ///
445
  /// \brief Get the XPU device id.
446
  ///
447
  /// \return int The XPU device id.
448
  ///
449
  int xpu_device_id() const { return xpu_device_id_; }
450
  ///
W
Wilber 已提交
451 452 453 454 455
  /// \brief Get the NPU device id.
  ///
  /// \return int The NPU device id.
  ///
  int npu_device_id() const { return npu_device_id_; }
456
  /// \brief Get the number of IPU device .
J
jianghaicheng 已提交
457 458 459 460
  ///
  /// \return int The number of IPU device.
  ///
  int ipu_device_num() const { return ipu_device_num_; }
W
Wilber 已提交
461
  ///
462 463 464 465 466 467 468 469 470 471 472
  /// \brief Get the custom device id.
  ///
  /// \return int The custom device id.
  ///
  int custom_device_id() const { return custom_device_id_; }
  /// \brief Get the custom device type.
  ///
  /// \return string The custom device type.
  ///
  std::string custom_device_type() const { return custom_device_type_; }
  ///
473 474 475 476
  /// \brief Get the initial size in MB of the GPU memory pool.
  ///
  /// \return int The initial size in MB of the GPU memory pool.
  ///
477
  int memory_pool_init_size_mb() const { return memory_pool_init_size_mb_; }
478 479 480 481 482 483
  ///
  /// \brief Get the proportion of the initial memory pool size compared to the
  /// device.
  ///
  /// \return float The proportion of the initial memory pool size.
  ///
484
  float fraction_of_gpu_memory_for_pool() const;
485

486 487 488 489 490
  // CUDNN related.
  ///
  /// \brief Turn on CUDNN.
  ///
  ///
491
  void EnableCUDNN();
492 493 494 495 496
  ///
  /// \brief A boolean state telling whether to use CUDNN.
  ///
  /// \return bool Whether to use CUDNN.
  ///
497 498
  bool cudnn_enabled() const { return use_cudnn_; }

499 500 501 502 503 504
  ///
  /// \brief Control whether to perform IR graph optimization.
  /// If turned off, the AnalysisConfig will act just like a NativeConfig.
  ///
  /// \param x Whether the ir graph optimization is actived.
  ///
505
  void SwitchIrOptim(int x = true) { enable_ir_optim_ = x; }
506 507 508 509 510 511
  ///
  /// \brief A boolean state telling whether the ir graph optimization is
  /// actived.
  ///
  /// \return bool Whether to use ir graph optimization.
  ///
512
  bool ir_optim() const { return enable_ir_optim_; }
513

514 515 516 517 518 519 520
  ///
  /// \brief INTERNAL Determine whether to use the feed and fetch operators.
  /// Just for internal development, not stable yet.
  /// When ZeroCopyTensor is used, this should be turned off.
  ///
  /// \param x Whether to use the feed and fetch operators.
  ///
521
  void SwitchUseFeedFetchOps(int x = true) { use_feed_fetch_ops_ = x; }
522 523 524 525 526 527
  ///
  /// \brief A boolean state telling whether to use the feed and fetch
  /// operators.
  ///
  /// \return bool Whether to use the feed and fetch operators.
  ///
528
  bool use_feed_fetch_ops_enabled() const { return use_feed_fetch_ops_; }
529

530 531 532 533 534 535 536 537 538 539 540
  ///
  /// \brief Control whether to specify the inputs' names.
  /// The ZeroCopyTensor type has a name member, assign it with the
  /// corresponding
  /// variable name. This is used only when the input ZeroCopyTensors passed to
  /// the
  /// AnalysisPredictor.ZeroCopyRun() cannot follow the order in the training
  /// phase.
  ///
  /// \param x Whether to specify the inputs' names.
  ///
541
  void SwitchSpecifyInputNames(bool x = true) { specify_input_name_ = x; }
542 543 544 545 546 547 548
  ///
  /// \brief A boolean state tell whether the input ZeroCopyTensor names
  /// specified should
  /// be used to reorder the inputs in AnalysisPredictor.ZeroCopyRun().
  ///
  /// \return bool Whether to specify the inputs' names.
  ///
549
  bool specify_input_name() const { return specify_input_name_; }
550

551 552 553 554 555 556 557 558 559 560
  ///
  /// \brief Turn on the TensorRT engine.
  /// The TensorRT engine will accelerate some subgraphes in the original Fluid
  /// computation graph. In some models such as resnet50, 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 for less performance loss.
561
  /// \param min_subgraph_size The minimum TensorRT subgraph size needed, if a
562 563 564 565 566 567 568 569
  /// subgraph is smaller than this, it will not be transferred to TensorRT
  /// engine.
  /// \param precision The precision used in TensorRT.
  /// \param use_static Serialize optimization information to disk for reusing.
  /// \param use_calib_mode Use TRT int8 calibration(post training
  /// quantization).
  ///
  ///
570
  void EnableTensorRtEngine(int64_t workspace_size = 1 << 30,
W
Wilber 已提交
571 572
                            int max_batch_size = 1,
                            int min_subgraph_size = 3,
573 574 575
                            Precision precision = Precision::kFloat32,
                            bool use_static = false,
                            bool use_calib_mode = true);
576 577 578 579 580
  ///
  /// \brief A boolean state telling whether the TensorRT engine is used.
  ///
  /// \return bool Whether the TensorRT engine is used.
  ///
581
  bool tensorrt_engine_enabled() const { return use_tensorrt_; }
582
  ///
583 584 585 586 587 588 589 590 591 592 593 594 595 596
  /// \brief Turn on the TensorRT memory optimization.
  ///
  /// \param engine_memory_sharing Whether to enable TensorRT memory
  /// optimization.
  /// \param sharing_identifier This parameter can be set if TensorRT memory
  /// optimization is enabled, and the value must be greater than 0. If you have
  /// multiple predictors that want to share memory, you can specify a
  /// same value for these predictors. NOTE: The predictors specified with the
  /// same value must be guaranteed to be executed serially, otherwise undefined
  /// behavior will occur.
  ///
  void EnableTensorRTMemoryOptim(bool engine_memory_sharing = true,
                                 int sharing_identifier = 0);
  ///
597 598 599 600 601 602 603
  /// \brief A boolean state telling whether the tensorrt engine memory sharing
  /// is activated.
  ///
  /// \return bool Whether the tensorrt engine memory sharing is activated.
  ///
  bool trt_engine_memory_sharing() const;
  ///
604 605 606 607 608 609
  /// \brief  Get the TensorRT engine precision.
  ///
  /// \return Precision Get the TensorRT engine precision.
  ///
  Precision tensorrt_precision_mode() const { return tensorrt_precision_mode_; }
  ///
610 611 612 613 614 615 616
  /// \brief Set min, max, opt shape for TensorRT Dynamic shape mode.
  /// \param min_input_shape The min input shape of the subgraph input.
  /// \param max_input_shape The max input shape of the subgraph input.
  /// \param opt_input_shape The opt input shape of the subgraph input.
  /// \param disable_trt_plugin_fp16 Setting this parameter to true means that
  /// TRT plugin will not run fp16.
  ///
617 618 619 620 621
  void SetTRTDynamicShapeInfo(
      std::map<std::string, std::vector<int>> min_input_shape,
      std::map<std::string, std::vector<int>> max_input_shape,
      std::map<std::string, std::vector<int>> optim_input_shape,
      bool disable_trt_plugin_fp16 = false);
622 623 624 625 626 627
  ///
  /// \brief A boolean state telling whether the trt dynamic_shape is used.
  ///
  /// \return bool Whether the trt dynamic_shape is used.
  ///
  bool tensorrt_dynamic_shape_enabled() const {
W
Wilber 已提交
628
    return !min_input_shape_.empty();
629
  }
630 631 632 633 634 635 636 637 638 639 640 641 642 643 644
  ///
  /// \brief Enable tuned tensorrt dynamic shape.
  ///
  /// \param shape_range_info_path the path to shape_info file got in
  /// CollectShapeInfo
  /// mode.
  /// \param allow_build_at_runtime allow build trt engine at runtime.
  ///
  void EnableTunedTensorRtDynamicShape(const std::string& shape_range_info_path,
                                       bool allow_build_at_runtime = true);

  ///
  /// \brief A boolean state telling whether to use tuned tensorrt dynamic
  /// shape.
  ///
645
  bool tuned_tensorrt_dynamic_shape() const;
646 647 648 649 650

  ///
  /// \brief A boolean state telling whether to allow building trt engine at
  /// runtime.
  ///
651
  bool trt_allow_build_at_runtime() const;
652

653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671
  ///
  /// \brief Set execution stream. If not set a stream will be created
  /// internally.
  ///
  void SetExecStream(void* stream);

  ///
  /// \brief Get execution stream. The user needs to explicitly cast into a
  /// stream type such as cudaStream_t, hipStream_t, etc.
  ///
  void* GetExecStream() const;

  ///
  /// \brief Whether the external stream is used, if True, the predictor clone
  /// operation must use the external stream, otherwise the framework manages
  /// the stream internally.
  ///
  bool external_stream_enabled() const;

672 673 674 675 676 677 678 679 680 681 682 683
  ///
  /// \brief Collect shape info of all tensors in compute graph.
  ///
  /// \param shape_range_info_path the path to save shape info.
  ///
  void CollectShapeRangeInfo(const std::string& shape_range_info_path);

  ///
  /// \brief the shape info path in CollectShapeInfo mode.
  ///
  /// \return the shape info path.
  ///
684
  const std::string& shape_range_info_path() const;
685 686 687 688 689 690

  ///
  /// \brief A boolean state telling whether to collect shape info.
  ///
  /// \return bool Whether to collect shape info.
  ///
691
  bool shape_range_info_collected() const;
692

693 694 695 696 697 698
  ///
  /// \brief Prevent ops running in Paddle-TRT
  /// NOTE: just experimental, not an official stable API, easy to be broken.
  ///
  void Exp_DisableTensorRtOPs(const std::vector<std::string>& ops);

699 700
  ///
  /// \brief Replace some TensorRT plugins to TensorRT OSS(
701 702 703
  /// https://github.com/NVIDIA/TensorRT), with which some models's inference
  /// may be more high-performance. Libnvinfer_plugin.so greater than
  /// V7.2.1 is needed.
704
  ///
705
  void EnableVarseqlen();
706

707 708 709 710 711
  ///
  /// \brief A boolean state telling whether to use the TensorRT OSS.
  ///
  /// \return bool Whether to use the TensorRT OSS.
  ///
712
  bool tensorrt_varseqlen_enabled() { return trt_use_varseqlen_; }
713

714 715 716 717 718 719 720 721 722 723 724 725 726 727
  ///
  /// \brief Enable TensorRT DLA
  /// \param dla_core ID of DLACore, which should be 0, 1,
  ///        ..., IBuilder.getNbDLACores() - 1
  ///
  void EnableTensorRtDLA(int dla_core = 0);

  ///
  /// \brief A boolean state telling whether to use the TensorRT DLA.
  ///
  /// \return bool Whether to use the TensorRT DLA.
  ///
  bool tensorrt_dla_enabled() { return trt_use_dla_; }

728 729 730
  void EnableTensorRtInspector();
  bool tensorrt_inspector_enabled() { return trt_use_inspector_; }

D
denglin-github 已提交
731 732 733 734 735 736 737 738 739
  void EnableDlnne(
      int min_subgraph_size = 3,
      int max_batch_size = 1,
      bool use_static_batch = false,
      std::string weight_share_mode = "0",
      std::unordered_set<std::string> disable_nodes_by_outputs = {},
      std::map<std::string, std::vector<int64_t>> input_dict = {},
      bool use_calib_mode = false,
      AnalysisConfig::Precision precision_mode = Precision::kFloat32);
D
denglin-github 已提交
740 741
  bool dlnne_enabled() const { return use_dlnne_; }

742 743 744 745 746 747 748
  ///
  /// \brief Turn on the usage of Lite sub-graph engine.
  ///
  /// \param precision_mode Precion used in Lite sub-graph engine.
  /// \param passes_filter Set the passes used in Lite sub-graph engine.
  /// \param ops_filter Operators not supported by Lite.
  ///
石晓伟 已提交
749 750
  void EnableLiteEngine(
      AnalysisConfig::Precision precision_mode = Precision::kFloat32,
751
      bool zero_copy = false,
石晓伟 已提交
752 753 754
      const std::vector<std::string>& passes_filter = {},
      const std::vector<std::string>& ops_filter = {});

755 756 757 758 759
  ///
  /// \brief Turn on the usage of Lite sub-graph engine with opencl.
  ///
  void EnableOpenCL();

760 761 762 763 764 765
  ///
  /// \brief A boolean state indicating whether the Lite sub-graph engine is
  /// used.
  ///
  /// \return bool whether the Lite sub-graph engine is used.
  ///
石晓伟 已提交
766 767
  bool lite_engine_enabled() const { return use_lite_; }

768 769 770 771 772 773 774
  ///
  /// \brief Control whether to debug IR graph analysis phase.
  /// This will generate DOT files for visualizing the computation graph after
  /// each analysis pass applied.
  ///
  /// \param x whether to debug IR graph analysis phase.
  ///
Y
Yan Chunwei 已提交
775
  void SwitchIrDebug(int x = true);
776

777 778 779 780
  ///
  /// \brief Turn on MKLDNN.
  ///
  ///
L
luotao1 已提交
781
  void EnableMKLDNN();
782 783 784
  ///
  /// \brief Set the cache capacity of different input shapes for MKLDNN.
  /// Default value 0 means not caching any shape.
785 786
  /// Please see MKL-DNN Data Caching Design Document:
  /// https://github.com/PaddlePaddle/FluidDoc/blob/develop/doc/fluid/design/mkldnn/caching/caching.md
787 788 789
  ///
  /// \param capacity The cache capacity.
  ///
790
  void SetMkldnnCacheCapacity(int capacity);
791 792 793 794 795
  ///
  /// \brief A boolean state telling whether to use the MKLDNN.
  ///
  /// \return bool Whether to use the MKLDNN.
  ///
796 797
  bool mkldnn_enabled() const { return use_mkldnn_; }

798 799 800 801 802 803
  ///
  /// \brief Set the number of cpu math library threads.
  ///
  /// \param cpu_math_library_num_threads The number of cpu math library
  /// threads.
  ///
804
  void SetCpuMathLibraryNumThreads(int cpu_math_library_num_threads);
805 806 807 808 809 810
  ///
  /// \brief An int state telling how many threads are used in the CPU math
  /// library.
  ///
  /// \return int The number of threads used in the CPU math library.
  ///
811 812 813 814
  int cpu_math_library_num_threads() const {
    return cpu_math_library_num_threads_;
  }

815 816 817 818 819
  ///
  /// \brief Transform the AnalysisConfig to NativeConfig.
  ///
  /// \return NativeConfig The NativeConfig transformed.
  ///
Y
Yan Chunwei 已提交
820
  NativeConfig ToNativeConfig() const;
821 822 823 824 825
  ///
  /// \brief Specify the operator type list to use MKLDNN acceleration.
  ///
  /// \param op_list The operator type list.
  ///
826 827 828
  void SetMKLDNNOp(std::unordered_set<std::string> op_list) {
    mkldnn_enabled_op_types_ = op_list;
  }
829

830 831 832 833
  ///
  /// \brief Turn on MKLDNN quantization.
  ///
  ///
834 835
  void EnableMkldnnQuantizer();

B
baoachun 已提交
836 837 838 839 840 841 842 843 844 845 846 847 848 849
  ///
  /// \brief Turn on MKLDNN int8.
  ///
  /// \param op_list The operator type list.
  ///
  void EnableMkldnnInt8(const std::unordered_set<std::string>& op_list = {});

  ///
  /// \brief A boolean state telling whether to use the MKLDNN Int8.
  ///
  /// \return bool Whether to use the MKLDNN Int8.
  ///
  bool mkldnn_int8_enabled() const { return use_mkldnn_int8_; }

850 851 852 853 854 855
  ///
  /// \brief Turn on MKLDNN bfloat16.
  ///
  ///
  void EnableMkldnnBfloat16();

P
Paulina Gacek 已提交
856 857 858 859 860 861 862 863 864 865 866 867
  ///
  /// \brief Turn off MKLDNN fc passes.
  ///
  void DisableMkldnnFcPasses();

  ///
  /// \brief A boolean state telling whether to disable the MKLDNN Fc passes.
  ///
  /// \return bool Whether to disable the MKLDNN Fc passes.
  ///
  bool mkldnn_fc_passes_disabled() const { return disable_mkldnn_fc_passes_; }

868 869 870 871 872 873 874
  ///
  /// \brief A boolean state telling whether to use the MKLDNN Bfloat16.
  ///
  /// \return bool Whether to use the MKLDNN Bfloat16.
  ///
  bool mkldnn_bfloat16_enabled() const { return use_mkldnn_bfloat16_; }

875 876 877 878 879 880 881 882
  /// \brief Specify the operator type list to use Bfloat16 acceleration.
  ///
  /// \param op_list The operator type list.
  ///
  void SetBfloat16Op(std::unordered_set<std::string> op_list) {
    bfloat16_enabled_op_types_ = op_list;
  }

883 884 885 886 887 888 889 890
  ///
  /// \brief A boolean state telling whether the thread local CUDA stream is
  /// enabled.
  ///
  /// \return bool Whether the thread local CUDA stream is enabled.
  ///
  bool thread_local_stream_enabled() const { return thread_local_stream_; }

891 892 893 894 895
  ///
  /// \brief A boolean state telling whether the MKLDNN quantization is enabled.
  ///
  /// \return bool Whether the MKLDNN quantization is enabled.
  ///
896 897
  bool mkldnn_quantizer_enabled() const { return use_mkldnn_quantizer_; }

898 899 900 901 902
  ///
  /// \brief Get MKLDNN quantizer config.
  ///
  /// \return MkldnnQuantizerConfig* MKLDNN quantizer config.
  ///
903
  MkldnnQuantizerConfig* mkldnn_quantizer_config() const;
904

905 906 907 908 909 910 911 912 913
  ///
  /// \brief Specify the memory buffer of program and parameter.
  /// Used when model and params are loaded directly from memory.
  ///
  /// \param prog_buffer The memory buffer of program.
  /// \param prog_buffer_size The size of the model data.
  /// \param params_buffer The memory buffer of the combined parameters file.
  /// \param params_buffer_size The size of the combined parameters data.
  ///
W
Wilber 已提交
914 915 916 917
  void SetModelBuffer(const char* prog_buffer,
                      size_t prog_buffer_size,
                      const char* params_buffer,
                      size_t params_buffer_size);
918 919 920 921 922 923
  ///
  /// \brief A boolean state telling whether the model is set from the CPU
  /// memory.
  ///
  /// \return bool Whether model and params are loaded directly from memory.
  ///
T
Tao Luo 已提交
924
  bool model_from_memory() const { return model_from_memory_; }
T
Tao Luo 已提交
925

926 927 928 929
  ///
  /// \brief Turn on memory optimize
  /// NOTE still in development.
  ///
930 931 932
  /// \param x Whether to enable memory optimize.
  ///
  void EnableMemoryOptim(bool x = true);
933 934 935 936 937 938
  ///
  /// \brief A boolean state telling whether the memory optimization is
  /// activated.
  ///
  /// \return bool Whether the memory optimization is activated.
  ///
Y
Yan Chunwei 已提交
939
  bool enable_memory_optim() const;
940

941 942 943 944
  ///
  /// \brief Turn on profiling report.
  /// If not turned on, no profiling report will be generated.
  ///
945
  void EnableProfile();
946 947 948 949 950
  ///
  /// \brief A boolean state telling whether the profiler is activated.
  ///
  /// \return bool Whether the profiler is activated.
  ///
951 952
  bool profile_enabled() const { return with_profile_; }

953 954 955
  ///
  /// \brief Mute all logs in Paddle inference.
  ///
956
  void DisableGlogInfo();
957 958 959 960 961
  ///
  /// \brief A boolean state telling whether logs in Paddle inference are muted.
  ///
  /// \return bool Whether logs in Paddle inference are muted.
  ///
962 963
  bool glog_info_disabled() const { return !with_glog_info_; }

964 965 966 967 968
  ///
  /// \brief Set the AnalysisConfig to be invalid.
  /// This is to ensure that an AnalysisConfig can only be used in one
  /// AnalysisPredictor.
  ///
969
  void SetInValid() const { is_valid_ = false; }
970 971 972 973 974
  ///
  /// \brief A boolean state telling whether the AnalysisConfig is valid.
  ///
  /// \return bool Whether the AnalysisConfig is valid.
  ///
975
  bool is_valid() const { return is_valid_; }
Y
Yan Chunwei 已提交
976

977 978
  friend class ::paddle::AnalysisPredictor;

979 980 981 982 983
  ///
  /// \brief Get a pass builder for customize the passes in IR analysis phase.
  /// NOTE: Just for developer, not an official API, easy to be broken.
  ///
  ///
984
  PassStrategy* pass_builder() const;
985 986 987 988 989 990 991

  ///
  /// \brief Enable the GPU multi-computing stream feature.
  /// NOTE: The current behavior of this interface is to bind the computation
  /// stream to the thread, and this behavior may be changed in the future.
  ///
  void EnableGpuMultiStream();
992
  void PartiallyRelease();
993

994 995 996 997 998
  ///
  /// \brief Print the summary of config.
  ///
  std::string Summary();

999 1000
  LiteNNAdapterConfig& NNAdapter() { return nnadapter_config_; }

1001 1002 1003 1004 1005 1006
  void SetDistConfig(const DistConfig& dist_config) {
    dist_config_ = dist_config;
  }

  const DistConfig& dist_config() const { return dist_config_; }

1007 1008 1009 1010 1011
  ///
  /// \brief Set a list of operators that do not support mixed precision. This
  /// interface is in the experimental stage and may change in the future. Note
  /// that the blacklist must be the same as the model conversion blacklist.
  ///
1012
  void Exp_DisableMixedInferOps(
1013 1014
      const std::unordered_set<std::string>& black_list);

1015 1016 1017 1018
  void SetApplyOptim(bool value) { apply_optim_ = value; }

  void SetSkipLoadParams(bool value) { skip_load_params_ = value; }

1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031
  ///
  /// \brief Enable use cinn compiler optimization.
  ///
  void Exp_EnableCINNCompiler();

  ///
  /// \brief A boolean state telling whether the CINN compiler optimization is
  /// turned on.
  ///
  /// \return bool Whether the CINN compiler optimization is turned on.
  ///
  bool cinn_compiler_enabled() const;

1032 1033 1034 1035 1036 1037
 protected:
  // Update the config.
  void Update();

  std::string SerializeInfoCache();

1038
 protected:
1039 1040
  // Model pathes.
  std::string model_dir_;
1041 1042
  mutable std::string prog_file_;
  mutable std::string params_file_;
1043

1044 1045
  // Mixed precision related.
  Precision mixed_precision_mode_{Precision::kFloat32};
1046 1047
  std::unordered_set<std::string> mixed_black_list_;

S
Sylwester Fraczek 已提交
1048
  // GPU related.
1049
  bool use_gpu_{false};
1050
  int gpu_device_id_{0};
1051
  uint64_t memory_pool_init_size_mb_{100};  // initial size is 100MB.
1052
  bool enable_gpu_half_{false};
W
Wilber 已提交
1053
  bool thread_local_stream_{false};
1054

1055
  bool use_cudnn_{false};
1056 1057
  bool use_external_stream_{false};
  void* exec_stream_{nullptr};
1058

W
Wilber 已提交
1059 1060 1061 1062
  // NPU related
  bool use_npu_{false};
  int npu_device_id_{0};

1063 1064 1065 1066 1067
  // CustomDevice related
  bool use_custom_device_{false};
  int custom_device_id_{0};
  std::string custom_device_type_;

1068 1069 1070 1071
  // ONNXRuntime related
  bool use_onnxruntime_{false};
  bool enable_ort_optimization_{false};

1072 1073 1074
  // Padding related
  bool use_fc_padding_{true};

S
Sylwester Fraczek 已提交
1075
  // TensorRT related.
1076
  bool use_tensorrt_{false};
1077 1078
  // For workspace_size, refer it from here:
  // https://docs.nvidia.com/deeplearning/sdk/tensorrt-developer-guide/index.html#troubleshooting
1079
  int64_t tensorrt_workspace_size_{1 << 30};
1080 1081 1082 1083
  // 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.
1084
  int tensorrt_max_batchsize_{1};
1085 1086 1087 1088 1089
  //  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};
1090 1091 1092
  Precision tensorrt_precision_mode_{Precision::kFloat32};
  bool trt_use_static_engine_{false};
  bool trt_use_calib_mode_{true};
1093
  bool trt_use_varseqlen_{false};
1094
  bool trt_with_interleaved_{false};
1095 1096
  std::string tensorrt_transformer_posid_{""};
  std::string tensorrt_transformer_maskid_{""};
1097 1098
  bool trt_use_dla_{false};
  int trt_dla_core_{0};
1099 1100 1101
  std::map<std::string, std::vector<int>> min_input_shape_{};
  std::map<std::string, std::vector<int>> max_input_shape_{};
  std::map<std::string, std::vector<int>> optim_input_shape_{};
1102
  std::vector<std::string> trt_disabled_ops_{};
1103
  bool disable_trt_plugin_fp16_{false};
1104 1105 1106
  bool trt_allow_build_at_runtime_{false};
  // tune to get dynamic_shape info.
  bool trt_tuned_dynamic_shape_{false};
1107
  bool trt_use_inspector_{false};
1108 1109 1110 1111 1112 1113

  // In CollectShapeInfo mode, we will collect the shape information of
  // all intermediate tensors in the compute graph and calculate the
  // min_shape, max_shape and opt_shape and save in shape_range_info_path_;
  bool collect_shape_range_info_{false};
  std::string shape_range_info_path_;
1114

D
denglin-github 已提交
1115 1116 1117
  // dlnne related.
  bool use_dlnne_{false};
  int dlnne_min_subgraph_size_{3};
D
denglin-github 已提交
1118 1119 1120 1121 1122 1123 1124
  int dlnne_max_batchsize_{1};
  std::unordered_set<std::string> dlnne_disable_nodes_by_outputs_;
  bool dlnne_use_static_batch_{true};
  std::string dlnne_weight_share_mode_;
  std::map<std::string, std::vector<int64_t>> dlnne_input_shape_dict_{};
  bool dlnne_use_calib_mode_{false};
  Precision dlnne_precision_mode_{Precision::kFloat32};
D
denglin-github 已提交
1125

Y
Yan Chunwei 已提交
1126 1127
  // memory reuse related.
  bool enable_memory_optim_{false};
1128
  bool trt_engine_memory_sharing_{false};
1129
  int trt_engine_memory_sharing_identifier_{0};
Y
Yan Chunwei 已提交
1130

1131 1132 1133
  bool use_mkldnn_{false};
  std::unordered_set<std::string> mkldnn_enabled_op_types_;

T
Tao Luo 已提交
1134
  bool model_from_memory_{false};
1135

1136 1137 1138 1139 1140 1141 1142 1143
  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};

1144 1145
  bool with_profile_{false};

1146 1147
  bool with_glog_info_{true};

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

  mutable std::unique_ptr<PassStrategy> pass_builder_;
1152

石晓伟 已提交
1153 1154 1155 1156
  bool use_lite_{false};
  std::vector<std::string> lite_passes_filter_;
  std::vector<std::string> lite_ops_filter_;
  Precision lite_precision_mode_;
1157
  bool lite_zero_copy_;
石晓伟 已提交
1158

1159 1160 1161
  // CINN compiler related.
  bool use_cinn_compiler_{false};

W
Wilber 已提交
1162
  // XPU related.
1163
  bool use_xpu_{false};
W
Wilber 已提交
1164
  int xpu_device_id_{0};
1165
  int xpu_l3_workspace_size_{0};
W
Wilber 已提交
1166 1167 1168 1169 1170
  bool xpu_locked_;
  bool xpu_autotune_;
  std::string xpu_autotune_file_;
  std::string xpu_precision_;
  bool xpu_adaptive_seqlen_;
1171
  bool xpu_enable_multi_stream_;
1172

1173 1174 1175
  // LITE OPENCL SETTINGS
  bool use_opencl_{false};

1176 1177 1178
  // NNAdapter related
  LiteNNAdapterConfig nnadapter_config_;

1179
  // mkldnn related.
W
Wilber 已提交
1180
  int mkldnn_cache_capacity_{10};
1181 1182
  bool use_mkldnn_quantizer_{false};
  std::shared_ptr<MkldnnQuantizerConfig> mkldnn_quantizer_config_;
1183
  bool use_mkldnn_bfloat16_{false};
1184
  std::unordered_set<std::string> bfloat16_enabled_op_types_;
B
baoachun 已提交
1185 1186 1187 1188 1189 1190
  bool use_mkldnn_int8_{false};
  std::unordered_set<int> quantize_excluded_op_ids_{};
  std::unordered_set<std::string> quantize_enabled_op_types_{
      "concat",
      "conv2d",
      "depthwise_conv2d",
1191
      "fused_conv2d",
B
baoachun 已提交
1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204
      "elementwise_add",
      "elementwise_mul",
      "fc",
      "matmul",
      "nearest_interp",
      "nearest_interp_v2",
      "pool2d",
      "prior_box",
      "reshape2",
      "transpose2",
      "fusion_gru",
      "fusion_lstm",
      "multi_gru",
P
Paulina Gacek 已提交
1205 1206
      "slice",
      "split"};
1207

P
Paulina Gacek 已提交
1208 1209
  bool disable_mkldnn_fc_passes_{false};

J
jianghaicheng 已提交
1210 1211 1212
  // ipu related.
  bool use_ipu_{false};
  int ipu_device_num_{1};
1213
  int ipu_micro_batch_size_{1};
J
jianghaicheng 已提交
1214 1215
  bool ipu_enable_pipelining_{false};
  int ipu_batches_per_step_{1};
1216 1217 1218 1219 1220

  bool ipu_enable_fp16_{false};
  int ipu_replica_num_{1};
  float ipu_available_memory_proportion_{1.0};
  bool ipu_enable_half_partial_{false};
1221
  bool ipu_enable_model_runtime_executor_{false};
J
jianghaicheng 已提交
1222

1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235
  std::vector<std::vector<std::string>> ipu_custom_ops_info_;
  std::vector<std::vector<std::string>> ipu_custom_patterns_;

  const std::unordered_map<std::string, ipu_config_code> ipu_config_mapper_ = {
      {"ipu_device_num", ipu_config_code::ipu_device_num},
      {"ipu_micro_batch_size", ipu_config_code::ipu_micro_batch_size},
      {"ipu_enable_pipelining", ipu_config_code::ipu_enable_pipelining},
      {"ipu_batches_per_step", ipu_config_code::ipu_batches_per_step},
      {"ipu_enable_fp16", ipu_config_code::ipu_enable_fp16},
      {"ipu_replica_num", ipu_config_code::ipu_replica_num},
      {"ipu_available_memory_proportion",
       ipu_config_code::ipu_available_memory_proportion},
      {"ipu_enable_half_partial", ipu_config_code::ipu_enable_half_partial},
1236 1237
      {"ipu_enable_model_runtime_executor",
       ipu_config_code::ipu_enable_model_runtime_executor},
1238 1239 1240
      {"ipu_custom_ops_info", ipu_config_code::ipu_custom_ops_info},
      {"ipu_custom_patterns", ipu_config_code::ipu_custom_patterns}};

1241 1242 1243 1244
  // If the config is already used on a predictor, it becomes invalid.
  // Any config can only be used with one predictor.
  // Variables held by config can take up a lot of memory in some cases.
  // So we release the memory when the predictor is set up.
1245 1246
  mutable bool is_valid_{true};
  std::string opt_cache_dir_;
1247
  friend class paddle_infer::experimental::InternalUtils;
1248 1249 1250

  // fleet exe related
  DistConfig dist_config_{};
1251 1252 1253 1254 1255 1256 1257

  // jit engine related
  // NOTE(Aureliue84): In case of Predictor in JITLayer, program is from outer
  // which means Predictor should apply optimization by calling
  // PrepareProgram(). So we add this flag to control the process.
  bool apply_optim_{false};
  bool skip_load_params_{false};
1258 1259 1260
};

}  // namespace paddle