engine.h 3.2 KB
Newer Older
石晓伟 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
// Copyright (c) 2019 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 <map>
#include <memory>
#include <string>
#include <unordered_map>
#include <vector>

23 24
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wall"
25
#include <paddle_api.h>  // NOLINT
26
#pragma GCC diagnostic pop
石晓伟 已提交
27 28 29 30 31 32 33 34

namespace paddle {
namespace inference {
namespace lite {

struct EngineConfig {
  std::string model;
  std::string param;
W
Wilber 已提交
35
  std::vector<paddle::lite_api::Place> valid_places;
石晓伟 已提交
36 37 38
  std::vector<std::string> neglected_passes;
  lite_api::LiteModelType model_type{lite_api::LiteModelType::kProtobuf};
  bool model_from_memory{true};
W
Wilber 已提交
39 40

  // for xpu
Z
zhupengyang 已提交
41
  int xpu_device_id{0};
Z
zhupengyang 已提交
42
  size_t xpu_l3_size{0};
Z
zhupengyang 已提交
43 44 45 46 47 48 49 50 51 52 53 54 55 56
  void* xpu_l3_ptr{nullptr};
  size_t xpu_l3_autotune_size{0};
  void* xpu_stream{nullptr};
  int xpu_conv_autotune_level{0};
  std::string xpu_conv_autotune_file;
  bool xpu_conv_autotune_file_writeback{false};
  int xpu_fc_autotune_level{0};
  std::string xpu_fc_autotune_file;
  bool xpu_fc_autotune_file_writeback{false};
  int xpu_gemm_compute_precision{1};
  int xpu_transformer_softmax_optimize_level{0};
  bool xpu_transformer_encoder_adaptive_seqlen{true};
  float xpu_quant_post_static_gelu_out_threshold{10.f};
  int xpu_quant_post_dynamic_activation_method{0};
Z
zhupengyang 已提交
57
  bool xpu_enable_multi_stream = false;
W
Wilber 已提交
58 59 60 61 62 63

  // for x86 or arm
  int cpu_math_library_num_threads{1};

  // for cuda
  bool use_multi_stream{false};
64 65 66 67 68 69 70 71 72

  // for nnadapter or npu.
  std::string nnadapter_model_cache_dir;
  std::vector<std::string> nnadapter_device_names;
  std::string nnadapter_context_properties;
  std::string nnadapter_subgraph_partition_config_buffer;
  std::string nnadapter_subgraph_partition_config_path;
  std::vector<std::string> nnadapter_model_cache_token;
  std::vector<std::vector<char>> nnadapter_model_cache_buffer;
73 74 75 76 77 78

  bool use_opencl{};
  std::string opencl_bin_path = "./";
  std::string opencl_bin_name = "lite_opencl_kernel.bin";
  paddle::lite_api::CLTuneMode opencl_tune_mode{};
  paddle::lite_api::CLPrecisionType opencl_precision_type{};
石晓伟 已提交
79 80 81 82 83 84
};

class EngineManager {
 public:
  bool Empty() const;
  bool Has(const std::string& name) const;
W
Wilber 已提交
85 86 87
  paddle::lite_api::PaddlePredictor* Get(const std::string& name) const;
  paddle::lite_api::PaddlePredictor* Create(const std::string& name,
                                            const EngineConfig& cfg);
Z
zhupengyang 已提交
88 89
  void Set(const std::string& name,
           std::shared_ptr<paddle::lite_api::PaddlePredictor> p);
石晓伟 已提交
90 91 92
  void DeleteAll();

 private:
W
Wilber 已提交
93 94
  std::unordered_map<std::string,
                     std::shared_ptr<paddle::lite_api::PaddlePredictor>>
石晓伟 已提交
95 96 97 98 99 100
      engines_;
};

}  // namespace lite
}  // namespace inference
}  // namespace paddle