operator.h 5.1 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>
Z
zhaojiaying01 已提交
19
#include <vector>
L
liuruilong 已提交
20

L
liuruilong 已提交
21 22
#include "common/enforce.h"
#include "common/type_define.h"
L
liuruilong 已提交
23 24
#include "common/types.h"
#include "common/variant.h"
L
liuruilong 已提交
25
#include "framework/attribute.h"
L
liuruilong 已提交
26
#include "framework/op_info.h"
L
liuruilong 已提交
27
#include "framework/op_kernel_type.h"
L
liuruilong 已提交
28 29
#include "framework/op_registry.h"
#include "framework/program/block_desc.h"
L
liuruilong 已提交
30
#include "framework/program/program-optimize/node.h"
L
liuruilong 已提交
31 32 33
#include "framework/scope.h"
#include "framework/tensor.h"
#include "framework/variable.h"
朔-望's avatar
朔-望 已提交
34 35

namespace paddle_mobile {
朔-望's avatar
朔-望 已提交
36
namespace framework {
37 38
using std::string;
using std::vector;
朔-望's avatar
朔-望 已提交
39

W
wangliu 已提交
40 41 42 43 44 45 46 47 48 49 50 51
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
朔-望 已提交
52
template <typename Dtype>
L
liuruilong 已提交
53
class OperatorBase {
朔-望's avatar
朔-望 已提交
54
 public:
L
liuruilong 已提交
55 56 57
  /*
   *  @b op 基类的实例化方法, op 获取到了 输入、参数以及提前分配好的输出 tensor
   * */
58 59 60 61
  OperatorBase(const std::string &type, const VariableNameMap &inputs,
               const VariableNameMap &outputs, const AttributeMap &attrs,
               std::shared_ptr<Scope> scope);
  virtual ~OperatorBase() {}
62
  void Run() const;
L
liuruilong 已提交
63
  std::vector<string> GetOutKeys() const;
64
  virtual void RunImpl() const = 0;
朔-望's avatar
朔-望 已提交
65

L
liuruilong 已提交
66 67 68
  /*
   * @b op 运算所需的输入, 如上一层的输出结果、卷积核
   * */
69
  const VariableNameMap &Inputs() const { return inputs_; }
L
liuruilong 已提交
70 71 72
  /*
   * @b op 的输出, 内存会提前被分配好, 运算结果会被存到分配好的内存内
   * */
73
  const VariableNameMap &Outputs() const { return outputs_; }
L
liuruilong 已提交
74 75 76
  /*
   * @b op 类型
   * */
77
  const std::string &Type() const { return type_; }
L
liuruilong 已提交
78 79 80
  /*
   * @b op 运算所需要用到的参数: 如 conv 运算所需要用到的 stride
   * */
81 82 83 84
  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
朔-望 已提交
85
    }
86
  }
L
liuruilong 已提交
87 88 89 90
  /*
   * @b 根据输入形状和参数计算出输出形状
   * */
  virtual void InferShape() const = 0;
L
liuruilong 已提交
91

朔-望's avatar
朔-望 已提交
92
 protected:
93 94 95 96 97
  std::shared_ptr<Scope> scope_;
  std::string type_;
  VariableNameMap inputs_;
  VariableNameMap outputs_;
  AttributeMap attrs_;
L
liuruilong 已提交
98

朔-望's avatar
朔-望 已提交
99
 private:
100
  void CheckAllInputOutputSet() const;
朔-望's avatar
朔-望 已提交
101
};
朔-望's avatar
朔-望 已提交
102

L
liuruilong 已提交
103 104 105
/*
 * @b 这个类为所有带有运算的 op 的父类, 这个 op 继承与 OperatorBase
 * */
L
liuruilong 已提交
106
template <typename Dtype, typename ParamType, typename KernelType>
朔-望's avatar
朔-望 已提交
107
class OperatorWithKernel : public OperatorBase<Dtype> {
朔-望's avatar
朔-望 已提交
108
 public:
109 110 111
  OperatorWithKernel(const std::string &type, const VariableNameMap &inputs,
                     const VariableNameMap &outputs, const AttributeMap &attrs,
                     std::shared_ptr<Scope> scope)
L
liuruilong 已提交
112 113
      : OperatorBase<Dtype>(type, inputs, outputs, attrs, scope),
        param_(inputs, outputs, attrs, *scope) {
L
liuruilong 已提交
114 115 116
    kernel_.Init(param_);
  }

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

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

L
liuruilong 已提交
121 122 123
 protected:
  KernelType kernel_;
  ParamType param_;
朔-望's avatar
朔-望 已提交
124
};
朔-望's avatar
朔-望 已提交
125

L
liuruilong 已提交
126 127 128
/*
 * @b 所有kernel的父类
 * */
朔-望's avatar
朔-望 已提交
129
template <typename Dtype, typename P>
L
liuruilong 已提交
130
class OpKernelBase {
朔-望's avatar
朔-望 已提交
131
 public:
L
liuruilong 已提交
132 133 134 135 136
  /*
   * @b 所有kernel 需实现 Compute 方法
   * @p para 这个参数为 kernel 运算时所需要用到参数组成的一个结构体,
   *    所有结构体存在与: paddle-mobile/src/operators/op_param.h
   * */
137
  virtual void Compute(const P &para) const = 0;
L
liuruilong 已提交
138
  virtual bool Init(const P &para) const { return true; };
139
  virtual ~OpKernelBase() = default;
朔-望's avatar
朔-望 已提交
140
};
朔-望's avatar
朔-望 已提交
141

Z
zhaojiaying01 已提交
142 143 144 145 146 147 148
#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 已提交
149
class FusionOpMatcher {
L
liuruilong 已提交
150 151 152 153 154
 public:
  FusionOpMatcher() {}

  virtual std::string Type() = 0;

L
liuruilong 已提交
155 156 157
  virtual void FolderNodes(
      Node *node,
      std::vector<std::shared_ptr<framework::Node>> *removed_nodes) {
L
liuruilong 已提交
158
    node->Folder(node_.Depth(), Type(), {}, removed_nodes);
L
liuruilong 已提交
159 160
  }

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

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

L
for  
liuruilong 已提交
165
  //  virtual  bool Fusion();
L
liuruilong 已提交
166 167 168 169 170 171
 protected:
  Node node_;
  std::string type_;
  std::shared_ptr<OpDesc> new_opdesc_;
};

朔-望's avatar
朔-望 已提交
172 173
}  // namespace framework
}  // namespace paddle_mobile