light_api_impl.cc 2.6 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));
Y
Yan Chunwei 已提交
32 33
}

S
sangoly 已提交
34 35 36
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 已提交
37 38
}

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

void LightPredictorImpl::Run() { raw_predictor_->Run(); }

47 48
std::string LightPredictorImpl::GetVersion() const { return lite::version(); }

S
sangoly 已提交
49
std::unique_ptr<const lite_api::Tensor> LightPredictorImpl::GetTensor(
Y
Yan Chunwei 已提交
50
    const std::string& name) const {
S
sangoly 已提交
51 52
  return std::unique_ptr<const lite_api::Tensor>(
      new lite_api::Tensor(raw_predictor_->GetTensor(name)));
Y
Yan Chunwei 已提交
53
}
S
sangoly 已提交
54
std::unique_ptr<lite_api::Tensor> LightPredictorImpl::GetInputByName(
55
    const std::string& name) {
S
sangoly 已提交
56 57
  return std::unique_ptr<lite_api::Tensor>(
      new lite_api::Tensor(raw_predictor_->GetInputByName(name)));
58 59
}

S
sangoly 已提交
60
std::vector<std::string> LightPredictorImpl::GetInputNames() {
61 62 63
  return raw_predictor_->GetInputNames();
}

S
sangoly 已提交
64
std::vector<std::string> LightPredictorImpl::GetOutputNames() {
65 66
  return raw_predictor_->GetOutputNames();
}
Y
Yan Chunwei 已提交
67

S
sangoly 已提交
68 69 70 71
}  // namespace lite

namespace lite_api {

Y
Yan Chunwei 已提交
72 73 74
template <>
std::shared_ptr<PaddlePredictor> CreatePaddlePredictor(
    const MobileConfig& config) {
S
sangoly 已提交
75
  auto x = std::make_shared<lite::LightPredictorImpl>();
Y
Yan Chunwei 已提交
76 77 78 79 80 81
  x->Init(config);
  return x;
}

}  // namespace lite_api
}  // namespace paddle