/* 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. */ #include "paddle/phi/api/ext/op_meta_info.h" #include #include #include #include "paddle/fluid/framework/custom_operator.h" #include "paddle/phi/core/dense_tensor.h" #include "paddle/phi/core/enforce.h" namespace paddle { PADDLE_API void AssignTensorImpl(const Tensor& src, Tensor* dst) { PADDLE_ENFORCE_EQ(src.is_dense_tensor() && dst->is_dense_tensor(), true, phi::errors::Unavailable( "Now only supported DenseTensor in Custom Operator.")); PADDLE_ENFORCE_EQ( src.initialized(), true, phi::errors::Unavailable( "The Custom OpKernel calculate output is not initialized.")); PADDLE_ENFORCE_EQ(dst->defined(), true, phi::errors::Unavailable( "The Custom OpKernel origin output is not defined.")); auto& dense_src = static_cast(*src.impl()); auto* dense_dst = static_cast(dst->impl().get()); *dense_dst = dense_src; } ////////////////////// Kernel Context ////////////////////// void CustomOpKernelContext::EmplaceBackInput(Tensor&& input) { size_t index = inputs_.size(); inputs_.emplace_back(input); input_range_.emplace_back(std::make_pair(index, index + 1)); } void CustomOpKernelContext::EmplaceBackInputs( const std::vector& inputs) { size_t index = inputs_.size(); input_range_.emplace_back(std::make_pair(index, index + inputs.size())); inputs_.insert(inputs_.end(), std::make_move_iterator(inputs.begin()), std::make_move_iterator(inputs.end())); } void CustomOpKernelContext::EmplaceBackOutput(Tensor&& output) { size_t index = outputs_.size(); outputs_.emplace_back(output); output_range_.emplace_back(std::make_pair(index, index + 1)); } void CustomOpKernelContext::EmplaceBackOutputs( const std::vector& outputs) { size_t index = outputs_.size(); output_range_.emplace_back(std::make_pair(index, index + outputs.size())); outputs_.insert(outputs_.end(), std::make_move_iterator(outputs.begin()), std::make_move_iterator(outputs.end())); } void CustomOpKernelContext::EmplaceBackAttr(paddle::any attr) { attrs_.emplace_back(std::move(attr)); VLOG(7) << "attrs_ No." << attrs_.size() - 1 << " has value of type: " << attrs_[attrs_.size() - 1].type().name(); } const Tensor& CustomOpKernelContext::InputAt(size_t idx) const { return inputs_.at(idx); } std::vector CustomOpKernelContext::InputsBetween(size_t start, size_t end) const { std::vector rlt; for (size_t i = start; i < end; ++i) { rlt.emplace_back(inputs_.at(i)); } return rlt; } Tensor* CustomOpKernelContext::MutableOutputAt(size_t idx) { return &(outputs_.at(idx)); } std::vector CustomOpKernelContext::MutableOutputBetweeen(size_t start, size_t end) { std::vector rlt; for (size_t i = start; i < end; ++i) { rlt.emplace_back(&(outputs_.at(i))); } return rlt; } std::vector CustomOpKernelContext::OutputsBetweeen(size_t start, size_t end) { std::vector rlt; for (size_t i = start; i < end; ++i) { rlt.emplace_back(outputs_.at(i)); } return rlt; } std::vector* CustomOpKernelContext::AllMutableOutput() { return &outputs_; } const std::pair& CustomOpKernelContext::InputRangeAt( size_t idx) const { return input_range_.at(idx); } const std::pair& CustomOpKernelContext::OutputRangeAt( size_t idx) const { return output_range_.at(idx); } ////////////////////// Op Meta Info ////////////////////// OpMetaInfo& OpMetaInfo::Inputs(std::vector&& inputs) { inputs_ = std::forward>(inputs); return *this; } OpMetaInfo& OpMetaInfo::Outputs(std::vector&& outputs) { outputs_ = std::forward>(outputs); return *this; } OpMetaInfo& OpMetaInfo::Attrs(std::vector&& attrs) { attrs_ = std::forward>(attrs); return *this; } OpMetaInfo& OpMetaInfo::SetKernelFn(KernelFunc&& func) { kernel_fn_ = std::forward(func); return *this; } OpMetaInfo& OpMetaInfo::SetInferShapeFn(InferShapeFunc&& func) { infer_shape_fn_ = std::forward(func); return *this; } OpMetaInfo& OpMetaInfo::SetInferDtypeFn(InferDtypeFunc&& func) { infer_dtype_fn_ = std::forward(func); return *this; } //////////////// Op Meta Info Map ///////////////// std::vector& OpMetaInfoMap::operator[](const std::string& name) { return map_[name]; } const std::unordered_map>& OpMetaInfoMap::GetMap() const { return map_; } //////////////// Op Meta Info Builder ///////////////// OpMetaInfoBuilder::OpMetaInfoBuilder(std::string&& name, size_t index) { // 1. member assign name_ = std::forward(name); index_ = index; // 2. check and meta info build auto& info_vector = OpMetaInfoMap::Instance()[name_]; // index check PADDLE_ENFORCE_EQ( info_vector.size(), index_, phi::errors::PreconditionNotMet( "The operator %s's meta info register failed. " "Please make sure you call marcos as order `PD_BUILD_OP`, " "`PD_BUILD_GRAD_OP`, `PD_BUILD_DOUBLE_GRAD_OP`.", name_)); switch (index_) { case 0: break; case 1: name_ = name_ + "_grad"; break; case 2: name_ = name_ + "_grad_grad"; break; default: PADDLE_THROW(phi::errors::InvalidArgument( "Not support index `%d` when construct OpMetaInfoBuilder, " "now only support `0, 1, 2`.", index_)); } auto op_meta = OpMetaInfo(name_); info_vector.emplace_back(std::move(op_meta)); // 3. get current info ptr info_ptr_ = &(info_vector.back()); } OpMetaInfoBuilder& OpMetaInfoBuilder::Inputs( std::vector&& inputs) { info_ptr_->Inputs(std::forward>(inputs)); return *this; } OpMetaInfoBuilder& OpMetaInfoBuilder::Outputs( std::vector&& outputs) { info_ptr_->Outputs(std::forward>(outputs)); return *this; } OpMetaInfoBuilder& OpMetaInfoBuilder::Attrs(std::vector&& attrs) { info_ptr_->Attrs(std::forward>(attrs)); return *this; } OpMetaInfoBuilder& OpMetaInfoBuilder::SetKernelFn(KernelFunc func) { info_ptr_->SetKernelFn(std::forward(func)); return *this; } OpMetaInfoBuilder& OpMetaInfoBuilder::SetInferShapeFn(InferShapeFunc func) { info_ptr_->SetInferShapeFn(std::forward(func)); return *this; } OpMetaInfoBuilder& OpMetaInfoBuilder::SetInferDtypeFn(InferDtypeFunc func) { PADDLE_ENFORCE_EQ( index_, 0UL, phi::errors::Unimplemented( "Currently, the InferDtypeFn setting of Grad Op is not supported, " "And backward Tensor `X@GRAD` will use the dtype of forward Tensor " "`X` by default.")); info_ptr_->SetInferDtypeFn(std::forward(func)); return *this; } /////////////////////// Op register API ///////////////////////// void RegisterAllCustomOperator() { auto& op_meta_info_map = OpMetaInfoMap::Instance(); framework::RegisterOperatorWithMetaInfoMap(op_meta_info_map); } void LoadCustomOperatorLib(const std::string& dso_name) { paddle::framework::LoadOpMetaInfoAndRegisterOp(dso_name); } } // namespace paddle #ifdef __cplusplus extern "C" { #endif #ifndef _WIN32 // C-API to get global OpMetaInfoMap. paddle::OpMetaInfoMap& PD_GetOpMetaInfoMap() { return paddle::OpMetaInfoMap::Instance(); } #endif #ifdef __cplusplus } // end extern "C" #endif