api.yaml 4.5 KB
Newer Older
1 2 3
- api : add
  args : (const Tensor& x, const Tensor& y)
  output : Tensor
4
  infer_meta :
5 6
    func : ElementwiseInferMeta
  kernel :
Y
YuanRisheng 已提交
7
    func : add
8 9 10 11

- api : cast
  args : (const Tensor& x, DataType out_dtype)
  output : Tensor
12
  infer_meta :
13 14 15
    func : CastInferMeta
  kernel :
    func : cast
16
    param : [x, out_dtype]
17 18
    data_type : x

19 20 21 22 23 24

- api : concat
  args : (const std::vector<Tensor>& x, const Scalar& axis)
  output : Tensor
  infer_meta :
    func : ConcatInferMeta
25
    param : [x, axis]
26 27 28
  kernel :
    func : concat

29 30 31 32 33 34 35 36
- api : conj
  args : (const Tensor& x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : conj

37 38 39
- api : divide
  args : (const Tensor& x, const Tensor& y)
  output : Tensor
40
  infer_meta :
41 42
    func : ElementwiseInferMeta
  kernel :
Y
YuanRisheng 已提交
43
    func : divide
44 45 46 47

- api : dot
  args : (const Tensor& x, const Tensor& y)
  output : Tensor
48
  infer_meta :
49
    func : DotInferMeta
50
  kernel :
51 52
    func : dot

53 54 55
- api : empty
  args : (const ScalarArray& shape, DataType dtype=DataType::FLOAT32, Backend place=Backend::CPU, DataLayout layout=DataLayout::NCHW)
  output: Tensor
56
  infer_meta :
57 58
    func : CreateInferMeta
    param : [shape, dtype, layout]
59
  kernel :
60 61 62 63 64
    func : empty
    param : [shape]
    data_type : dtype
    backend : place
    layout : layout
65

66 67 68
- api : empty_like
  args : (const Tensor& x, DataType dtype = DataType::UNDEFINED, Backend place = Backend::UNDEFINED, DataLayout layout = DataLayout::UNDEFINED)
  output: Tensor
69
  infer_meta :
70 71
    func : CreateLikeInferMeta
    param : [x, dtype, layout]
72
  kernel :
73 74 75 76 77 78
    func : empty_like
    param : []
    data_type : dtype > x
    backend : place > x
    layout : layout > x

79 80 81
- api : flatten
  args : (const Tensor& x, int start_axis, int stop_axis)
  output : Tensor
82
  infer_meta :
83
    func : FlattenInferMeta
84
  kernel :
Y
YuanRisheng 已提交
85
    func : flatten
86 87 88 89

- api : full
  args : (const ScalarArray& shape, const Scalar& value, DataType dtype=DataType::FLOAT32, Backend place=Backend::CPU, DataLayout layout=DataLayout::NCHW)
  output: Tensor
90
  infer_meta :
Z
zyfncg 已提交
91
    func : CreateInferMeta
92
    param : [shape, dtype, layout]
93
  kernel :
Y
YuanRisheng 已提交
94
    func : full
95 96 97 98
    param : [shape, value]
    data_type : dtype
    backend : place
    layout : layout
99

100 101 102
- api : full_like
  args : (const Tensor& x, const Scalar& value, DataType dtype = DataType::UNDEFINED, Backend place = Backend::UNDEFINED, DataLayout layout = DataLayout::UNDEFINED)
  output: Tensor
103
  infer_meta :
Z
zyfncg 已提交
104
    func : CreateLikeInferMeta
105
    param : [x, dtype, layout]
106
  kernel :
Y
YuanRisheng 已提交
107
    func : full_like
108
    param : [value]
109 110 111 112 113 114 115
    data_type : dtype > x
    backend : place > x
    layout : layout > x

- api : matmul
  args : (const Tensor& x, const Tensor& y, bool transpose_x = false, bool transpose_y = false)
  output : Tensor
116
  infer_meta :
117
    func : MatmulInferMeta
118
  kernel :
119
    func : matmul
120
  backward : matmul_grad
121 122

- api : mean
123
  args : (const Tensor& x, const std::vector<int64_t>& axis={}, bool keep_dim=false)
124
  output : Tensor
125
  infer_meta :
126
    func : ReduceInferMeta
127
  kernel :
Y
YuanRisheng 已提交
128
    func : mean
129 130 131 132

- api : multiply
  args : (const Tensor& x, const Tensor& y)
  output : Tensor
133
  infer_meta :
134 135
    func : ElementwiseInferMeta
  kernel :
Y
YuanRisheng 已提交
136
    func : multiply
137 138 139 140 141 142 143

- api : ones_like
  args : (const Tensor& x, DataType dtype=DataType::UNDEFINED, Backend place=Backend::UNDEFINED, DataLayout layout=DataLayout::UNDEFINED)
  output : Tensor
  invoke : full_like(x, 1, dtype, place, layout)

- api : reshape
144
  args : (const Tensor& x, const ScalarArray& shape)
145
  output : Tensor
146
  infer_meta :
147
    func : ReshapeInferMeta
148
  kernel :
Y
YuanRisheng 已提交
149
    func : reshape
150 151 152 153

- api : scale
  args : (const Tensor& x, const Scalar& scale, float bias, bool bias_after_scale)
  output : Tensor
154
  infer_meta :
155 156 157 158 159
    func : UnchangedInferMeta
    param : [x]
  kernel :
    func : scale

160 161 162 163 164 165 166 167
- api : sign
  args : (const Tensor& x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : sign

168 169 170
- api : subtract
  args : (const Tensor& x, const Tensor& y)
  output : Tensor
171
  infer_meta :
172 173
    func : ElementwiseInferMeta
  kernel :
Y
YuanRisheng 已提交
174
    func : subtract
175 176

- api : sum
177
  args : (const Tensor& x, const std::vector<int64_t>& axis={}, DataType dtype=DataType::UNDEFINED, bool keep_dim=false)
178
  output : Tensor
179
  infer_meta :
180
    func : SumInferMeta
181
  kernel :
Y
YuanRisheng 已提交
182
    func : sum
183
    param : [x, axis, dtype, keep_dim]
184
    data_type : x
185 186 187 188 189

- api : zeros_like
  args : (const Tensor& x, DataType dtype=DataType::UNDEFINED, Backend place=Backend::UNDEFINED, DataLayout layout=DataLayout::UNDEFINED)
  output : Tensor
  invoke : full_like(x, 0, dtype, place, layout)