cxx_api.h 2.8 KB
Newer Older
S
superjomn 已提交
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.

#pragma once
S
superjomn 已提交
16 17 18 19
#include <memory>
#include <string>
#include <utility>
#include <vector>
S
superjomn 已提交
20
#include "paddle/fluid/lite/core/op_lite.h"
S
Superjomn 已提交
21 22
#include "paddle/fluid/lite/core/optimizer.h"
#include "paddle/fluid/lite/core/program.h"
23
#include "paddle/fluid/lite/core/types.h"
S
superjomn 已提交
24 25 26
#include "paddle/fluid/lite/model_parser/model_parser.h"

namespace paddle {
S
superjomn 已提交
27 28 29 30
namespace lite {

struct Config {};

31
class LightPredictor {
S
superjomn 已提交
32
 public:
33
  LightPredictor() { scope_ = std::make_shared<Scope>(); }
S
superjomn 已提交
34

S
superjomn 已提交
35
  void Build(const std::string& model_path, const Place& prefer_place,
36
             const std::vector<Place>& valid_places) {
S
Superjomn 已提交
37
    LoadModel(model_path, scope_.get(), &program_desc_);
S
superjomn 已提交
38

S
Superjomn 已提交
39
    Program program(program_desc_, scope_, valid_places);
S
superjomn 已提交
40

S
Superjomn 已提交
41
    optimizer_.KernelPickPreferPlace(prefer_place);
42 43
    core::KernelPickFactor factor;
    factor.ConsiderTarget();
S
Superjomn 已提交
44 45
    optimizer_.Run(std::move(program), valid_places, factor);
    program_ = optimizer_.GenRuntimeProgram();
S
superjomn 已提交
46 47
  }

48 49
// This method is disabled in mobile, or unnecessary dependencies required.
#ifndef LITE_WITH_LIGHT_WEIGHT_FRAMEWORK
S
Superjomn 已提交
50
  void SaveModel(const std::string& dir);
51
#endif
S
Superjomn 已提交
52

53
  // Get offset-th col of feed.
54
  lite::Tensor* GetInput(size_t offset) {
55 56
    auto* _feed_list = program_->exec_scope()->FindVar("feed");
    CHECK(_feed_list) << "no feed variable in exec_scope";
57
    auto* feed_list = _feed_list->GetMutable<std::vector<lite::Tensor>>();
58 59 60 61 62 63
    if (offset >= feed_list->size()) {
      feed_list->resize(offset + 1);
    }
    return &feed_list->at(offset);
  }

64
  const lite::Tensor* GetOutput(size_t offset) {
65 66
    auto* _fetch_list = program_->exec_scope()->FindVar("fetch");
    CHECK(_fetch_list) << "no fatch variable in exec_scope";
67
    auto& fetch_list = *_fetch_list->GetMutable<std::vector<lite::Tensor>>();
68 69 70 71
    CHECK_LT(offset, fetch_list.size()) << "offset " << offset << " overflow";
    return &fetch_list.at(offset);
  }

S
Superjomn 已提交
72
  void Run() { program_->Run(); }
S
superjomn 已提交
73

S
Superjomn 已提交
74 75 76 77
  const framework::proto::ProgramDesc& program_desc() const {
    return program_desc_;
  }

S
superjomn 已提交
78
 private:
S
Superjomn 已提交
79 80
  Optimizer optimizer_;
  framework::proto::ProgramDesc program_desc_;
S
superjomn 已提交
81
  std::shared_ptr<Scope> scope_;
S
Superjomn 已提交
82
  std::unique_ptr<RuntimeProgram> program_;
S
superjomn 已提交
83 84 85
};

}  // namespace lite
S
superjomn 已提交
86
}  // namespace paddle