light_api_impl.cc 3.1 KB
Newer Older
Y
Yan Chunwei 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// 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.

#include "lite/api/light_api.h"
16
#include <string>
Y
Yan Chunwei 已提交
17
#include "lite/api/paddle_api.h"
18
#include "lite/core/version.h"
Y
Yan Chunwei 已提交
19 20 21
#include "lite/model_parser/model_parser.h"

namespace paddle {
S
sangoly 已提交
22
namespace lite {
23

S
sangoly 已提交
24
void LightPredictorImpl::Init(const lite_api::MobileConfig& config) {
25
  // LightPredictor Only support NaiveBuffer backend in publish lib
26 27 28 29 30 31 32 33 34 35 36
  if (config.lite_model_file().empty()) {
    raw_predictor_.reset(
        new LightPredictor(config.model_dir(),
                           config.model_buffer(),
                           config.param_buffer(),
                           config.model_from_memory(),
                           lite_api::LiteModelType::kNaiveBuffer));
  } else {
    raw_predictor_.reset(new LightPredictor(config.lite_model_file(),
                                            config.model_from_memory()));
  }
T
TianXiaogang 已提交
37 38
  mode_ = config.power_mode();
  threads_ = config.threads();
Y
Yan Chunwei 已提交
39 40
}

S
sangoly 已提交
41 42 43
std::unique_ptr<lite_api::Tensor> LightPredictorImpl::GetInput(int i) {
  return std::unique_ptr<lite_api::Tensor>(
      new lite_api::Tensor(raw_predictor_->GetInput(i)));
Y
Yan Chunwei 已提交
44 45
}

S
sangoly 已提交
46 47 48 49
std::unique_ptr<const lite_api::Tensor> LightPredictorImpl::GetOutput(
    int i) const {
  return std::unique_ptr<lite_api::Tensor>(
      new lite_api::Tensor(raw_predictor_->GetOutput(i)));
Y
Yan Chunwei 已提交
50 51
}

T
TianXiaogang 已提交
52 53 54 55 56 57
void LightPredictorImpl::Run() {
#ifdef LITE_WITH_ARM
  lite::DeviceInfo::Global().SetRunMode(mode_, threads_);
#endif
  raw_predictor_->Run();
}
Y
Yan Chunwei 已提交
58

59 60 61 62
std::shared_ptr<lite_api::PaddlePredictor> LightPredictorImpl::Clone() {
  LOG(FATAL) << "The Clone API is not supported in LigthPredictor";
}

63 64
std::string LightPredictorImpl::GetVersion() const { return lite::version(); }

S
sangoly 已提交
65
std::unique_ptr<const lite_api::Tensor> LightPredictorImpl::GetTensor(
Y
Yan Chunwei 已提交
66
    const std::string& name) const {
S
sangoly 已提交
67 68
  return std::unique_ptr<const lite_api::Tensor>(
      new lite_api::Tensor(raw_predictor_->GetTensor(name)));
Y
Yan Chunwei 已提交
69
}
S
sangoly 已提交
70
std::unique_ptr<lite_api::Tensor> LightPredictorImpl::GetInputByName(
71
    const std::string& name) {
S
sangoly 已提交
72 73
  return std::unique_ptr<lite_api::Tensor>(
      new lite_api::Tensor(raw_predictor_->GetInputByName(name)));
74 75
}

S
sangoly 已提交
76
std::vector<std::string> LightPredictorImpl::GetInputNames() {
77 78 79
  return raw_predictor_->GetInputNames();
}

S
sangoly 已提交
80
std::vector<std::string> LightPredictorImpl::GetOutputNames() {
81 82
  return raw_predictor_->GetOutputNames();
}
Y
Yan Chunwei 已提交
83

S
sangoly 已提交
84 85 86 87
}  // namespace lite

namespace lite_api {

Y
Yan Chunwei 已提交
88 89 90
template <>
std::shared_ptr<PaddlePredictor> CreatePaddlePredictor(
    const MobileConfig& config) {
S
sangoly 已提交
91
  auto x = std::make_shared<lite::LightPredictorImpl>();
Y
Yan Chunwei 已提交
92 93 94 95 96 97
  x->Init(config);
  return x;
}

}  // namespace lite_api
}  // namespace paddle