light_api.h 4.3 KB
Newer Older
Y
Yan Chunwei 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// 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.

/*
 * This file implements a light-weight API which can run on mobile. We limit the
 * dependencies and the runtime computation complexity.
 */
#pragma once

21
#include <algorithm>
22
#include <map>
Y
Yan Chunwei 已提交
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include "lite/api/paddle_api.h"
#include "lite/core/context.h"
#include "lite/core/program.h"
#include "lite/core/tensor.h"
#include "lite/core/types.h"
#include "lite/model_parser/model_parser.h"

namespace paddle {
namespace lite {

/*
 * The light weight predictor, mainly for mobile. It loads an optimized model,
 * and will not depend on the MIR or perform latter optimization.
 */
class LITE_API LightPredictor {
 public:
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
  // constructor function of LightPredictor, `lite_model_file` refers to data in
  // model file or buffer,`model_from_memory` refers to whther to load model
  // from memory.
  LightPredictor(const std::string& lite_model_file,
                 bool model_from_memory = false) {
    scope_ = std::make_shared<Scope>();
    Build(lite_model_file, model_from_memory);
  }

  // NOTE: This is a deprecated API and will be removed in latter release.
  LightPredictor(const std::string& model_dir,
                 const std::string& model_buffer = "",
                 const std::string& param_buffer = "",
                 bool model_from_memory = false,
                 lite_api::LiteModelType model_type =
                     lite_api::LiteModelType::kNaiveBuffer) {
59 60 61
    scope_ = std::make_shared<Scope>();
    Build(model_dir, model_buffer, param_buffer, model_type, model_from_memory);
  }
Y
Yan Chunwei 已提交
62 63 64 65 66

  void Run() { program_->Run(); }

  // Get offset-th col of feed inputs.
  Tensor* GetInput(size_t offset);
67 68
  // get input by name.
  Tensor* GetInputByName(const std::string& name);
Y
Yan Chunwei 已提交
69 70 71 72 73 74 75 76
  // Get offset-th col of fetch outputs.
  const Tensor* GetOutput(size_t offset);

  const lite::Tensor* GetTensor(const std::string& name) const {
    auto* var = program_->exec_scope()->FindVar(name);
    return &var->Get<lite::Tensor>();
  }

77
  // get inputnames and get outputnames.
S
sangoly 已提交
78 79
  std::vector<std::string> GetInputNames();
  std::vector<std::string> GetOutputNames();
80 81
  void PrepareFeedFetch();

Y
Yan Chunwei 已提交
82
 private:
83 84 85 86
  void Build(const std::string& lite_model_file,
             bool model_from_memory = false);

  // NOTE: This is a deprecated API and will be removed in latter release.
Y
Yan Chunwei 已提交
87 88
  void Build(
      const std::string& model_dir,
89 90 91 92 93
      const std::string& model_buffer,
      const std::string& param_buffer,
      lite_api::LiteModelType model_type = lite_api::LiteModelType::kProtobuf,
      bool model_from_memory = false);

Y
Yan Chunwei 已提交
94 95
  void BuildRuntimeProgram(const cpp::ProgramDesc& prog);

J
juncaipeng 已提交
96 97
  void DequantizeWeight();

Y
Yan Chunwei 已提交
98 99 100
 private:
  std::shared_ptr<Scope> scope_;
  std::unique_ptr<RuntimeProgram> program_;
101
  cpp::ProgramDesc cpp_program_desc_;
102 103
  std::vector<std::string> input_names_;
  std::vector<std::string> output_names_;
Y
Yan Chunwei 已提交
104 105
};

S
sangoly 已提交
106 107 108 109 110 111 112 113 114 115
class LightPredictorImpl : public lite_api::PaddlePredictor {
 public:
  LightPredictorImpl() = default;

  std::unique_ptr<lite_api::Tensor> GetInput(int i) override;

  std::unique_ptr<const lite_api::Tensor> GetOutput(int i) const override;

  void Run() override;

C
chenhaoze 已提交
116 117
  std::shared_ptr<lite_api::PaddlePredictor> Clone(
      const std::vector<std::string>& var_names);
118

S
sangoly 已提交
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
  std::string GetVersion() const override;
  std::vector<std::string> GetInputNames() override;
  std::vector<std::string> GetOutputNames() override;

  std::unique_ptr<const lite_api::Tensor> GetTensor(
      const std::string& name) const override;
  // Get InputTebsor by name
  std::unique_ptr<lite_api::Tensor> GetInputByName(
      const std::string& name) override;

  void Init(const lite_api::MobileConfig& config);

 private:
  std::unique_ptr<lite::LightPredictor> raw_predictor_;
};

Y
Yan Chunwei 已提交
135 136
}  // namespace lite
}  // namespace paddle