light_api_impl.cc 2.9 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
S
sangoly 已提交
26 27 28 29 30 31
  raw_predictor_.reset(
      new LightPredictor(config.model_dir(),
                         config.model_buffer(),
                         config.param_buffer(),
                         config.model_from_memory(),
                         lite_api::LiteModelType::kNaiveBuffer));
T
TianXiaogang 已提交
32 33 34

  mode_ = config.power_mode();
  threads_ = config.threads();
Y
Yan Chunwei 已提交
35 36
}

S
sangoly 已提交
37 38 39
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 已提交
40 41
}

S
sangoly 已提交
42 43 44 45
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 已提交
46 47
}

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

55 56 57 58
std::shared_ptr<lite_api::PaddlePredictor> LightPredictorImpl::Clone() {
  LOG(FATAL) << "The Clone API is not supported in LigthPredictor";
}

59 60
std::string LightPredictorImpl::GetVersion() const { return lite::version(); }

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

S
sangoly 已提交
72
std::vector<std::string> LightPredictorImpl::GetInputNames() {
73 74 75
  return raw_predictor_->GetInputNames();
}

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

S
sangoly 已提交
80 81 82 83
}  // namespace lite

namespace lite_api {

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

}  // namespace lite_api
}  // namespace paddle