program.h 5.3 KB
Newer Older
S
superjomn 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// 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
#include <list>
S
superjomn 已提交
17
#include <memory>
S
superjomn 已提交
18
#include <string>
S
superjomn 已提交
19
#include <utility>
S
superjomn 已提交
20 21
#include <vector>
#include "paddle/fluid/lite/core/kernel.h"
S
Superjomn 已提交
22
#include "paddle/fluid/lite/core/mir/node.h"
S
superjomn 已提交
23 24 25 26 27 28
#include "paddle/fluid/lite/core/op_lite.h"
#include "paddle/fluid/lite/core/op_registry.h"

namespace paddle {
namespace lite {

S
superjomn 已提交
29
static const char kKernelTypeAttr[] = "__@kernel_type_attr@__";
S
Superjomn 已提交
30

S
superjomn 已提交
31 32 33 34 35 36 37 38
// A program is used to represent a code program, in Paddle, a code program
// contains:
// - main block, which is a list of OpLite
// - scope: which contains all the weights
struct Program {
  std::list<std::string> tmp_vars;
  std::list<std::string> weights;
  std::list<std::shared_ptr<OpLite>> ops;
S
superjomn 已提交
39
  // the scope to run the kernels, NOTE this is the execution scope.
S
superjomn 已提交
40
  std::shared_ptr<lite::Scope> scope;
41
  std::vector<Place> valid_places;
S
superjomn 已提交
42 43
  // Runtime scope.
  lite::Scope* exec_scope{};
44
  const framework::proto::ProgramDesc desc;
S
superjomn 已提交
45 46

  explicit Program(const std::shared_ptr<Scope>& root) { scope = root; }
47
  Program(const framework::proto::ProgramDesc& desc,
S
superjomn 已提交
48
          const std::shared_ptr<Scope>& root,
49 50
          const std::vector<Place>& valid_places)
      : scope(root), valid_places(valid_places), desc(desc) {
S
Superjomn 已提交
51
    CHECK(scope) << "scope should be init first";
S
superjomn 已提交
52
    PrepareWorkspace(desc);
S
Superjomn 已提交
53
    Build(desc);
S
superjomn 已提交
54 55 56
  }

  std::unique_ptr<Program> Clone() const {
57
    std::unique_ptr<Program> res(new Program(desc, scope, valid_places));
S
superjomn 已提交
58 59 60 61 62
    return res;
  }

 private:
  // Build from a program and scope.
S
Superjomn 已提交
63
  void Build(const framework::proto::ProgramDesc& program) {
S
superjomn 已提交
64 65 66
    CHECK(ops.empty()) << "Executor duplicate Build found";

    // Create operators.
67 68 69
    for (const auto& proto_op_desc : program.blocks(0).ops()) {
      lite::OpDesc op_desc(proto_op_desc);
      auto op_type = op_desc.Type();
70
      // if (op_type == "feed" || op_type == "fetch") continue;
S
Superjomn 已提交
71
      VLOG(4) << "create Op [" << op_type << "]";
S
Superjomn 已提交
72 73
      auto op = LiteOpRegistry::Global().Create(op_type);
      CHECK(op) << "no Op found for " << op_type;
S
superjomn 已提交
74
      ops.emplace_back(std::move(op));
75
      ops.back()->Attach(op_desc, exec_scope);
S
superjomn 已提交
76 77 78 79
    }
  }

  // Create temporary variables.
80
  void PrepareWorkspace(const framework::proto::ProgramDesc& program) {
S
superjomn 已提交
81 82
    CHECK(!exec_scope) << "Duplicate PrepareWorkspace found";
    exec_scope = &scope->NewScope();
83
    // Create Feed and Fetch var.
84 85
    scope->Var("feed")->GetMutable<std::vector<lite::Tensor>>();
    scope->Var("fetch")->GetMutable<std::vector<lite::Tensor>>();
S
superjomn 已提交
86

87 88
    tmp_vars.push_back("feed");
    tmp_vars.push_back("fetch");
89 90 91 92 93
    for (auto proto_var_desc : program.blocks(0).vars()) {
      lite::VarDesc var_desc(proto_var_desc);
      if (!var_desc.Persistable()) {
        tmp_vars.push_back(var_desc.Name());
        exec_scope->Var(var_desc.Name());
94
      } else {
95 96
        if (var_desc.Name() == "feed" || var_desc.Name() == "fetch") continue;
        weights.push_back(var_desc.Name());
S
superjomn 已提交
97 98 99 100 101
      }
    }
  }
};

S
Superjomn 已提交
102 103 104
struct Instruct {
  Instruct(const std::shared_ptr<OpLite>& op,
           std::unique_ptr<KernelBase>&& kernel)
S
Superjomn 已提交
105 106 107 108 109
      : op_(op), kernel_(std::move(kernel)) {}

  void Run() {
    CHECK(op_);
    CHECK(kernel_);
S
Superjomn 已提交
110
    if (first_epoch_) {
111
      first_epoch_ = false;
S
superjomn 已提交
112
      CHECK(op_->CheckShape());
113
    }
S
Superjomn 已提交
114 115 116 117
    op_->InferShape();
    kernel_->Run();
  }

S
Superjomn 已提交
118
  friend std::ostream& operator<<(std::ostream& os, const Instruct& other) {
S
superjomn 已提交
119 120 121 122
    os << other.kernel_->summary() << "\t(" << other.kernel_->doc() << ")";
    return os;
  }

S
Superjomn 已提交
123 124 125
  const OpLite* op() const { return op_.get(); }
  const KernelBase* kernel() const { return kernel_.get(); }

S
Superjomn 已提交
126 127 128
 private:
  std::shared_ptr<OpLite> op_;
  std::unique_ptr<KernelBase> kernel_;
129
  bool first_epoch_{true};
S
Superjomn 已提交
130 131 132 133 134 135 136
};

/*
 * A program contains kernels for runtime.
 */
class RuntimeProgram {
 public:
S
Superjomn 已提交
137
  explicit RuntimeProgram(std::vector<Instruct>&& insts)
S
superjomn 已提交
138
      : instructions_(std::move(insts)) {
S
Superjomn 已提交
139 140
    if (instructions_.empty()) {
      LOG(FATAL) << "no instructions";
S
superjomn 已提交
141 142
    }
  }
S
Superjomn 已提交
143 144 145

  void Run() {
    for (auto& inst : instructions_) {
S
superjomn 已提交
146
      LOG(INFO) << ">> Running kernel: " << inst;
S
Superjomn 已提交
147 148 149 150
      inst.Run();
    }
  }

S
Superjomn 已提交
151
  // Serialize the graph and save to the disk.
S
Superjomn 已提交
152
  void PersistModel(const std::string& dir,
S
Superjomn 已提交
153 154
                    const framework::proto::ProgramDesc& desc);

155 156 157
  void set_exec_scope(lite::Scope* x) { exec_scope_ = x; }
  lite::Scope* exec_scope() { return exec_scope_; }

S
Superjomn 已提交
158 159
  size_t num_instructions() const { return instructions_.size(); }

S
Superjomn 已提交
160
 protected:
S
Superjomn 已提交
161 162 163
  std::string SerializeProgram(const framework::proto::ProgramDesc& desc);
  void SaveParams(const std::string& dir,
                  const framework::proto::ProgramDesc& desc);
S
Superjomn 已提交
164

S
Superjomn 已提交
165 166
 private:
  RuntimeProgram(const RuntimeProgram&) = delete;
S
Superjomn 已提交
167
  std::vector<Instruct> instructions_;
168
  lite::Scope* exec_scope_{};
S
Superjomn 已提交
169 170
};

S
superjomn 已提交
171 172
}  // namespace lite
}  // namespace paddle