unary.h 19.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* 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? ]
18
#include "paddle/phi/common/int_array.h"
19 20
#include "paddle/phi/common/scalar.h"
#include "paddle/phi/core/meta_tensor.h"
21

22
namespace phi {
23

24 25
class MetaConfig;

26
// Common InferMeta Functions for unary operators, The format like:
27
//
28 29
//   void [FunctionDesc|OpName]InferMeta(const MetaTensor& x, ..., MetaTensor*
//   out) {}
30 31 32 33
//
// 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.
34 35
//
// The InferMeta Functions in this file are arranged in alphabetic order.
36

Z
zyfncg 已提交
37 38 39 40 41 42 43 44
void ArgMinMaxInferMeta(const MetaTensor& x,
                        int64_t axis,
                        bool keepdims,
                        bool flatten,
                        int dtype,
                        MetaTensor* out,
                        MetaConfig config = MetaConfig());

L
Linjie Chen 已提交
45 46 47 48 49 50
void ArgsortInferMeta(const MetaTensor& input,
                      int axis,
                      bool descending,
                      MetaTensor* output,
                      MetaTensor* indices);

51 52
void AsRealInferMeta(const MetaTensor& input, MetaTensor* output);

53 54
void AsComplexInferMeta(const MetaTensor& input, MetaTensor* output);

55 56 57 58 59 60
void BatchSizeLikeInferMeta(const MetaTensor& x,
                            const std::vector<int>& shape,
                            int x_batch_size_dim,
                            int out_batch_size_dim,
                            MetaTensor* out);

61
void CastInferMeta(const MetaTensor& x, DataType out_dtype, MetaTensor* out);
62

63 64
void CholeskyInferMeta(const MetaTensor& x, bool upper, MetaTensor* out);

L
lyq 已提交
65 66
void ClipByNormInferMeta(const MetaTensor& x, float max_norm, MetaTensor* out);

67
void CreateLikeInferMeta(const MetaTensor& x, DataType dtype, MetaTensor* out);
68

69 70 71 72 73 74
void CropTensorInferMeta(const MetaTensor& x,
                         const IntArray& shape,
                         const IntArray& offsets,
                         MetaTensor* out,
                         MetaConfig config = MetaConfig());

75 76 77 78 79 80
void CumInferMeta(const MetaTensor& x,
                  int axis,
                  bool flatten,
                  bool exclusive,
                  bool reverse,
                  MetaTensor* out);
81

82 83 84
void DiagEmbedInferMeta(
    const MetaTensor& x, int offset, int dim1, int dim2, MetaTensor* out);

Z
zyfncg 已提交
85 86 87 88 89 90 91 92
void DiagInferMeta(const MetaTensor& x,
                   int offset,
                   float padding_value,
                   MetaTensor* out);

void DiagonalInferMeta(
    const MetaTensor& input, int offset, int axis1, int axis2, MetaTensor* out);

93 94
void EigInferMeta(const MetaTensor& x, MetaTensor* out_w, MetaTensor* out_v);

Z
zyfncg 已提交
95 96 97 98 99
void EighInferMeta(const MetaTensor& x,
                   const std::string& uplo,
                   MetaTensor* out_w,
                   MetaTensor* out_v);

R
Ruibiao Chen 已提交
100 101 102 103
void EigvalsInferMeta(const MetaTensor& x,
                      MetaTensor* out,
                      MetaConfig config = MetaConfig());

104 105
void EinsumInferMeta(const std::vector<const MetaTensor*>& inputs,
                     const std::string& equation,
106 107 108 109 110 111 112
                     MetaTensor* out);

void EinsumRawInferMeta(const std::vector<const MetaTensor*>& inputs,
                        const std::string& equation,
                        MetaTensor* out,
                        std::vector<MetaTensor*> inner_cache,
                        std::vector<MetaTensor*> xshape);
113

H
hong 已提交
114 115 116 117
void ExpandInferMeta(const MetaTensor& x,
                     const IntArray& shape,
                     MetaTensor* out);

Z
zyfncg 已提交
118 119 120 121 122
void FlattenInferMeta(const MetaTensor& x,
                      int start_axis,
                      int stop_axis,
                      MetaTensor* out);

123 124 125 126 127 128
void FlattenWithXShapeInferMeta(const MetaTensor& x,
                                int start_axis,
                                int stop_axis,
                                MetaTensor* out,
                                MetaTensor* xshape);

129 130 131 132
void FlipInferMeta(const MetaTensor& x,
                   const std::vector<int>& axis,
                   MetaTensor* out);

133 134 135 136 137 138 139 140
void FullBatchSizeLikeInferMeta(const MetaTensor& x,
                                const std::vector<int>& shape,
                                const Scalar& val,
                                DataType dtype,
                                int x_batch_size_dim,
                                int out_batch_size_dim,
                                MetaTensor* out);

Z
zyfncg 已提交
141 142 143 144 145
void GumbelSoftmaxInferMeta(const MetaTensor& x,
                            float temperature,
                            bool hard,
                            int axis,
                            MetaTensor* out);
H
hong 已提交
146 147
void HistogramInferMeta(
    const MetaTensor& input, int64_t bins, int min, int max, MetaTensor* out);
Z
zyfncg 已提交
148

149 150
void IncrementInferMeta(const MetaTensor& x, float value, MetaTensor* out);

151 152 153
void InferMetaFromVecValue(const MetaTensor& x,
                           const std::vector<int64_t>& shape,
                           MetaTensor* out);
154

155 156
void InverseInferMeta(const MetaTensor& x, MetaTensor* out);

W
WJJ1995 已提交
157 158
void IsEmptyInferMeta(const MetaTensor& x, MetaTensor* out);

Z
zyfncg 已提交
159 160
void IsfiniteInferMeta(const MetaTensor& input, MetaTensor* out);

161 162 163 164 165 166 167 168
void KthvalueInferMeta(const MetaTensor& x,
                       int k,
                       int axis,
                       bool keepdim,
                       MetaTensor* out,
                       MetaTensor* indices,
                       MetaConfig = MetaConfig());

169 170 171 172 173 174
void LogsumexpInferMeta(const MetaTensor& input,
                        const std::vector<int64_t>& axis,
                        bool keepdim,
                        bool reduce_all,
                        MetaTensor* out);

175 176
void MatrixPowerInferMeta(const MetaTensor& x, int n, MetaTensor* out);

177 178 179 180 181
void MatrixRankInferMeta(const MetaTensor& x,
                         bool use_default_tol,
                         bool hermitian,
                         MetaTensor* out);

182 183 184 185 186
void MaxOutInferMeta(const MetaTensor& x,
                     int groups,
                     int axis,
                     MetaTensor* out);

F
From00 已提交
187 188 189 190 191 192 193 194 195 196
void MaxPoolWithIndexInferMeta(const MetaTensor& x,
                               const std::vector<int>& kernel_size,
                               const std::vector<int>& strides,
                               const std::vector<int>& paddings,
                               bool global_pooling,
                               bool adaptive,
                               MetaTensor* out,
                               MetaTensor* mask,
                               MetaConfig config = MetaConfig());

197 198
void MeanAllInferMeta(const MetaTensor& x, MetaTensor* out);

199 200 201 202 203 204
void ModeInferMeta(const MetaTensor& x,
                   int axis,
                   bool keepdim,
                   MetaTensor* out,
                   MetaTensor* indices);

205 206 207 208
void MultinomialInferMeta(const MetaTensor& x,
                          int num_samples,
                          bool replacement,
                          MetaTensor* out);
209 210 211 212 213 214 215

void NanmedianInferMeta(const MetaTensor& x,
                        const IntArray& axes,
                        bool keep_dim,
                        MetaTensor* out,
                        MetaTensor* median_index);

H
hong 已提交
216 217 218 219 220 221
void NormInferMeta(const MetaTensor& x,
                   int axis,
                   float epsilon,
                   bool is_test,
                   MetaTensor* out,
                   MetaTensor* norm);
222

Z
zyfncg 已提交
223 224 225 226 227 228
void PadInferMeta(const MetaTensor& input,
                  const std::vector<int>& paddings,
                  float pad_value,
                  MetaTensor* out,
                  MetaConfig config = MetaConfig());

229
void Pad3dInferMeta(const MetaTensor& x,
230
                    const IntArray& paddings,
231 232 233 234 235 236
                    const std::string& mode,
                    float value,
                    const std::string& data_format,
                    MetaTensor* out,
                    MetaConfig config = MetaConfig());

Z
zyfncg 已提交
237 238 239 240 241
void PixelShuffleInferMeta(const MetaTensor& x,
                           int upscale_factor,
                           const std::string& data_format,
                           MetaTensor* out);

H
hong 已提交
242 243 244 245 246
void PixelShuffleGradInferMeta(const MetaTensor& out_grad,
                               int upscale_factor,
                               const std::string& data_format,
                               MetaTensor* x_grad);

247 248 249 250 251
void PixelUnshuffleInferMeta(const MetaTensor& x,
                             int downscale_factor,
                             const std::string& data_format,
                             MetaTensor* out);

252 253 254 255 256 257 258 259
void PNormInferMeta(const MetaTensor& x,
                    float porder,
                    int axis,
                    float epsilon,
                    bool keepdim,
                    bool asvector,
                    MetaTensor* out);

F
From00 已提交
260 261 262 263 264 265 266 267 268 269 270 271 272 273
void PoolInferMeta(const MetaTensor& x,
                   const std::vector<int>& kernel_size,
                   const std::vector<int>& strides,
                   const std::vector<int>& paddings,
                   bool ceil_mode,
                   bool exclusive,
                   const std::string& data_format,
                   const std::string& pooling_type,
                   bool global_pooling,
                   bool adaptive,
                   const std::string& padding_algorithm,
                   MetaTensor* out,
                   MetaConfig config = MetaConfig());

274 275 276 277 278
void QrInferMeta(const MetaTensor& x,
                 const std::string& mode,
                 MetaTensor* q,
                 MetaTensor* r);

Z
zyfncg 已提交
279 280 281 282 283 284 285 286 287 288 289 290 291
void RealAndImagInferMeta(const MetaTensor& x, MetaTensor* out);

void ReduceInferMeta(const MetaTensor& x,
                     const std::vector<int64_t>& axis,
                     bool keep_dim,
                     MetaTensor* out);

void ReduceInferMetaBase(const MetaTensor& x,
                         const std::vector<int64_t>& axis,
                         bool keep_dim,
                         bool reduce_all,
                         MetaTensor* out);

292
void ReshapeInferMeta(const MetaTensor& x,
293
                      const IntArray& shape,
294 295 296 297
                      MetaTensor* out,
                      MetaConfig config = MetaConfig());

void ReshapeWithXShapeInferMeta(const MetaTensor& x,
298
                                const IntArray& shape,
299
                                MetaTensor* out,
300
                                MetaTensor* xshape,
301
                                MetaConfig config = MetaConfig());
302

303 304 305 306
void ReverseInferMeta(const MetaTensor& x,
                      const std::vector<int>& axis,
                      MetaTensor* out);

W
wanghuancoder 已提交
307 308 309 310
void ReverseArrayInferMeta(const std::vector<const phi::MetaTensor*>& x,
                           const std::vector<int>& axis,
                           std::vector<phi::MetaTensor*> out);

C
chenenquan 已提交
311
void RollInferMeta(const MetaTensor& x,
312
                   const IntArray& shifts,
C
chenenquan 已提交
313 314 315
                   const std::vector<int64_t>& axis,
                   MetaTensor* out);

316 317 318 319 320 321 322 323 324 325 326
void RReluInferMeta(const MetaTensor& x,
                    float lower,
                    float upper,
                    bool is_test,
                    MetaTensor* out,
                    MetaTensor* noise);

void RReluGradInferMeta(const MetaTensor& out_grad,
                        const MetaTensor& noise,
                        MetaTensor* x_grad);

327 328
void SetValueInferMeta(const MetaTensor& x, MetaTensor* out);

329 330
void ShapeInferMeta(const MetaTensor& input, MetaTensor* out);

Z
zyfncg 已提交
331 332 333 334 335 336 337
void ShardIndexInferMeta(const MetaTensor& in,
                         int index_num,
                         int nshards,
                         int shard_id,
                         int ignore_value,
                         MetaTensor* out,
                         MetaConfig config = MetaConfig());
338

Z
zyfncg 已提交
339
void SizeInferMeta(const MetaTensor& input, MetaTensor* out);
340

H
hong 已提交
341 342 343 344 345 346 347 348 349
void SliceRawInferMeta(const MetaTensor& input,
                       const std::vector<int64_t>& axes,
                       const IntArray& starts,
                       const IntArray& ends,
                       const std::vector<int64_t>& infer_flags,
                       const std::vector<int64_t>& decrease_axis,
                       MetaTensor* out,
                       MetaConfig config = MetaConfig());

Z
zyfncg 已提交
350
void SoftmaxInferMeta(const MetaTensor& x, int axis, MetaTensor* out);
351

Z
zyfncg 已提交
352
void SplitInferMeta(const MetaTensor& x_meta,
353
                    const IntArray& num_or_sections,
Z
zyfncg 已提交
354 355 356
                    const Scalar& axis,
                    std::vector<MetaTensor*> out,
                    MetaConfig config = MetaConfig());
357

358 359
void SquaredL2NormInferMeta(const MetaTensor& x, MetaTensor* out);

360 361
void SqueezeInferMeta(const MetaTensor& x,
                      const std::vector<int>& axes,
362 363 364 365 366 367
                      MetaTensor* out);

void SqueezeWithXShapeInferMeta(const MetaTensor& x,
                                const std::vector<int>& axes,
                                MetaTensor* out,
                                MetaTensor* xshape);
368

369 370 371 372 373 374 375 376 377 378
void StridedSliceRawInferMeta(const MetaTensor& x,
                              const std::vector<int>& axes,
                              const IntArray& starts,
                              const IntArray& ends,
                              const IntArray& strides,
                              const std::vector<int>& infer_flags,
                              const std::vector<int>& decrease_axis,
                              MetaTensor* out,
                              MetaConfig config = MetaConfig());

379 380
void StridedSliceInferMeta(const MetaTensor& x,
                           const std::vector<int>& axes,
381 382 383
                           const IntArray& starts,
                           const IntArray& ends,
                           const IntArray& strides,
384 385 386
                           MetaTensor* out,
                           MetaConfig config = MetaConfig());

387 388 389 390 391
void SumInferMeta(const MetaTensor& x,
                  const std::vector<int64_t>& axis,
                  DataType dtype,
                  bool keep_dim,
                  MetaTensor* out);
392

Z
zyfncg 已提交
393 394 395 396 397 398 399
void SumRawInferMeta(const MetaTensor& x,
                     const std::vector<int64_t>& axis,
                     bool keep_dim,
                     bool reduce_all,
                     DataType dtype,
                     MetaTensor* out);

400 401 402 403 404 405
void SvdInferMeta(const MetaTensor& x,
                  bool full_matrices,
                  MetaTensor* u,
                  MetaTensor* s,
                  MetaTensor* vh);

H
hong 已提交
406 407 408 409 410 411 412
void TemporalShiftInferMeta(const MetaTensor& x,
                            int seg_num,
                            float shift_ratio,
                            const std::string& data_format,
                            MetaTensor* out,
                            MetaConfig config = MetaConfig());

Z
zyfncg 已提交
413
void TileInferMeta(const MetaTensor& x,
414
                   const IntArray& repeat_times,
Z
zyfncg 已提交
415 416 417
                   MetaTensor* out,
                   MetaConfig config = MetaConfig());

418 419 420 421 422 423 424 425 426
void TopKInferMeta(const MetaTensor& x,
                   const Scalar& k_scalar,
                   int axis,
                   bool largest,
                   bool sorted,
                   MetaTensor* out,
                   MetaTensor* indices,
                   MetaConfig config = MetaConfig());

Z
zyfncg 已提交
427 428 429
void TraceInferMeta(
    const MetaTensor& x, int offset, int axis1, int axis2, MetaTensor* out);

430 431 432 433
void TransferLayoutInferMeta(const MetaTensor& x,
                             DataLayout layout,
                             MetaTensor* out);

Z
zyfncg 已提交
434 435 436
void TransposeInferMeta(const MetaTensor& x,
                        const std::vector<int>& axis,
                        MetaTensor* out);
C
Chen Weihang 已提交
437

H
hong 已提交
438 439 440 441
void TransposeGradInferMeta(const MetaTensor& x,
                            const std::vector<int>& axis,
                            MetaTensor* out);

442 443 444 445 446
void TrilTriuInferMeta(const MetaTensor& x,
                       int diagonal,
                       bool lower,
                       MetaTensor* out);

L
Leo Chen 已提交
447 448
void UnbindInferMeta(const MetaTensor& x,
                     int axis,
449
                     std::vector<MetaTensor*> outs);
Z
zyfncg 已提交
450 451 452 453 454 455 456

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);
C
Chen Weihang 已提交
457

458 459 460 461 462 463 464
void UnfoldInferMeta(const MetaTensor& x,
                     const std::vector<int>& kernel_sizes,
                     const std::vector<int>& strides,
                     const std::vector<int>& paddings,
                     const std::vector<int>& dilations,
                     MetaTensor* out,
                     MetaConfig config = MetaConfig());
465

466 467 468 469 470 471 472 473 474
void UniqueConsecutiveInferMeta(const MetaTensor& x,
                                bool return_inverse,
                                bool return_counts,
                                const std::vector<int>& axis,
                                int dtype,
                                MetaTensor* out,
                                MetaTensor* index,
                                MetaTensor* counts);

C
csy0225 已提交
475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497
void UniqueInferMeta(const MetaTensor& x,
                     bool return_index,
                     bool return_inverse,
                     bool return_counts,
                     const std::vector<int>& axis,
                     DataType dtype,
                     MetaTensor* out,
                     MetaTensor* indices,
                     MetaTensor* index,
                     MetaTensor* counts);

void UniqueRawInferMeta(const MetaTensor& x,
                        bool return_index,
                        bool return_inverse,
                        bool return_counts,
                        const std::vector<int>& axis,
                        DataType dtype,
                        bool is_sorted,
                        MetaTensor* out,
                        MetaTensor* indices,
                        MetaTensor* index,
                        MetaTensor* counts);

498
void UnsqueezeInferMeta(const MetaTensor& x,
499
                        const IntArray& axes,
500 501
                        MetaTensor* out,
                        MetaConfig config = MetaConfig());
502

503 504 505 506 507 508
void UnsqueezeWithXShapeInferMeta(const MetaTensor& x,
                                  const IntArray& axes,
                                  MetaTensor* out,
                                  MetaTensor* xshape,
                                  MetaConfig config = MetaConfig());

C
csy0225 已提交
509 510 511 512 513
void UnStackInferMeta(const MetaTensor& x,
                      int axis,
                      int num,
                      std::vector<MetaTensor*> outs);

H
hong 已提交
514
void OneHotRawInferMeta(const MetaTensor& x,
515
                        const Scalar& depth,
H
hong 已提交
516 517 518 519 520 521
                        DataType dtype,
                        bool allow_out_of_range,
                        MetaTensor* out);

void OneHotInferMeta(const MetaTensor& x, const Scalar& depth, MetaTensor* out);

522 523
void WhereIndexInferMeta(const MetaTensor& condition, MetaTensor* out);

524 525 526 527 528
void ChannelShuffleInferMeta(const MetaTensor& x,
                             int groups,
                             const std::string& data_format,
                             MetaTensor* out);

529 530
void IdentityLossInferMeta(const MetaTensor& x, int reduction, MetaTensor* out);

531
}  // namespace phi