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

#pragma once
#include <list>
#include <string>
#include <vector>
#include "paddle/fluid/framework/program_desc.h"
#include "paddle/fluid/lite/core/kernel.h"
S
Superjomn 已提交
21
#include "paddle/fluid/lite/core/kernel.h"
S
superjomn 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
#include "paddle/fluid/lite/core/op_lite.h"
#include "paddle/fluid/lite/core/op_registry.h"

namespace paddle {
namespace lite {

// 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;
  // the scope to run the kernels, NOTE not the root scope.
  std::shared_ptr<lite::Scope> scope;
38
  std::vector<Place> valid_places;
S
superjomn 已提交
39 40
  // Runtime scope.
  lite::Scope* exec_scope{};
41
  const framework::proto::ProgramDesc desc;
S
superjomn 已提交
42 43

  explicit Program(const std::shared_ptr<Scope>& root) { scope = root; }
44
  Program(const framework::proto::ProgramDesc& desc,
S
superjomn 已提交
45
          const std::shared_ptr<Scope>& root,
46 47
          const std::vector<Place>& valid_places)
      : scope(root), valid_places(valid_places), desc(desc) {
S
superjomn 已提交
48 49 50 51 52
    PrepareWorkspace(desc);
    Build(desc, valid_places);
  }

  std::unique_ptr<Program> Clone() const {
53
    std::unique_ptr<Program> res(new Program(desc, scope, valid_places));
S
superjomn 已提交
54 55 56 57 58
    return res;
  }

 private:
  // Build from a program and scope.
59
  void Build(const framework::proto::ProgramDesc& program,
S
superjomn 已提交
60 61 62 63
             const std::vector<Place>& valid_places) {
    CHECK(ops.empty()) << "Executor duplicate Build found";

    // Create operators.
64 65 66
    for (const auto& proto_op_desc : program.blocks(0).ops()) {
      lite::OpDesc op_desc(proto_op_desc);
      auto op_type = op_desc.Type();
67
      // if (op_type == "feed" || op_type == "fetch") continue;
S
Superjomn 已提交
68
      VLOG(4) << "create Op [" << op_type << "]";
S
superjomn 已提交
69 70 71
      ops.emplace_back(LiteOpRegistry::Global().Create(op_type));
      // pick initial kernel
      ops.back()->PickKernel(valid_places);
72
      ops.back()->Attach(op_desc, exec_scope);
S
superjomn 已提交
73 74 75 76
    }
  }

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

84 85
    tmp_vars.push_back("feed");
    tmp_vars.push_back("fetch");
86 87 88 89 90
    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());
91
      } else {
92 93
        if (var_desc.Name() == "feed" || var_desc.Name() == "fetch") continue;
        weights.push_back(var_desc.Name());
S
superjomn 已提交
94 95 96 97 98
      }
    }
  }
};

S
Superjomn 已提交
99 100 101 102 103 104 105 106
struct Instruction {
  Instruction(const std::shared_ptr<OpLite>& op,
              std::unique_ptr<KernelBase>&& kernel)
      : op_(op), kernel_(std::move(kernel)) {}

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

S
superjomn 已提交
115 116 117 118 119
  friend std::ostream& operator<<(std::ostream& os, const Instruction& other) {
    os << other.kernel_->summary() << "\t(" << other.kernel_->doc() << ")";
    return os;
  }

S
Superjomn 已提交
120 121 122
 private:
  std::shared_ptr<OpLite> op_;
  std::unique_ptr<KernelBase> kernel_;
123
  bool first_epoch_{true};
S
Superjomn 已提交
124 125 126 127 128 129 130
};

/*
 * A program contains kernels for runtime.
 */
class RuntimeProgram {
 public:
S
superjomn 已提交
131 132 133 134 135 136
  explicit RuntimeProgram(std::vector<Instruction>&& insts)
      : instructions_(std::move(insts)) {
    if (insts.empty()) {
      LOG(ERROR) << "no instructions";
    }
  }
S
Superjomn 已提交
137 138 139

  void Run() {
    for (auto& inst : instructions_) {
S
superjomn 已提交
140
      LOG(INFO) << ">> Running kernel: " << inst;
S
Superjomn 已提交
141 142 143 144
      inst.Run();
    }
  }

145 146 147
  void set_exec_scope(lite::Scope* x) { exec_scope_ = x; }
  lite::Scope* exec_scope() { return exec_scope_; }

S
Superjomn 已提交
148 149 150 151 152
  size_t num_instructions() const { return instructions_.size(); }

 private:
  RuntimeProgram(const RuntimeProgram&) = delete;
  std::vector<Instruction> instructions_;
153
  lite::Scope* exec_scope_{};
S
Superjomn 已提交
154 155
};

S
superjomn 已提交
156 157
}  // namespace lite
}  // namespace paddle