op_registry.h 4.7 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

#pragma once
Z
zhaojiaying01 已提交
16

L
liuruilong 已提交
17
#include <memory>
Z
zhaojiaying01 已提交
18 19
#include <string>
#include <tuple>
L
liuruilong 已提交
20

Z
zhaojiaying01 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
#include "common/log.h"
#include "common/type_define.h"
#include "framework/op_info.h"
#include "framework/operator.h"

namespace paddle_mobile {
namespace framework {

class Registrar {
 public:
  void Touch() {}
};

template <typename Dtype, size_t I, bool at_end, typename... ARGS>
class OperatorRegistrarRecursive;

template <typename Dtype, typename... ARGS>
struct OperatorRegistrar : public Registrar {
  explicit OperatorRegistrar(const std::string& op_type) {
Z
zhaojiaying01 已提交
40
    if (OpInfoMap<Dtype>::Instance()->Has(op_type)) {
Z
zhaojiaying01 已提交
41 42 43 44 45 46 47 48 49 50 51
      LOG(paddle_mobile::kLOG_DEBUG1)
          << op_type << " is registered more than once.";
      return;
    }
    if (sizeof...(ARGS) == 0) {
      LOG(paddle_mobile::kLOG_DEBUG1)
          << "OperatorRegistrar should be invoked at least by OpClass";
      return;
    }
    OpInfo<Dtype> info;
    OperatorRegistrarRecursive<Dtype, 0, false, ARGS...>(op_type, &info);
Z
zhaojiaying01 已提交
52
    OpInfoMap<Dtype>::Instance()->Insert(op_type, info);
Z
zhaojiaying01 已提交
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
  }
};

template <typename Dtype, typename T>
struct OpInfoFiller {
  void operator()(const std::string& op_type, OpInfo<Dtype>* info) const {
    info->creator_ = [](const std::string& type, const VariableNameMap& inputs,
                        const VariableNameMap& outputs,
                        const AttributeMap& attrs,
                        std::shared_ptr<Scope> scope) {
      return new T(type, inputs, outputs, attrs, scope);
    };
  }
};

template <typename Dtype, size_t I, typename... ARGS>
class OperatorRegistrarRecursive<Dtype, I, false, ARGS...> {
 public:
  using T = typename std::tuple_element<I, std::tuple<ARGS...>>::type;
  OperatorRegistrarRecursive(const std::string& op_type, OpInfo<Dtype>* info) {
    OpInfoFiller<Dtype, T> fill;
    fill(op_type, info);
    constexpr auto size = sizeof...(ARGS);
    OperatorRegistrarRecursive<Dtype, I + 1, I + 1 == size, ARGS...> reg(
        op_type, info);
    (void)(reg);
  }
};

template <typename Dtype, size_t I, typename... ARGS>
class OperatorRegistrarRecursive<Dtype, I, true, ARGS...> {
 public:
  OperatorRegistrarRecursive(const std::string& op_type, OpInfo<Dtype>* info) {}
};

template <typename Dtype>
class OpRegistry {
 public:
  static std::shared_ptr<OperatorBase<Dtype>> CreateOp(
      const std::string& type, const VariableNameMap& inputs,
      const VariableNameMap& outputs, const AttributeMap attrs,
      std::shared_ptr<paddle_mobile::framework::Scope> scope) {
Z
zhaojiaying01 已提交
95
    auto& info = OpInfoMap<Dtype>::Instance()->Get(type);
Z
zhaojiaying01 已提交
96 97 98 99 100
    auto op = info.Creator()(type, inputs, outputs, attrs, scope);
    return std::shared_ptr<OperatorBase<Dtype>>(op);
  }
};

Z
zhaojiaying01 已提交
101
#define REGISTER_OPERATOR(op_type, op_class, device_name, device_type)     \
102
  template class op_class<device_type, float>;                             \
Z
zhaojiaying01 已提交
103 104 105 106 107 108 109
  template <typename Dtype, typename T>                                    \
  class _OpClass_##op_type##_##device_name : public op_class<Dtype, T> {   \
   public:                                                                 \
    DEFINE_OP_CONSTRUCTOR(_OpClass_##op_type##_##device_name, op_class);   \
  };                                                                       \
  static paddle_mobile::framework::OperatorRegistrar<                      \
      device_type, _OpClass_##op_type##_##device_name<device_type, float>> \
H
hjchen2 已提交
110 111 112 113 114
      __op_registrar_##op_type##_##device_name(#op_type);                  \
  int TouchOpRegistrar_##op_type##_##device_name() {                       \
    __op_registrar_##op_type##_##device_name.Touch();                      \
    return 0;                                                              \
  }
Z
zhaojiaying01 已提交
115

Z
zhaojiaying01 已提交
116 117
#define REGISTER_OPERATOR_CPU(op_type, op_class) \
  REGISTER_OPERATOR(op_type, op_class, cpu, paddle_mobile::CPU);
L
for  
liuruilong 已提交
118

Z
zhaojiaying01 已提交
119
#define REGISTER_OPERATOR_MALI_GPU(op_type, op_class) \
S
smilejames 已提交
120
  REGISTER_OPERATOR(op_type, op_class, mali_gpu, paddle_mobile::GPU_MALI);
Z
zhaojiaying01 已提交
121

Z
zhaojiaying01 已提交
122
#define REGISTER_OPERATOR_FPGA(op_type, op_class) \
S
smilejames 已提交
123
  REGISTER_OPERATOR(op_type, op_class, fpga, paddle_mobile::FPGA);
Z
zhaojiaying01 已提交
124

L
liuruilong 已提交
125 126 127
#define REGISTER_OPERATOR_CL(op_type, op_class) \
  REGISTER_OPERATOR(op_type, op_class, cl, paddle_mobile::GPU_CL);

Z
zhaojiaying01 已提交
128 129
}  // namespace framework
}  // namespace paddle_mobile