operator.h 6.2 KB
Newer Older
Z
zhaojiaying01 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/* Copyright (c) 2018 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. */
朔-望's avatar
朔-望 已提交
14 15 16

#pragma once

L
liuruilong 已提交
17
#include <map>
Z
zhaojiaying01 已提交
18
#include <string>
19
#include <utility>
Z
zhaojiaying01 已提交
20
#include <vector>
L
liuruilong 已提交
21

L
liuruilong 已提交
22 23
#include "common/enforce.h"
#include "common/type_define.h"
L
liuruilong 已提交
24 25
#include "common/types.h"
#include "common/variant.h"
L
liuruilong 已提交
26
#include "framework/attribute.h"
L
liuruilong 已提交
27
#include "framework/op_info.h"
L
liuruilong 已提交
28
#include "framework/op_kernel_type.h"
L
liuruilong 已提交
29 30
#include "framework/op_registry.h"
#include "framework/program/block_desc.h"
L
liuruilong 已提交
31
#include "framework/program/program-optimize/node.h"
L
liuruilong 已提交
32 33 34
#include "framework/scope.h"
#include "framework/tensor.h"
#include "framework/variable.h"
L
liuruilong 已提交
35
#ifdef PADDLE_MOBILE_CL
L
liuruilong 已提交
36
#include "framework/cl/cl_helper.h"
37
#include "framework/cl/cl_scope.h"
L
liuruilong 已提交
38
#endif
朔-望's avatar
朔-望 已提交
39
namespace paddle_mobile {
朔-望's avatar
朔-望 已提交
40
namespace framework {
41 42
using std::string;
using std::vector;
朔-望's avatar
朔-望 已提交
43

W
wangliu 已提交
44 45 46 47 48 49 50 51 52 53 54 55
template <typename T>
static T *GetVarValue(const string &key, const VariableNameMap &var_map,
                      const Scope &scope) {
  auto var_vec = var_map.at(key);
  if (!var_vec.empty()) {
    auto var = scope.FindVar(var_vec[0]);
    return var->GetMutable<T>();
  } else {
    return nullptr;
  }
}

朔-望's avatar
朔-望 已提交
56
template <typename Dtype>
L
liuruilong 已提交
57
class OperatorBase {
朔-望's avatar
朔-望 已提交
58
 public:
L
liuruilong 已提交
59 60 61
  /*
   *  @b op 基类的实例化方法, op 获取到了 输入、参数以及提前分配好的输出 tensor
   * */
62 63 64 65
  OperatorBase(const std::string &type, const VariableNameMap &inputs,
               const VariableNameMap &outputs, const AttributeMap &attrs,
               std::shared_ptr<Scope> scope);
  virtual ~OperatorBase() {}
L
liuruilong 已提交
66
  void Run();
L
liuruilong 已提交
67
  std::vector<string> GetOutKeys() const;
68
  std::vector<string> GetInputKeys() const;
L
liuruilong 已提交
69
  virtual void RunImpl() = 0;
朔-望's avatar
朔-望 已提交
70

E
eclipsess 已提交
71
  virtual void Init() = 0;
L
liuruilong 已提交
72 73 74
  /*
   * @b op 运算所需的输入, 如上一层的输出结果、卷积核
   * */
75
  const VariableNameMap &Inputs() const { return inputs_; }
L
liuruilong 已提交
76 77 78
  /*
   * @b op 的输出, 内存会提前被分配好, 运算结果会被存到分配好的内存内
   * */
79
  const VariableNameMap &Outputs() const { return outputs_; }
L
liuruilong 已提交
80 81 82
  /*
   * @b op 类型
   * */
83
  const std::string &Type() const { return type_; }
L
liuruilong 已提交
84 85 86
  /*
   * @b op 运算所需要用到的参数: 如 conv 运算所需要用到的 stride
   * */
87 88 89 90
  const AttributeMap &Attrs() const { return attrs_; }
  void ClearVariables(const std::vector<std::string> &var_names) const {
    if (this->scope_) {
      this->scope_->EraseVars(var_names);
朔-望's avatar
朔-望 已提交
91
    }
92
  }
L
liuruilong 已提交
93 94 95 96
  /*
   * @b 根据输入形状和参数计算出输出形状
   * */
  virtual void InferShape() const = 0;
L
liuruilong 已提交
97

朔-望's avatar
朔-望 已提交
98
 protected:
99 100 101 102 103
  std::shared_ptr<Scope> scope_;
  std::string type_;
  VariableNameMap inputs_;
  VariableNameMap outputs_;
  AttributeMap attrs_;
L
liuruilong 已提交
104

朔-望's avatar
朔-望 已提交
105
 private:
106
  void CheckAllInputOutputSet() const;
朔-望's avatar
朔-望 已提交
107
};
朔-望's avatar
朔-望 已提交
108

L
liuruilong 已提交
109 110 111
/*
 * @b 这个类为所有带有运算的 op 的父类, 这个 op 继承与 OperatorBase
 * */
L
liuruilong 已提交
112
template <typename Dtype, typename ParamType, typename KernelType>
朔-望's avatar
朔-望 已提交
113
class OperatorWithKernel : public OperatorBase<Dtype> {
朔-望's avatar
朔-望 已提交
114
 public:
115 116 117
  OperatorWithKernel(const std::string &type, const VariableNameMap &inputs,
                     const VariableNameMap &outputs, const AttributeMap &attrs,
                     std::shared_ptr<Scope> scope)
L
liuruilong 已提交
118
      : OperatorBase<Dtype>(type, inputs, outputs, attrs, scope),
L
liuruilong 已提交
119 120 121 122 123
        param_(inputs, outputs, attrs, *scope) {
#ifdef PADDLE_MOBILE_CL
    kernel_.InitCLHelper(scope->GetCLScpoe());
#endif
  }
L
liuruilong 已提交
124

L
liuruilong 已提交
125
  virtual void RunImpl() { this->kernel_.Compute(this->param_); }
126

W
wangliu 已提交
127
  virtual void InferShape() const = 0;
L
liuruilong 已提交
128

E
eclipsess 已提交
129
  void Init() {
130 131 132 133
    //    for (auto i : this->inputs_) {
    //      DLOG << i.first;
    //      DLOG << i.second;
    //    }
L
liuruilong 已提交
134

E
eclipsess 已提交
135
    PADDLE_MOBILE_ENFORCE(kernel_.Init(&param_), "  %s kernel init failed",
L
liuruilong 已提交
136 137 138
                          this->type_.c_str());
  }

L
liuruilong 已提交
139 140 141
 protected:
  KernelType kernel_;
  ParamType param_;
朔-望's avatar
朔-望 已提交
142
};
朔-望's avatar
朔-望 已提交
143

L
liuruilong 已提交
144 145 146
/*
 * @b 所有kernel的父类
 * */
朔-望's avatar
朔-望 已提交
147
template <typename Dtype, typename P>
L
liuruilong 已提交
148
class OpKernelBase {
朔-望's avatar
朔-望 已提交
149
 public:
L
liuruilong 已提交
150 151
  OpKernelBase() = default;

L
liuruilong 已提交
152 153 154 155 156
#ifdef PADDLE_MOBILE_CL
  virtual void InitCLHelper(CLScope *clScope) {
    cl_helper_ = CLHelper(clScope);
  }
#endif
L
liuruilong 已提交
157

158 159 160 161 162
    /*
     * @b 所有kernel 需实现 Compute 方法
     * @p para 这个参数为 kernel 运算时所需要用到参数组成的一个结构体,
     *    所有结构体存在与: paddle-mobile/src/operators/op_param.h
     * */
L
liuruilong 已提交
163
#ifdef PADDLE_McOBILE_MALI_GPU
E
eclipsess 已提交
164 165 166 167 168 169
  OpKernelBase() { acl_op_ = nullptr; }
  void *GetAclOp() const { return acl_op_; }
  void SetAclOp(void *op, void *ob) const {
    reinterpret_cast<OpKernelBase<Dtype, P> *>(ob)->acl_op_ = op;
  }
#endif
L
liuruilong 已提交
170
  virtual void Compute(const P &para) = 0;
171
  virtual bool Init(P *para) { return true; }
172
  virtual ~OpKernelBase() = default;
E
eclipsess 已提交
173

L
liuruilong 已提交
174
 protected:
L
liuruilong 已提交
175 176 177
#ifdef PADDLE_MOBILE_CL
  CLHelper cl_helper_;
#endif
L
liuruilong 已提交
178

E
eclipsess 已提交
179 180 181 182
 private:
#ifdef PADDLE_MOBILE_MALI_GPU
  void *acl_op_;
#endif
朔-望's avatar
朔-望 已提交
183
};
朔-望's avatar
朔-望 已提交
184

Z
zhaojiaying01 已提交
185 186 187 188 189 190 191
#define DEFINE_OP_CONSTRUCTOR(cls, parent_cls)                                 \
  cls(const std::string &type, const ::paddle_mobile::VariableNameMap &inputs, \
      const ::paddle_mobile::VariableNameMap &outputs,                         \
      const ::paddle_mobile::framework::AttributeMap &attrs,                   \
      std::shared_ptr<::paddle_mobile::framework::Scope> scope)                \
      : parent_cls<Dtype, T>(type, inputs, outputs, attrs, scope) {}

L
liuruilong 已提交
192
class FusionOpMatcher {
L
liuruilong 已提交
193 194 195 196 197
 public:
  FusionOpMatcher() {}

  virtual std::string Type() = 0;

L
liuruilong 已提交
198 199 200
  virtual void FolderNodes(
      Node *node,
      std::vector<std::shared_ptr<framework::Node>> *removed_nodes) {
L
liuruilong 已提交
201
    node->Folder(node_.Depth(), Type(), {}, removed_nodes);
L
liuruilong 已提交
202 203
  }

L
liuruilong 已提交
204
  virtual Node &BeginNode() { return node_; }
L
liuruilong 已提交
205

L
liuruilong 已提交
206
  std::string BeginType() { return node_.Type(); }
L
liuruilong 已提交
207

208 209
  virtual std::vector<std::pair<int, std::string>> NeedCheck() { return {}; }

L
for  
liuruilong 已提交
210
  //  virtual  bool Fusion();
L
liuruilong 已提交
211 212 213 214 215 216
 protected:
  Node node_;
  std::string type_;
  std::shared_ptr<OpDesc> new_opdesc_;
};

朔-望's avatar
朔-望 已提交
217 218
}  // namespace framework
}  // namespace paddle_mobile