cxx_api.h 2.0 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
#include "paddle/fluid/lite/core/op_executor.h"
S
superjomn 已提交
17
#include "paddle/fluid/lite/core/op_lite.h"
S
superjomn 已提交
18 19 20
#include "paddle/fluid/lite/model_parser/model_parser.h"

namespace paddle {
S
superjomn 已提交
21 22 23 24 25 26
namespace lite {

struct Config {};

class Predictor {
 public:
S
superjomn 已提交
27 28
  Predictor() { scope_ = std::make_shared<Scope>(); }

S
superjomn 已提交
29
  void Build(const std::string& model_path,
30
             const std::vector<Place>& valid_places) {
S
superjomn 已提交
31
    CHECK(!executor_.get()) << "duplicate build found";
S
superjomn 已提交
32
    CHECK(!scope_.get()) << "duplicate build found";
S
superjomn 已提交
33
    framework::proto::ProgramDesc prog;
S
superjomn 已提交
34
    LoadModel(model_path, scope_.get(), &prog);
S
superjomn 已提交
35 36
    framework::ProgramDesc prog_desc(prog);

S
superjomn 已提交
37
    executor_.reset(new Executor(prog_desc, scope_.get(), valid_places));
S
superjomn 已提交
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
  }

  // Get a tensor for input from scope directly.
  Tensor* GetInputTensor(const std::string& name) {
    auto* var = executor_->exec_scope()->FindVar(name);
    CHECK(var) << "no tensor called " << name << " exists";
    return var->GetMutable<Tensor>();
  }

  // Get a tensor for output from scope directly.
  const Tensor* GetOutputTensor(const std::string& name) {
    auto* var = executor_->exec_scope()->FindVar(name);
    CHECK(var) << "no tensor called " << name << " exists";
    return &var->Get<Tensor>();
  }

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

 private:
S
superjomn 已提交
57
  std::shared_ptr<Scope> scope_;
S
superjomn 已提交
58 59 60 61
  std::unique_ptr<lite::Executor> executor_;
};

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