engine.cc 3.8 KB
Newer Older
石晓伟 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// 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.

15
#ifdef LITE_SUBGRAPH_WITH_XPU
16 17
#define LITE_WITH_XPU 1
#endif
石晓伟 已提交
18

W
Wilber 已提交
19 20 21 22
#ifndef PADDLE_WITH_ARM
#define LITE_WITH_X86 1
#endif

23
#include "paddle/fluid/inference/lite/engine.h"
24

W
Wilber 已提交
25
#include <utility>
26

石晓伟 已提交
27 28 29 30 31 32 33 34 35 36 37 38 39
namespace paddle {
namespace inference {
namespace lite {

bool EngineManager::Empty() const { return engines_.size() == 0; }

bool EngineManager::Has(const std::string& name) const {
  if (engines_.count(name) == 0) {
    return false;
  }
  return engines_.at(name).get() != nullptr;
}

W
Wilber 已提交
40 41
paddle::lite_api::PaddlePredictor* EngineManager::Get(
    const std::string& name) const {
石晓伟 已提交
42 43 44
  return engines_.at(name).get();
}

W
Wilber 已提交
45 46 47 48
paddle::lite_api::PaddlePredictor* EngineManager::Create(
    const std::string& name, const EngineConfig& cfg) {
  // config info for predictor.
  paddle::lite_api::CxxConfig lite_cxx_config;
49 50
  lite_cxx_config.set_model_buffer(
      cfg.model.c_str(), cfg.model.size(), cfg.param.c_str(), cfg.param.size());
W
Wilber 已提交
51 52
  lite_cxx_config.set_valid_places(cfg.valid_places);
#ifdef PADDLE_WITH_ARM
53
  lite_cxx_config.set_threads(cfg.cpu_math_library_num_threads);
W
Wilber 已提交
54
#else
55
  lite_cxx_config.set_x86_math_num_threads(cfg.cpu_math_library_num_threads);
石晓伟 已提交
56
#endif
W
Wilber 已提交
57

58
#ifdef LITE_SUBGRAPH_WITH_XPU
Z
zhupengyang 已提交
59 60 61 62 63 64
  lite_cxx_config.set_xpu_l3_cache_method(cfg.xpu_l3_size, cfg.xpu_l3_locked);
  lite_cxx_config.set_xpu_conv_autotune(cfg.xpu_conv_autotune,
                                        cfg.xpu_conv_autotune_file);
  lite_cxx_config.set_xpu_multi_encoder_method(
      cfg.xpu_transformer_encoder_precision,
      cfg.xpu_transformer_encoder_adaptive_seqlen);
65
  lite_cxx_config.set_xpu_dev_per_thread(cfg.device_id);
Z
zhupengyang 已提交
66
  if (cfg.xpu_enable_multi_stream) {
S
shentanyue 已提交
67 68
    lite_cxx_config.enable_xpu_multi_stream();
  }
69
#endif
W
Wilber 已提交
70

71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
#ifdef LITE_SUBGRAPH_WITH_NPU
  lite_cxx_config.set_nnadapter_device_names(cfg.nnadapter_device_names);
  lite_cxx_config.set_nnadapter_context_properties(
      cfg.nnadapter_context_properties);
  lite_cxx_config.set_nnadapter_model_cache_dir(cfg.nnadapter_model_cache_dir);
  if (!cfg.nnadapter_subgraph_partition_config_path.empty()) {
    lite_cxx_config.set_nnadapter_subgraph_partition_config_path(
        cfg.nnadapter_subgraph_partition_config_path);
  }
  if (!cfg.nnadapter_subgraph_partition_config_buffer.empty()) {
    lite_cxx_config.set_nnadapter_subgraph_partition_config_buffer(
        cfg.nnadapter_subgraph_partition_config_buffer);
  }
  for (size_t i = 0; i < cfg.nnadapter_model_cache_token.size(); ++i) {
    lite_cxx_config.set_nnadapter_model_cache_buffers(
        cfg.nnadapter_model_cache_token[i],
        cfg.nnadapter_model_cache_buffer[i]);
  }
#endif
90 91 92 93 94 95 96 97

  if (cfg.use_opencl) {
    lite_cxx_config.set_opencl_binary_path_name(cfg.opencl_bin_path,
                                                cfg.opencl_bin_name);
    lite_cxx_config.set_opencl_tune(cfg.opencl_tune_mode);
    lite_cxx_config.set_opencl_precision(cfg.opencl_precision_type);
  }

W
Wilber 已提交
98 99 100 101 102
  // create predictor
  std::shared_ptr<paddle::lite_api::PaddlePredictor> p =
      paddle::lite_api::CreatePaddlePredictor(lite_cxx_config);
  engines_[name] = std::move(p);
  return engines_[name].get();
石晓伟 已提交
103 104 105 106
}

void EngineManager::DeleteAll() {
  for (auto& item : engines_) {
W
Wilber 已提交
107
    item.second.reset();
石晓伟 已提交
108 109 110 111 112 113
  }
}

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