/* Copyright (c) 2021 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 #include #include "paddle/fluid/framework/framework.pb.h" #include "paddle/fluid/framework/op_kernel_type.h" #include "paddle/fluid/framework/tensor.h" #include "paddle/fluid/platform/macros.h" #include "paddle/fluid/platform/place.h" #include "paddle/pten/api/lib/utils/tensor_utils.h" #include "paddle/pten/core/arg_map_context.h" #include "paddle/pten/core/kernel_factory.h" #include "paddle/utils/flat_hash_map.h" #include "paddle/utils/small_vector.h" namespace paddle { namespace framework { using KernelSignature = pten::KernelSignature; /* Kernel Key translate */ OpKernelType TransPtenKernelKeyToOpKernelType( const pten::KernelKey& kernel_key); pten::KernelKey TransOpKernelTypeToPtenKernelKey( const OpKernelType& kernel_type); /* Kernel Args parse */ // TODO(chenweihang): we can generate this map by proto info in compile time class KernelSignatureMap { public: static KernelSignatureMap& Instance(); bool Has(const std::string& op_type) const; const KernelSignature& Get(const std::string& op_type) const; private: KernelSignatureMap() = default; DISABLE_COPY_AND_ASSIGN(KernelSignatureMap); private: static KernelSignatureMap* kernel_signature_map_; static std::once_flag init_flag_; paddle::flat_hash_map map_; }; class KernelArgsNameMaker { public: virtual ~KernelArgsNameMaker() {} virtual const paddle::SmallVector& GetInputArgsNames() = 0; virtual const paddle::SmallVector& GetOutputArgsNames() = 0; virtual const paddle::SmallVector& GetAttrsArgsNames() = 0; }; void SetAllocationForOutputTenosr(pten::DenseTensor* tensor, const platform::Place& place); // TODO(Wilber): support others device context. template struct ConvertToPtenContext { using TYPE = T; }; template <> struct ConvertToPtenContext { using TYPE = pten::CPUContext; }; } // namespace framework } // namespace paddle