/* Copyright (c) 2022 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 "paddle/pten/core/compat/arg_map_context.h" #include "paddle/pten/core/infermeta_utils.h" #include "paddle/pten/core/kernel_def.h" #include "paddle/pten/core/macros.h" #include "paddle/utils/flat_hash_map.h" #include "paddle/fluid/platform/enforce.h" namespace pten { class DefaultKernelSignatureMap { public: static DefaultKernelSignatureMap& Instance(); bool Has(const std::string& op_type) const { return map_.count(op_type) > 0; } const KernelSignature& Get(const std::string& op_type) const { auto it = map_.find(op_type); PADDLE_ENFORCE_NE( it, map_.end(), paddle::platform::errors::NotFound( "Operator `%s`'s kernel signature is not registered.", op_type)); return it->second; } void Insert(std::string op_type, KernelSignature signature) { PADDLE_ENFORCE_NE( Has(op_type), true, paddle::platform::errors::AlreadyExists( "Operator (%s)'s Kernel Siginature has been registered.", op_type)); map_.insert({std::move(op_type), std::move(signature)}); } private: DefaultKernelSignatureMap() = default; paddle::flat_hash_map map_; DISABLE_COPY_AND_ASSIGN(DefaultKernelSignatureMap); }; class OpUtilsMap { public: static OpUtilsMap& Instance(); bool Contains(const std::string& op_type) const { return name_map_.count(op_type) || arg_mapping_fn_map_.count(op_type); } void InsertApiName(std::string op_type, std::string api_name) { PADDLE_ENFORCE_EQ( name_map_.count(op_type), 0UL, paddle::platform::errors::AlreadyExists( "Operator (%s)'s api name has been registered.", op_type)); name_map_.insert({std::move(op_type), std::move(api_name)}); } void InsertArgumentMappingFn(std::string op_type, ArgumentMappingFn fn) { PADDLE_ENFORCE_EQ( arg_mapping_fn_map_.count(op_type), 0UL, paddle::platform::errors::AlreadyExists( "Operator (%s)'s argu,emt mapping function has been registered.", op_type)); arg_mapping_fn_map_.insert({std::move(op_type), std::move(fn)}); } std::string GetApiName(const std::string& op_type) const { auto it = name_map_.find(op_type); if (it == name_map_.end()) { return "deprecated"; } else { return it->second; } } ArgumentMappingFn GetArgumentMappingFn(const std::string& op_type) const { auto it = arg_mapping_fn_map_.find(op_type); if (it == arg_mapping_fn_map_.end()) { auto func = [op_type](const ArgumentMappingContext& ctx) -> KernelSignature { return DefaultKernelSignatureMap::Instance().Get(op_type); }; return func; } else { return it->second; } } private: OpUtilsMap() = default; paddle::flat_hash_map name_map_; paddle::flat_hash_map arg_mapping_fn_map_; DISABLE_COPY_AND_ASSIGN(OpUtilsMap); }; struct ApiNameRegistrar { ApiNameRegistrar(const char* op_type, const char* api_name) { OpUtilsMap::Instance().InsertApiName(op_type, api_name); } }; struct ArgumentMappingFnRegistrar { ArgumentMappingFnRegistrar(const char* op_type, ArgumentMappingFn arg_mapping_fn) { OpUtilsMap::Instance().InsertArgumentMappingFn(op_type, std::move(arg_mapping_fn)); } }; #define PT_REGISTER_API_NAME(op_type, api_name) \ PT_STATIC_ASSERT_GLOBAL_NAMESPACE( \ pt_register_api_name_ns_check_##op_type, \ "PT_REGISTER_API_NAME must be called in global namespace."); \ static const ::pten::ApiNameRegistrar __registrar_api_name_for_##op_type( \ #op_type, #api_name); \ int TouchApiNameSymbol_##op_type() { return 0; } #define PT_DECLARE_API_NAME(op_type) \ PT_STATIC_ASSERT_GLOBAL_NAMESPACE( \ pt_declare_ai_name_ns_check_##op_type, \ "PT_DECLARE_API_NAME must be called in global namespace."); \ extern int TouchApiNameSymbol_##op_type(); \ UNUSED static int __declare_api_name_symbol_for_##op_type = \ TouchApiNameSymbol_##op_type() #define PT_REGISTER_ARG_MAPPING_FN(op_type, arg_mapping_fn) \ PT_STATIC_ASSERT_GLOBAL_NAMESPACE( \ pt_register_arg_map_fn_ns_check_##op_type, \ "PT_REGISTER_ARG_MAPPING_FN must be called in global namespace."); \ static const ::pten::ArgumentMappingFnRegistrar \ __registrar_arg_map_fn_for_##op_type(#op_type, arg_mapping_fn); \ int TouchArgumentMappingFnSymbol_##op_type() { return 0; } #define PT_DECLARE_ARG_MAPPING_FN(op_type) \ PT_STATIC_ASSERT_GLOBAL_NAMESPACE( \ pt_declare_arg_map_fn_ns_check_##op_type, \ "PT_DECLARE_ARG_MAPPING_FN must be called in global namespace."); \ extern int TouchArgumentMappingFnSymbol_##op_type(); \ UNUSED static int __declare_arg_map_fn_symbol_for_##op_type = \ TouchArgumentMappingFnSymbol_##op_type() } // namespace pten