op_lite.h 5.3 KB
Newer Older
S
superjomn 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// 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 <glog/logging.h>
#include <map>
19
#include <memory>
S
superjomn 已提交
20
#include <string>
S
superjomn 已提交
21 22 23
#include "paddle/fluid/lite/core/context.h"
#include "paddle/fluid/lite/core/kernel.h"
#include "paddle/fluid/lite/core/scope.h"
24
#include "paddle/fluid/lite/model_parser/compatible_pb.h"
S
superjomn 已提交
25 26 27 28 29 30 31 32 33

namespace paddle {
namespace lite {

// For registry factory.
struct Registry {
  void Touch() {}
};

S
superjomn 已提交
34 35 36 37 38
namespace mir {
class Node;
class SSAGraph;
}

39 40
class OpInfo;

S
superjomn 已提交
41 42 43 44 45
/**
 * The base class of an light-weight operators, currently just used in inference
 * to eliminate overhead of some operations in current framework.
 *
 * The Operator are designed as follows:
S
update  
superjomn 已提交
46 47 48
 * - it can has some members to hold the argument and some other computation
 * resources,
 * - it should act like a function call, no more logic included.
S
superjomn 已提交
49 50 51
 */
class OpLite : public Registry {
 public:
S
superjomn 已提交
52
  OpLite() = default;
S
superjomn 已提交
53
  OpLite(const std::string &type) : op_type_(type) {}
54 55
  OpLite(const std::vector<Place> &valid_places)
      : valid_places_(valid_places) {}
S
superjomn 已提交
56

S
superjomn 已提交
57 58 59 60
  void SetValidPlaces(const std::vector<Place> &places) {
    valid_places_ = places;
  }
  const std::vector<Place> &valid_places() const { return valid_places_; }
S
update  
superjomn 已提交
61
  // Check the shape.
S
superjomn 已提交
62
  virtual bool CheckShape() const { return true; }
S
update  
superjomn 已提交
63
  // Inference the outputs' shape.
S
superjomn 已提交
64
  virtual bool InferShape() const { return true; }
S
update  
superjomn 已提交
65
  // Run this operator.
S
superjomn 已提交
66
  virtual bool Run();
S
update  
superjomn 已提交
67

S
superjomn 已提交
68
  // Link the external execution environ to internal context.
69
  bool Attach(const OpDesc &opdesc, lite::Scope *scope);
70

S
superjomn 已提交
71 72
  const OpInfo *op_info() const { return op_info_.get(); }
  OpInfo *mutable_op_info() { return op_info_.get(); }
S
superjomn 已提交
73

S
update  
superjomn 已提交
74
  // Human-readable information.
S
superjomn 已提交
75 76
  virtual std::string DebugString() const = 0;

S
superjomn 已提交
77 78
  const Place &kernel_place() const { return kernel_place_; }

S
superjomn 已提交
79 80 81 82 83 84 85 86 87
  // Create all the kernels for the valid targets.
  std::vector<std::unique_ptr<KernelBase>> CreateKernels(
      const std::vector<Place> &places, const std::string &kernel_type = "");

  lite::Scope *scope() { return scope_; }

  // Assign op param to kernel.
  virtual void AttachKernel(KernelBase *kernel) = 0;

S
superjomn 已提交
88 89 90
  virtual ~OpLite() = default;

 protected:
S
superjomn 已提交
91
  // Attach it with the runtime environment.
92
  virtual bool AttachImpl(const OpDesc &opdesc, lite::Scope *scope) = 0;
S
superjomn 已提交
93

S
superjomn 已提交
94 95
  // Specify the kernel to run by default. This will specify the value of
  // `kernel_place_`.
S
superjomn 已提交
96 97 98 99
  virtual void StaticPickKernel(const std::vector<Place> &valid_targets) {
    auto kernels = CreateKernels(valid_targets);
    kernel_ = std::move(kernels.front());
  }
S
superjomn 已提交
100

S
update  
superjomn 已提交
101 102 103 104 105 106
  // Wait until all the inputs' events are ready.
  void SyncInputEvents() {}

  // Record the output events, and that will tell all the dependent operators
  // some inputs are ready.
  void RecordOutputEvents() {}
S
superjomn 已提交
107

108 109 110
  const Tensor *GetTensor(lite::Scope *scope, const std::string &name) const;
  Tensor *GetMutableTensor(lite::Scope *scope, const std::string &name) const;

S
superjomn 已提交
111 112 113
  friend class mir::Node;
  friend class mir::SSAGraph;

S
superjomn 已提交
114
 protected:
S
superjomn 已提交
115
  lite::Scope *scope_{};
S
update  
superjomn 已提交
116 117
  std::unique_ptr<KernelBase> kernel_;
  std::string op_type_;
S
superjomn 已提交
118 119
  std::vector<Place> valid_places_;
  Place kernel_place_{TARGET(kHost), PRECISION(kFloat)};
S
superjomn 已提交
120
  std::unique_ptr<OpInfo> op_info_;
121 122 123 124 125 126 127 128
};

/*
 * Operator Information, such as some description. It will be shared by all the
 * kernels of the same operator.
 */
class OpInfo {
 public:
S
superjomn 已提交
129 130
  // To avoid the bugs from legancy framework::OpDesc, we use the ProtoBuf
  // message instead.
S
superjomn 已提交
131
  void Build(const framework::proto::OpDesc &desc);
132

S
superjomn 已提交
133
  const framework::proto::OpDesc &desc() const;
S
superjomn 已提交
134
  framework::proto::OpDesc *mutable_desc() { return desc_.get(); }
135 136
  const std::list<std::string> &input_names() const { return input_names_; }
  const std::list<std::string> &output_names() const { return output_names_; }
S
superjomn 已提交
137 138
  const std::map<std::string, std::list<std::string>> &input_argument() const;
  const std::map<std::string, std::list<std::string>> &output_argument() const;
S
superjomn 已提交
139 140
  bool GetInputArgname(const std::string &value_name, std::string *out) const;
  bool GetOutputArgname(const std::string &value_name, std::string *out) const;
141

S
superjomn 已提交
142 143
  const std::list<std::string> &input_argnames() const;
  const std::list<std::string> &output_argnames() const;
144 145

 private:
S
superjomn 已提交
146
  void ExtractInputsAndOutputs(const framework::proto::OpDesc &opdesc);
147

S
superjomn 已提交
148
  void CollectInputAndOutputArgnames(const framework::proto::OpDesc &opdesc);
149

S
superjomn 已提交
150
  void CollectArguments(const framework::proto::OpDesc &opdesc);
151 152

 private:
S
superjomn 已提交
153 154
  std::list<std::string> input_names_;
  std::list<std::string> output_names_;
155 156 157 158
  std::list<std::string> input_argnames_;
  std::list<std::string> output_argnames_;
  std::map<std::string, std::list<std::string>> input_argument_;
  std::map<std::string, std::list<std::string>> output_argument_;
S
superjomn 已提交
159 160
  // NOTE too heavy.
  std::unique_ptr<framework::proto::OpDesc> desc_;
S
superjomn 已提交
161 162 163 164
};

}  // namespace lite
}  // namespace paddle