/* 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. */ #pragma once #include #include #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 class OperatorRegistrarRecursive; template struct OperatorRegistrar : public Registrar { explicit OperatorRegistrar(const std::string& op_type) { if (OpInfoMap::Instance()->Has(op_type)) { 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 info; OperatorRegistrarRecursive(op_type, &info); OpInfoMap::Instance()->Insert(op_type, info); } }; template struct OpInfoFiller { void operator()(const std::string& op_type, OpInfo* info) const { info->creator_ = [](const std::string& type, const VariableNameMap& inputs, const VariableNameMap& outputs, const AttributeMap& attrs, std::shared_ptr scope) { return new T(type, inputs, outputs, attrs, scope); }; } }; template class OperatorRegistrarRecursive { public: using T = typename std::tuple_element>::type; OperatorRegistrarRecursive(const std::string& op_type, OpInfo* info) { OpInfoFiller fill; fill(op_type, info); constexpr auto size = sizeof...(ARGS); OperatorRegistrarRecursive reg( op_type, info); (void)(reg); } }; template class OperatorRegistrarRecursive { public: OperatorRegistrarRecursive(const std::string& op_type, OpInfo* info) {} }; template class OpRegistry { public: static std::shared_ptr> CreateOp( const std::string& type, const VariableNameMap& inputs, const VariableNameMap& outputs, const AttributeMap attrs, std::shared_ptr scope) { auto& info = OpInfoMap::Instance()->Get(type); auto op = info.Creator()(type, inputs, outputs, attrs, scope); return std::shared_ptr>(op); } }; #define REGISTER_OPERATOR(op_type, op_class, device_name, device_type) \ template class op_class; \ template \ class _OpClass_##op_type##_##device_name : public op_class { \ public: \ DEFINE_OP_CONSTRUCTOR(_OpClass_##op_type##_##device_name, op_class); \ }; \ static paddle_mobile::framework::OperatorRegistrar< \ device_type, _OpClass_##op_type##_##device_name> \ __op_registrar_##op_type##_##device_name(#op_type); \ int TouchOpRegistrar_##op_type##_##device_name() { \ __op_registrar_##op_type##_##device_name.Touch(); \ return 0; \ } #define REGISTER_OPERATOR_CPU(op_type, op_class) \ REGISTER_OPERATOR(op_type, op_class, cpu, paddle_mobile::CPU); #define REGISTER_OPERATOR_MALI_GPU(op_type, op_class) \ REGISTER_OPERATOR(op_type, op_class, mali_gpu, paddle_mobile::GPU_MALI); #define REGISTER_OPERATOR_FPGA(op_type, op_class) \ REGISTER_OPERATOR(op_type, op_class, fpga, paddle_mobile::FPGA); } // namespace framework } // namespace paddle_mobile