program.h 5.2 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
#include "paddle/fluid/lite/core/op_lite.h"
#include "paddle/fluid/lite/core/op_registry.h"
Y
Yan Chunwei 已提交
25
#include "paddle/fluid/lite/model_parser/compatible_pb.h"
Y
Yan Chunwei 已提交
26 27 28
#ifdef LITE_WITH_PROFILE
#include "paddle/fluid/lite/core/profile/basic_profiler.h"
#endif  // LITE_WITH_PROFILE
S
superjomn 已提交
29 30 31 32

namespace paddle {
namespace lite {

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

S
superjomn 已提交
35 36 37 38 39
// 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 {
Y
Yan Chunwei 已提交
40 41
 public:
  explicit Program(const std::shared_ptr<Scope>& root) { scope_ = root; }
42
  Program(const framework::proto::ProgramDesc& desc,
S
superjomn 已提交
43
          const std::shared_ptr<Scope>& root,
44
          const std::vector<Place>& valid_places)
Y
Yan Chunwei 已提交
45 46
      : scope_(root), valid_places_(valid_places), desc_(desc) {
    CHECK(scope_) << "scope should be init first";
S
superjomn 已提交
47
    PrepareWorkspace(desc);
S
Superjomn 已提交
48
    Build(desc);
S
superjomn 已提交
49 50 51
  }

  std::unique_ptr<Program> Clone() const {
Y
Yan Chunwei 已提交
52
    std::unique_ptr<Program> res(new Program(desc_, scope_, valid_places_));
S
superjomn 已提交
53 54 55
    return res;
  }

Y
Yan Chunwei 已提交
56 57
  const std::list<std::string>& weights() const { return weights_; }
  const std::list<std::string>& tmp_vars() const { return tmp_vars_; }
Y
Yan Chunwei 已提交
58 59 60
  std::list<std::string>* mutable_weights() { return &weights_; }
  std::list<std::string>* mutable_tmp_vars() { return &tmp_vars_; }

Y
Yan Chunwei 已提交
61
  const std::list<std::shared_ptr<OpLite>>& ops() const { return ops_; }
Y
Yan Chunwei 已提交
62 63
  std::list<std::shared_ptr<OpLite>>* mutable_ops() { return &ops_; }

Y
Yan Chunwei 已提交
64
  lite::Scope* exec_scope() { return exec_scope_; }
Y
Yan Chunwei 已提交
65
  lite::Scope* scope() { return scope_.get(); }
Y
Yan Chunwei 已提交
66

S
superjomn 已提交
67 68
 private:
  // Build from a program and scope.
Y
Yan Chunwei 已提交
69
  void Build(const framework::proto::ProgramDesc& program);
S
superjomn 已提交
70
  // Create temporary variables.
Y
Yan Chunwei 已提交
71 72 73 74 75 76 77 78 79 80 81 82
  void PrepareWorkspace(const framework::proto::ProgramDesc& program);

 private:
  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 this is the execution scope.
  std::shared_ptr<lite::Scope> scope_;
  std::vector<Place> valid_places_;
  // Runtime scope.
  lite::Scope* exec_scope_{};
  const framework::proto::ProgramDesc desc_;
S
superjomn 已提交
83 84
};

Y
Yan Chunwei 已提交
85 86 87
struct Instruction {
  Instruction(const std::shared_ptr<OpLite>& op,
              std::unique_ptr<KernelBase>&& kernel)
Y
Yan Chunwei 已提交
88 89 90 91 92 93 94
      : op_(op), kernel_(std::move(kernel)) {
#ifdef LITE_WITH_PROFILE
    profile_id_ = profile::BasicProfiler<profile::BasicTimer>::Global()
                      .NewRcd(kernel_->SerializedKernelType())
                      .id();
#endif  // LITE_WITH_PROFILE
  }
S
Superjomn 已提交
95 96

  void Run() {
Y
Yan Chunwei 已提交
97 98 99
#ifdef LITE_WITH_PROFILE
    profile::ProfileBlock x(profile_id_);
#endif  // LITE_WITH_PROFILE
S
Superjomn 已提交
100 101
    CHECK(op_);
    CHECK(kernel_);
S
Superjomn 已提交
102
    if (first_epoch_) {
103
      first_epoch_ = false;
S
superjomn 已提交
104
      CHECK(op_->CheckShape());
105
    }
S
Superjomn 已提交
106
    op_->InferShape();
107
    kernel_->Launch();
S
Superjomn 已提交
108 109
  }

Y
Yan Chunwei 已提交
110
  friend std::ostream& operator<<(std::ostream& os, const Instruction& other) {
S
superjomn 已提交
111 112 113 114
    os << other.kernel_->summary() << "\t(" << other.kernel_->doc() << ")";
    return os;
  }

S
Superjomn 已提交
115 116 117
  const OpLite* op() const { return op_.get(); }
  const KernelBase* kernel() const { return kernel_.get(); }

S
Superjomn 已提交
118 119 120
 private:
  std::shared_ptr<OpLite> op_;
  std::unique_ptr<KernelBase> kernel_;
121
  bool first_epoch_{true};
Y
Yan Chunwei 已提交
122 123 124 125 126

#ifdef LITE_WITH_PROFILE
  // for profiler
  int profile_id_{-1};
#endif  // LITE_WITH_PROFILE
S
Superjomn 已提交
127 128 129 130 131 132 133
};

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

  void Run() {
    for (auto& inst : instructions_) {
N
nhzlx 已提交
143
      VLOG(4) << ">> Running kernel: " << inst;
S
Superjomn 已提交
144 145 146 147
      inst.Run();
    }
  }

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

152 153 154
  void set_exec_scope(lite::Scope* x) { exec_scope_ = x; }
  lite::Scope* exec_scope() { return exec_scope_; }

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

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

S
Superjomn 已提交
162 163
 private:
  RuntimeProgram(const RuntimeProgram&) = delete;
Y
Yan Chunwei 已提交
164
  std::vector<Instruction> instructions_;
165
  lite::Scope* exec_scope_{};
S
Superjomn 已提交
166 167
};

S
superjomn 已提交
168 169
}  // namespace lite
}  // namespace paddle