/* 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 // See Note [ Why still include the fluid headers? ] #include "paddle/phi/common/scalar.h" #include "paddle/phi/common/scalar_array.h" #include "paddle/phi/core/meta_tensor.h" namespace phi { class MetaConfig; // Common InferMeta Functions for unary operators, The format like: // // void [FunctionDesc|OpName]InferMeta(const MetaTensor& x, ..., MetaTensor* // out) {} // // NOTE: The name "InferShape" may be not appropriate. "InferMeta" may be good. // Because functions in this file not only can infer shape, but also need // infer lod or other useful data. void ArgsortInferMeta(const MetaTensor& input, int axis, bool descending, MetaTensor* output, MetaTensor* indices); void UnchangedInferMeta(const MetaTensor& x, MetaTensor* out); // meta x -> out without change, check if axis in range [-Rank(x), Rank(x)-1] void UnchangedInferMetaCheckAxis(const MetaTensor& x, int axis, MetaTensor* out); void RealAndImagInferMeta(const MetaTensor& x, MetaTensor* out); void FlattenInferMeta(const MetaTensor& x, int start_axis, int stop_axis, MetaTensor* out); void GumbelSoftmaxInferMeta(const MetaTensor& x, float temperature, bool hard, int axis, MetaTensor* out); void CastInferMeta(const MetaTensor& x, DataType out_dtype, MetaTensor* out); void CholeskyInferMeta(const MetaTensor& x, bool upper, MetaTensor* out); void CopyToInferMeta(const MetaTensor& x, Backend backend, bool blocking, MetaTensor* out); void CreateLikeInferMeta(const MetaTensor& x, DataType dtype, MetaTensor* out); void CumsumInferMeta(const MetaTensor& x, int axis, bool flatten, bool exclusive, bool reverse, MetaTensor* out); void IncrementInferMeta(const MetaTensor& x, float value, MetaTensor* out); void InferMetaFromVecValue(const MetaTensor& x, const std::vector& shape, MetaTensor* out); void IsEmptyInferMeta(const MetaTensor& x, MetaTensor* out); void MultinomialInferMeta(const MetaTensor& x, int num_samples, bool replacement, MetaTensor* out); void ReshapeInferMeta(const MetaTensor& x, const ScalarArray& shape, MetaTensor* out, MetaConfig config = MetaConfig()); void ReshapeWithXShapeInferMeta(const MetaTensor& x, const ScalarArray& shape, MetaTensor* xshape, MetaTensor* out, MetaConfig config = MetaConfig()); void SumRawInferMeta(const MetaTensor& x, const std::vector& axis, bool keep_dim, bool reduce_all, DataType dtype, MetaTensor* out); void ReduceInferMetaBase(const MetaTensor& x, const std::vector& axis, bool keep_dim, bool reduce_all, MetaTensor* out); void ReduceInferMeta(const MetaTensor& x, const std::vector& axis, bool keep_dim, MetaTensor* out); void SumInferMeta(const MetaTensor& x, const std::vector& axis, DataType dtype, bool keep_dim, MetaTensor* out); void TransferLayoutInferMeta(const MetaTensor& x, DataLayout layout, MetaTensor* out); void SplitInferMeta(const MetaTensor& x_meta, const ScalarArray& num_or_sections, const Scalar& axis, std::vector out, MetaConfig config = MetaConfig()); void UnbindInferMeta(const MetaTensor& x, int axis, std::vector* outs); void TraceInferMeta( const MetaTensor& x, int offset, int axis1, int axis2, MetaTensor* out); void UnfoldInferMeta(const MetaTensor& x, const std::vector& kernel_sizes, const std::vector& strides, const std::vector& paddings, const std::vector& dilations, MetaTensor* out, MetaConfig config = MetaConfig()); void DiagInferMeta(const MetaTensor& x, int offset, float padding_value, MetaTensor* out); void ArgMinMaxInferMeta(const MetaTensor& x, int64_t axis, bool keepdims, bool flatten, int dtype, MetaTensor* out, MetaConfig config = MetaConfig()); void SizeInferMeta(const MetaTensor& input, MetaTensor* out); void PadInferMeta(const MetaTensor& input, const std::vector& paddings, float pad_value, MetaTensor* out, MetaConfig config = MetaConfig()); void DiagonalInferMeta( const MetaTensor& input, int offset, int axis1, int axis2, MetaTensor* out); void PixelShuffleInferMeta(const MetaTensor& x, int upscale_factor, const std::string& data_format, MetaTensor* out); void IsfiniteInferMeta(const MetaTensor& input, MetaTensor* out); void TransposeInferMeta(const MetaTensor& x, const std::vector& axis, MetaTensor* out); void EighInferMeta(const MetaTensor& x, const std::string& uplo, MetaTensor* out_w, MetaTensor* out_v); void WhereIndexInferMeta(const MetaTensor& condition, MetaTensor* out); void ShardIndexInferMeta(const MetaTensor& in, int index_num, int nshards, int shard_id, int ignore_value, MetaTensor* out, MetaConfig config = MetaConfig()); } // namespace phi