/* 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 #include "paddle/pten/core/meta_tensor.h" #include "paddle/utils/small_vector.h" namespace pten { // TODO(chenweihang): add other flags if needed struct MetaConfig { bool is_runtime{true}; MetaConfig() = default; // supporting implicit construction is easier to use MetaConfig(bool is_runtime) : is_runtime(is_runtime) {} // NOLINT }; class InferMetaContext { public: InferMetaContext() = default; explicit InferMetaContext(MetaConfig config) : config_(config) {} void SetMetaConfig(MetaConfig config); void EmplaceBackInput(std::shared_ptr input); void EmplaceBackOutput(std::shared_ptr output); void EmplaceBackAttr(paddle::any attr); void EmplaceBackInputs( paddle::SmallVector> inputs); void EmplaceBackOutputs( paddle::SmallVector> outputs); const std::pair& InputRangeAt(size_t idx) const; const std::pair& OutputRangeAt(size_t idx) const; const MetaConfig& GetMetaConfig() const; const MetaTensor& InputAt(size_t idx) const; MetaTensor* MutableOutputAt(size_t idx); template AttrType AttrAt(size_t idx) { try { return paddle::any_cast(attrs_.at(idx)); } catch (paddle::bad_any_cast&) { PADDLE_THROW(paddle::platform::errors::InvalidArgument( "Attribute cast error in InferMeta Context.")); } } private: MetaConfig config_; // NOTE(chenweihang): Because the MetaTensor is a base class, and MetaTensor // objects are all created in each round, so we have to use smart pointer // here, maybe we can implemented a new InferMetaContext and a series utils // specifically for fluid to avoid using shared_ptr paddle::SmallVector> inputs_; paddle::SmallVector> outputs_; paddle::SmallVector attrs_; paddle::SmallVector> input_range_; paddle::SmallVector> output_range_; }; #define PT_INFER_META(...) \ ::pten::InferMetaFnImpl::Call #define PT_SPECIALIZE_InferMetaFnCallHelper_FOR_ATTRIBUTE(attr_type) \ template \ struct InferMetaFnCallHelper { \ template \ static void Call(InferMetaContext* ctx, PreviousArgs&... pargs) { \ static_assert(out_idx == 0, \ "InferMeta's Attributes should appear before Outputs."); \ attr_type arg = ctx->AttrAt(attr_idx); \ InferMetaFnCallHelper< \ Tail...>::template Call(pargs..., \ arg); \ } \ } template struct InferMetaTypeTag {}; template struct InferMetaFnImpl; template struct InferMetaFnImpl { static void Call(InferMetaContext* ctx) { InferMetaFnCallHelper>::template Call<0, 0, 0>(ctx); } private: template struct InferMetaFnCallHelper; template struct InferMetaFnCallHelper { template static void Call(InferMetaContext* ctx, PreviousArgs&... pargs) { static_assert(attr_idx == 0, "InferMeta's Input should appear before Attributes."); static_assert(out_idx == 0, "InferMeta's Input should appear before Outputs."); const std::pair range = ctx->InputRangeAt(in_idx); const MetaTensor& arg = ctx->InputAt(range.first); InferMetaFnCallHelper< Tail...>::template Call(ctx, pargs..., arg); } }; // TODO(chenweihang): support vector input later template struct InferMetaFnCallHelper { template static void Call(InferMetaContext* ctx, PreviousArgs&... pargs) { const std::pair range = ctx->OutputRangeAt(out_idx); MetaTensor* arg = ctx->MutableOutputAt(range.first); InferMetaFnCallHelper< Tail...>::template Call(ctx, pargs..., arg); } }; // TODO(chenweihang): support vector output later template struct InferMetaFnCallHelper { template static void Call(InferMetaContext* ctx, PreviousArgs&... pargs) { const MetaConfig& arg = ctx->GetMetaConfig(); InferMetaFnCallHelper::template Call( ctx, pargs..., arg); } }; /* End case */ template struct InferMetaFnCallHelper> { template static void Call(InferMetaContext* ctx, Args&... args) { return infer_meta_fn(args...); } }; }; } // namespace pten