nullary.h 3.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* 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

17
#include "paddle/phi/common/int_array.h"
18
#include "paddle/phi/common/scalar.h"
19
#include "paddle/phi/core/meta_tensor.h"
20

21
namespace phi {
22

23
// Common InferMeta Functions for 0-nary operators(no input tensor), The format
24 25
// like:
//
26 27 28 29 30
//   1. void [FunctionDesc|OpName]InferMeta(..., 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.
31 32
//
// The InferMeta Functions in this file are arranged in alphabetic order.
33

34 35 36 37
void AssignValueInferMeta(const std::vector<int>& shape,
                          DataType dtype,
                          MetaTensor* out);

38 39 40 41
void CreateIntArrayInferMeta(const IntArray& data,
                             DataType dtype,
                             MetaTensor* out);

42
void CreateInferMeta(const IntArray& shape, DataType dtype, MetaTensor* out);
43

44 45 46 47
void CreateInferMetaBase(const std::vector<int64_t>& shape,
                         DataType dtype,
                         DataLayout layout,
                         MetaTensor* out);
48

49 50 51 52 53
void DataInferMeta(const std::string& name,
                   const phi::IntArray& shape,
                   phi::DataType data_type,
                   MetaTensor* out);

54 55
void EyeInferMeta(const Scalar& num_rows,
                  const Scalar& num_columns,
56
                  DataType dtype,
57 58
                  MetaTensor* out,
                  MetaConfig config = MetaConfig());
59

60 61 62 63 64 65
void GaussianInferMeta(const IntArray& shape,
                       float mean,
                       float std,
                       int seed,
                       DataType dtype,
                       MetaTensor* out);
66

Z
zyfncg 已提交
67 68
void RandpermInferMeta(int n, DataType dtype, MetaTensor* out);

F
From00 已提交
69 70 71
void RandintInferMeta(
    int low, int high, const IntArray& shape, DataType dtype, MetaTensor* out);

72 73 74 75 76 77 78
void PRecvInferMeta(int peer, DataType dtype, MetaTensor* out);

void PRecvArrayInferMeta(int peer,
                         DataType dtype,
                         const std::vector<int>& out_shape,
                         MetaTensor* out);

79 80 81 82 83 84 85
void TruncatedGaussianRandomInferMeta(const std::vector<int>& shape,
                                      float mean,
                                      float std,
                                      int seed,
                                      DataType dtype,
                                      MetaTensor* out);

86 87 88 89
void UniformRandomInferMeta(const IntArray& shape,
                            DataType dtype,
                            MetaTensor* out);

90 91
void TrilIndicesInferMeta(
    int rows, int cols, int offset, DataType dtype, MetaTensor* out);
92 93 94

void TriuIndicesInferMeta(
    int row, int col, int offset, DataType dtype, MetaTensor* out);
95
}  // namespace phi