legacy_ops.yaml 29.4 KB
Newer Older
1
# The apis in this file are unstandardized that may caused by a variety of reasons,
C
Chen Weihang 已提交
2
# we are trying to fix these apis and will move standardized apis into ops.yaml.
3

4
- op : adadelta_
5
  args : (Tensor param, Tensor grad, Tensor avg_squared_grad, Tensor avg_squared_update, Tensor learning_rate, Tensor master_param, float rho, float epsilon, bool multi_precision)
6
  output : Tensor(param_out), Tensor(moment_out), Tensor(inf_norm_out), Tensor(master_param_out)
Z
zyfncg 已提交
7 8 9 10
  infer_meta :
    func : AdadeltaInferMeta
  kernel :
    func : adadelta
11
    data_type : param
H
hong 已提交
12
  optional : master_param, master_param_out
13
  inplace : (param -> param_out), (avg_squared_grad -> moment_out), (avg_squared_update -> inf_norm_out), (master_param -> master_param_out)
Z
zyfncg 已提交
14

15
- op : add
Z
zyfncg 已提交
16
  args : (Tensor x, Tensor y)
17
  output : Tensor(out)
Z
zyfncg 已提交
18 19 20 21
  infer_meta :
    func : ElementwiseInferMeta
  kernel :
    func : add
22
  inplace : (x -> out)
Z
zyfncg 已提交
23 24
  backward : add_grad

25
- op : add_n
26
  args : (Tensor[] inputs)
Z
zyfncg 已提交
27
  output : Tensor
28
  invoke : add_n_impl(inputs)
Z
zyfncg 已提交
29 30
  backward : add_n_grad

31
- op : all
32
  args : (Tensor x, int64_t[] axis={}, bool keepdim=false)
Z
zyfncg 已提交
33 34 35 36 37 38
  output : Tensor(out)
  infer_meta :
    func : ReduceInferMeta
  kernel :
    func : all

39
- op : amax
40
  args : (Tensor x, int64_t[] axis={}, bool keepdim=false)
41 42 43 44 45 46 47
  output : Tensor(out)
  infer_meta :
    func : ReduceInferMeta
  kernel :
    func : amax
  backward : amax_grad

48
- op : amin
49
  args : (Tensor x, int64_t[] axis={}, bool keepdim=false)
50 51 52 53 54 55 56
  output : Tensor(out)
  infer_meta :
    func : ReduceInferMeta
  kernel :
    func : amin
  backward : amin_grad

57
- op : any
58
  args : (Tensor x, int64_t[] axis={}, bool keepdim=false)
Z
zyfncg 已提交
59 60 61 62 63 64
  output : Tensor(out)
  infer_meta :
    func : ReduceInferMeta
  kernel :
    func : any

65
- op : arange
Z
zyfncg 已提交
66
  args : (Tensor start, Tensor end, Tensor step, DataType dtype, Place place={})
67
  output : Tensor(out)
Z
zyfncg 已提交
68 69 70 71 72 73 74 75 76 77 78
  infer_meta :
    func : ArangeInferMeta
    param : [start, end, step]
  kernel :
    func : arange
    param : [start, end, step]
    data_type : dtype
    backend : place
  data_transform :
    support_trans_dtype : start, end, step

79
- op : assign
Z
zyfncg 已提交
80 81 82 83 84 85 86
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : assign
  backward : assign_grad
87
  inplace : (x -> out)
Z
zyfncg 已提交
88

89
- op : assign_out_
Z
zyfncg 已提交
90 91 92 93 94 95 96 97 98 99 100
  args : (Tensor x, Tensor output)
  output : Tensor(out)
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
  kernel :
    func : assign
    param : [x]
  inplace : (output -> out)
  backward : assign_out__grad

101
- op : assign_value_
102 103 104 105 106 107 108 109 110 111
  args : (Tensor output, int[] shape, DataType dtype, Scalar[] values, Place place = {})
  output : Tensor(out)
  inplace: (output -> out)
  infer_meta :
    func : AssignValueInferMeta
    param : [shape, dtype]
  kernel :
    func : assign_value
    param : [shape, dtype, values]
    data_type : dtype
112
    backend : place > output
113

114
- op : batch_norm
115
  args : (Tensor x, Tensor mean, Tensor variance, Tensor scale, Tensor bias, bool is_test, float momentum, float epsilon, str data_layout, bool use_global_stats, bool trainable_statistics)
Z
zyfncg 已提交
116
  output : Tensor(out), Tensor(mean_out), Tensor(variance_out), Tensor(saved_mean), Tensor(saved_variance), Tensor(reserve_space)
117 118 119 120 121 122
  infer_meta:
    func : BatchNormInferMeta
  kernel :
    func : batch_norm
    data_type : x
  view : (mean -> mean_out), (variance -> variance_out)
Z
zyfncg 已提交
123
  backward : batch_norm_grad
124
  optional : reserve_space
Z
zyfncg 已提交
125

L
Leo Chen 已提交
126 127 128 129 130 131 132 133 134 135
- op : c_broadcast
  args : (Tensor x, int ring_id=0, int root=0, bool use_calc_stream=false)
  output : Tensor(out)
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
  kernel :
    func : c_broadcast
  inplace : (x -> out)

H
hong 已提交
136 137 138 139 140 141 142 143 144
- op : c_concat
  args : (Tensor x, int rank, int nranks, int ring_id, bool use_calc_stream, bool use_model_parallel)
  output : Tensor(out)
  infer_meta :
    func : CConcatInferMeta
    param : [x, nranks]
  kernel :
    func : c_concat

145
- op : cast
146
  args : (Tensor x, DataType dtype)
147
  output : Tensor(out)
Z
zyfncg 已提交
148 149 150 151
  infer_meta :
    func : CastInferMeta
  kernel :
    func : cast
152
    param : [x, dtype]
Z
zyfncg 已提交
153
    data_type : x
154
  inplace: (x -> out)
Z
zyfncg 已提交
155 156
  backward : cast_grad

157 158 159 160 161 162 163 164 165
- op : channel_shuffle
  args : (Tensor x, int groups, str data_format="NCHW")
  output : Tensor(out)
  infer_meta :
    func : ChannelShuffleInferMeta
  kernel :
    func : channel_shuffle
  backward : channel_shuffle_grad

166
- op : conv2d_transpose
167
  args : (Tensor x, Tensor filter, int[] strides={1, 1}, int[] paddings={0, 0}, int[] output_padding={}, IntArray output_size={}, str padding_algorithm="EXPLICIT", int groups=1, int[] dilations={1, 1}, str data_format="NCHW")
Z
zyfncg 已提交
168 169
  output : Tensor(out)
  infer_meta :
170
    func : Conv2dTransposeInferMeta
Z
zyfncg 已提交
171 172
  kernel :
    func : conv2d_transpose
173
    data_type : x
Z
zyfncg 已提交
174 175
  backward : conv2d_transpose_grad

176
- op : copy_to
Z
zyfncg 已提交
177
  args : (Tensor x, Place place, bool blocking)
178
  output : Tensor(out)
Z
zyfncg 已提交
179 180
  invoke : copy_to_impl(x, place, blocking)

181
- op : decode_jpeg
Y
YuanRisheng 已提交
182
  args : (Tensor x, str mode, Place place)
W
wuyefeilin 已提交
183 184 185
  output : Tensor(out)
  infer_meta :
    func : DecodeJpegInferMeta
Y
YuanRisheng 已提交
186
    param : [x, mode]
W
wuyefeilin 已提交
187 188
  kernel :
    func : decode_jpeg
Y
YuanRisheng 已提交
189 190
    param : [x, mode]
    backend : place
W
wuyefeilin 已提交
191

192
- op : deformable_conv
Z
zyfncg 已提交
193 194 195 196 197 198 199 200 201 202
  args : (Tensor x, Tensor offset, Tensor filter, Tensor mask, int[] strides, int[] paddings, int[] dilations, int deformable_groups, int groups, int im2col_step)
  output : Tensor(out)
  infer_meta :
    func : DeformableConvInferMeta
  kernel :
    func : deformable_conv
    data_type : x
  optional : mask
  backward : deformable_conv_grad

203
- op : depthwise_conv2d_transpose
204
  args : (Tensor x, Tensor filter, int[] strides={1, 1}, int[] paddings={0, 0}, int[] output_padding={}, IntArray output_size={}, str padding_algorithm="EXPLICIT", int groups=1, int[] dilations={1, 1}, str data_format="NCHW")
Z
zyfncg 已提交
205 206
  output : Tensor(out)
  infer_meta :
207
    func : Conv2dTransposeInferMeta
Z
zyfncg 已提交
208 209
  kernel :
    func : depthwise_conv2d_transpose
210
    data_type : x
Z
zyfncg 已提交
211 212
  backward : depthwise_conv2d_transpose_grad

213 214 215 216 217 218 219 220 221 222 223
- op : disable_check_model_nan_inf
  args: (Tensor x, int flag = 0)
  output: Tensor(out)
  infer_meta:
    func: UnchangedInferMeta
    param : [x]
  kernel:
    func: check_model_nan_inf
    data_type: x
  backward: disable_check_model_nan_inf_grad

224
- op : distribute_fpn_proposals
225 226 227 228 229 230 231 232 233
  args : (Tensor fpn_rois, Tensor rois_num, int min_level, int max_level, int refer_level, int refer_scale, bool pixel_offset)
  output : Tensor[](multi_fpn_rois){max_level - min_level + 1}, Tensor[](multi_level_rois_num){max_level - min_level + 1}, Tensor(restore_index)
  infer_meta :
    func : DistributeFpnProposalsInferMeta
  kernel :
    func : distribute_fpn_proposals
    data_type : fpn_rois
  optional : rois_num

234
- op : divide
Z
zyfncg 已提交
235
  args : (Tensor x, Tensor y)
236
  output : Tensor(out)
Z
zyfncg 已提交
237 238 239 240
  infer_meta :
    func : ElementwiseInferMeta
  kernel :
    func : divide
241
  inplace: (x -> out)
Z
zyfncg 已提交
242 243
  backward : divide_grad

244
- op : dropout
245
  args : (Tensor x, Tensor seed_tensor, Scalar p, bool is_test, str mode, int seed, bool fix_seed)
Z
zyfncg 已提交
246 247 248 249 250 251 252 253 254
  output : Tensor(out), Tensor(mask)
  infer_meta :
    func : DropoutInferMeta
  kernel :
    func : dropout
    data_type : x
  optional : seed_tensor
  backward : dropout_grad

255
- op : einsum
Z
zyfncg 已提交
256
  args : (Tensor[] x, str equation)
257
  output : Tensor(out), Tensor[](inner_cache){x.size()}, Tensor[](xshape){x.size()}
Z
zyfncg 已提交
258
  infer_meta :
259
    func : EinsumRawInferMeta
Z
zyfncg 已提交
260 261
    param : [x, equation]
  kernel :
262
    func : einsum
Z
zyfncg 已提交
263 264
  backward : einsum_grad

265
- op : elementwise_pow
Z
zyfncg 已提交
266 267 268 269 270 271 272 273
  args : (Tensor x, Tensor y)
  output : Tensor(out)
  infer_meta :
    func : ElementwiseInferMeta
  kernel :
    func : elementwise_pow
  backward : elementwise_pow_grad

274
- op : embedding
Z
zyfncg 已提交
275 276
  args : (Tensor x, Tensor weight, int64_t padding_idx=-1, bool sparse=false)
  output : Tensor
277 278 279 280 281 282 283 284
  infer_meta :
    func : EmbeddingInferMeta
    param : [x, weight, padding_idx]
  kernel :
    func : embedding {dense, dense -> dense}
           sparse_weight_embedding {dense, selected_rows -> dense}
    param : [x, weight, padding_idx]
    data_type : weight
Z
zyfncg 已提交
285 286
  backward : embedding_grad

H
hong 已提交
287 288 289 290 291 292 293 294 295 296
- op : embedding_grad_dense
  args : (Tensor x, Tensor weight, Tensor out_grad, int64_t padding_idx=-1, bool sparse=false)
  output : Tensor(weight_grad)
  infer_meta :
    func : UnchangedInferMeta
    param : [weight]
  kernel :
    func : embedding_grad
    data_type : weight

297
- op : empty
Z
zyfncg 已提交
298
  args : (IntArray shape, DataType dtype=DataType::FLOAT32, Place place=CPUPlace())
299
  output: Tensor(out)
Z
zyfncg 已提交
300 301 302 303 304 305 306 307 308
  infer_meta :
    func : CreateInferMeta
    param : [shape, dtype]
  kernel :
    func : empty
    param : [shape, dtype]
    data_type : dtype
    backend : place

309
- op : empty_like
Z
zyfncg 已提交
310
  args : (Tensor x, DataType dtype = DataType::UNDEFINED, Place place = {})
311
  output: Tensor(out)
Z
zyfncg 已提交
312 313 314 315 316 317 318 319 320
  infer_meta :
    func : CreateLikeInferMeta
    param : [x, dtype]
  kernel :
    func : empty_like
    param : [x, dtype]
    data_type : dtype > x
    backend : place > x

321 322 323 324 325 326 327 328 329 330 331
- op : enable_check_model_nan_inf
  args: (Tensor x, int flag = 1)
  output: Tensor(out)
  infer_meta:
    func: UnchangedInferMeta
    param : [x]
  kernel:
    func: check_model_nan_inf
    data_type: x
  backward: enable_check_model_nan_inf_grad

332
- op : equal
333
  args : (Tensor x, Tensor y)
334
  output : Tensor(out)
Z
zyfncg 已提交
335 336 337 338
  infer_meta :
    func : CompareInferMeta
  kernel :
    func : equal
339
  inplace: (x -> out)
Z
zyfncg 已提交
340

341
- op : exponential_
342
  args : (Tensor x, float lam)
343 344 345 346 347 348 349 350 351
  output : Tensor(out)
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
  kernel :
    func : exponential
  inplace : (x -> out)
  backward : exponential__grad

352
- op : eye
353
  args : (Scalar num_rows, Scalar num_columns, DataType dtype=DataType::FLOAT32, Place place={})
Z
zyfncg 已提交
354 355 356 357 358 359 360 361 362 363
  output : Tensor(out)
  infer_meta :
    func : EyeInferMeta
    param : [num_rows, num_columns, dtype]
  kernel :
    func : eye
    param : [num_rows, num_columns, dtype]
    data_type : dtype
    backend : place

364
- op : floor_divide
Z
zyfncg 已提交
365 366 367 368 369 370
  args : (Tensor x, Tensor y)
  output : Tensor(out)
  infer_meta :
    func : ElementwiseInferMeta
  kernel :
    func : floor_divide
371
  inplace: (x -> out)
Z
zyfncg 已提交
372

373
- op : frobenius_norm
Z
zyfncg 已提交
374 375 376 377 378 379 380 381
  args : (Tensor x, int64_t[] axis,  bool keep_dim,  bool reduce_all)
  output : Tensor(out)
  infer_meta :
    func : ReduceInferMetaBase
  kernel :
    func : frobenius_norm
  backward : frobenius_norm_grad

382
- op : full
Z
zyfncg 已提交
383
  args : (IntArray shape, Scalar value, DataType dtype=DataType::FLOAT32, Place place=CPUPlace())
384
  output: Tensor(out)
Z
zyfncg 已提交
385 386 387 388 389 390 391 392 393
  infer_meta :
    func : CreateInferMeta
    param : [shape, dtype]
  kernel :
    func : full
    param : [shape, value, dtype]
    data_type : dtype
    backend : place

394
- op : full_
395 396 397 398 399 400 401 402 403 404 405 406
  args : (Tensor output, IntArray shape, Scalar value, DataType dtype=DataType::FLOAT32, Place place=CPUPlace())
  output : Tensor(out)
  inplace : (output -> out)
  infer_meta :
    func : CreateInferMeta
    param : [shape, dtype]
  kernel :
    func : full
    param : [shape, value, dtype]
    data_type : dtype
    backend : place

407
- op : full_batch_size_like
Z
zyfncg 已提交
408
  args : (Tensor input, int[] shape, DataType dtype, Scalar value, int input_dim_idx, int output_dim_idx, Place place=CPUPlace())
409
  output: Tensor(out)
Z
zyfncg 已提交
410 411 412 413 414 415 416 417 418
  infer_meta :
    func : FullBatchSizeLikeInferMeta
    param : [input, shape, value, dtype, input_dim_idx, output_dim_idx]
  kernel :
    func : full_batch_size_like
    param : [input, shape, value, dtype, input_dim_idx, output_dim_idx]
    data_type : dtype
    backend : place

419
- op : full_like
Z
zyfncg 已提交
420
  args : (Tensor x, Scalar value, DataType dtype = DataType::UNDEFINED, Place place = {})
421
  output: Tensor(out)
Z
zyfncg 已提交
422 423 424 425 426 427 428 429 430 431 432
  infer_meta :
    func : CreateLikeInferMeta
    param : [x, dtype]
  kernel :
    func : full_like
    param : [x, value, dtype]
    data_type : dtype > x
    backend : place > x
  data_transform :
    skip_transform : x

W
wanghuancoder 已提交
433 434 435 436 437 438 439 440 441 442
- op : full_with_tensor
  args : (Tensor shape, Tensor value, DataType dtype=DataType::FLOAT32)
  output: Tensor(out)
  infer_meta :
    func : FullWithTensorInferMeta
    param : [shape, dtype]
  kernel :
    func : full_with_tensor
    data_type : dtype

443 444 445 446 447 448 449 450 451 452 453
- op : fused_adam_
  args : (Tensor[] params, Tensor[] grads, Tensor learning_rate, Tensor[] moments1, Tensor[] moments2, Tensor[] beta1_pows, Tensor[] beta2_pows, Tensor[] master_params, Tensor skip_update, Scalar beta1, Scalar beta2, Scalar epsilon, int chunk_size, float weight_decay, bool use_adamw, bool multi_precision, bool use_global_beta_pow)
  output : Tensor[](params_out){params.size()}, Tensor[](moments1_out){params.size()}, Tensor[](moments2_out){params.size()}, Tensor[](beta1_pows_out){params.size()}, Tensor[](beta2_pows_out){params.size()}, Tensor[](master_params_out){params.size()}
  infer_meta :
    func : FusedAdamInferMeta
  kernel :
    func : fused_adam
    data_type : params
  optional : skip_update, master_params
  inplace : (params -> params_out), (moments1 -> moments1_out), (moments2 -> moments2_out), (beta1_pows -> beta1_pows_out), (beta2_pows -> beta2_pows_out), (master_params -> master_params_out)

H
hong 已提交
454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477
- op : fused_batch_norm_act
  args : (Tensor x, Tensor scale, Tensor bias, Tensor mean, Tensor variance, float momentum, float epsilon, str act_type)
  output : Tensor(out), Tensor(mean_out), Tensor(variance_out), Tensor(saved_mean), Tensor(saved_variance), Tensor(reserve_space)
  infer_meta:
    func : FusedBatchNormActInferMeta
    param : [x, scale, bias, mean, variance]
  kernel :
    func : fused_batch_norm_act
    data_type : x
  view : (mean -> mean_out), (variance -> variance_out)
  backward : fused_batch_norm_act_grad

- op : fused_bn_add_activation
  args : (Tensor x, Tensor z, Tensor scale, Tensor bias, Tensor mean, Tensor variance, float momentum, float epsilon, str act_type)
  output : Tensor(out), Tensor(mean_out), Tensor(variance_out), Tensor(saved_mean), Tensor(saved_variance), Tensor(reserve_space)
  infer_meta:
    func : FusedBatchNormActInferMeta
    param : [x, scale, bias, mean, variance]
  kernel :
    func : fused_bn_add_activation
    data_type : x
  view : (mean -> mean_out), (variance -> variance_out)
  backward : fused_bn_add_activation_grad

H
hong 已提交
478 479 480 481 482 483 484 485 486
- op : fused_softmax_mask_upper_triangle
  args : (Tensor X)
  output : Tensor(Out)
  infer_meta :
    func : UnchangedInferMeta
  kernel:
    func : fused_softmax_mask_upper_triangle
  backward: fused_softmax_mask_upper_triangle_grad

487
- op : gaussian
Z
zyfncg 已提交
488
  args : (IntArray shape, float mean, float std, int seed, DataType dtype, Place place={})
489
  output: Tensor(out)
Z
zyfncg 已提交
490
  infer_meta :
491
    func : GaussianInferMeta
Z
zyfncg 已提交
492 493
    param : [shape, mean, std, seed, dtype]
  kernel :
494
    func : gaussian
Z
zyfncg 已提交
495 496 497 498
    param : [shape, mean, std, seed, dtype]
    data_type : dtype
    backend : place

499
- op : greater_equal
500
  args : (Tensor x, Tensor y)
501
  output : Tensor(out)
Z
zyfncg 已提交
502 503 504 505
  infer_meta :
    func : CompareInferMeta
  kernel :
    func : greater_equal
506
  inplace: (x -> out)
Z
zyfncg 已提交
507

508
- op : greater_than
509
  args : (Tensor x, Tensor y)
510
  output : Tensor(out)
Z
zyfncg 已提交
511 512 513 514
  infer_meta :
    func : CompareInferMeta
  kernel :
    func : greater_than
515
  inplace: (x -> out)
Z
zyfncg 已提交
516

517
- op : hardswish
518
  args : (Tensor x)
C
cyber-pioneer 已提交
519
  output : Tensor(out)
Z
zyfncg 已提交
520 521 522 523
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
  kernel :
Z
zyfncg 已提交
524
    func : hardswish
525
  backward : hardswish_grad
Z
zyfncg 已提交
526

527
- op : hsigmoid_loss
Z
zhangyuqin1998 已提交
528
  args : (Tensor x, Tensor label, Tensor w, Tensor bias, Tensor path, Tensor code, int num_classes, bool is_sparse)
529 530 531 532 533 534 535 536 537
  output : Tensor(out), Tensor(pre_out), Tensor(w_out)
  infer_meta :
    func : HSigmoidLossInferMeta
  optional: path, code, bias
  kernel :
    func : hsigmoid_loss
    data_type : x
  backward : hsigmoid_loss_grad

538
- op : increment
539
  args : (Tensor x, float value = 1.0)
540
  output : Tensor(out)
Z
zyfncg 已提交
541 542 543 544
  infer_meta :
    func : IncrementInferMeta
  kernel :
    func : increment
H
hong 已提交
545
  inplace : (x -> out)
Z
zyfncg 已提交
546

547
- op : less_equal
548
  args : (Tensor x, Tensor y)
549
  output : Tensor(out)
Z
zyfncg 已提交
550 551 552 553
  infer_meta :
    func : CompareInferMeta
  kernel :
    func : less_equal
554
  inplace: (x -> out)
Z
zyfncg 已提交
555

556
- op : less_than
557
  args : (Tensor x, Tensor y)
558
  output : Tensor(out)
Z
zyfncg 已提交
559 560 561 562
  infer_meta :
    func : CompareInferMeta
  kernel :
    func : less_than
563
  inplace: (x -> out)
Z
zyfncg 已提交
564

565
- op : linspace
566
  args : (Tensor start, Tensor stop, Tensor number, DataType dtype, Place place)
567
  output : Tensor(out)
Z
zyfncg 已提交
568 569
  infer_meta :
    func : LinspaceInferMeta
570
    param: [start, stop, number, dtype]
Z
zyfncg 已提交
571 572
  kernel :
    func : linspace
573
    param: [start, stop, number, dtype]
Z
zyfncg 已提交
574
    data_type : dtype
575
    backend : place
Z
zyfncg 已提交
576

C
Chen Weihang 已提交
577 578 579 580 581 582 583 584 585 586 587 588
- op : logspace
  args : (Tensor start, Tensor stop, Tensor num, Tensor base, DataType dtype, Place place={})
  output : Tensor(out)
  infer_meta:
    func : LogspaceInferMeta
    param : [start, stop, num, base, dtype]
  kernel :
    func : logspace
    param : [start, stop, num, base, dtype]
    data_type : dtype
    backend : place

589
- op : logsumexp
Z
zyfncg 已提交
590 591 592 593 594 595 596 597
  args : (Tensor x, int64_t[] axis,  bool keepdim,  bool reduce_all)
  output : Tensor(out)
  infer_meta :
    func : LogsumexpInferMeta
  kernel :
    func : logsumexp
  backward : logsumexp_grad

598
- op : matmul
Z
zyfncg 已提交
599 600 601 602 603 604 605 606
  args : (Tensor x, Tensor y, bool transpose_x = false, bool transpose_y = false)
  output : Tensor
  infer_meta :
    func : MatmulInferMeta
  kernel :
    func : matmul
  backward : matmul_grad

R
RichardWooSJTU 已提交
607 608 609 610 611 612 613 614
- op : matmul_int8
  args : (Tensor x, Tensor y, bool transpose_x = false, bool transpose_y = false)
  output : Tensor
  infer_meta :
    func : MatmulInt8InferMeta
  kernel :
    func : matmul_int8

615
- op : matrix_rank
Z
zhangyuqin1998 已提交
616
  args : (Tensor x, float tol, bool use_default_tol=true, bool hermitian=false)
Z
zyfncg 已提交
617 618 619
  output : Tensor(out)
  infer_meta :
    func : MatrixRankInferMeta
Z
zhangyuqin1998 已提交
620
    param : [x, use_default_tol, hermitian]
Z
zyfncg 已提交
621 622 623
  kernel :
    func : matrix_rank

624
- op : matrix_rank_tol
Z
zyfncg 已提交
625 626 627 628 629 630 631
  args : (Tensor x, Tensor atol_tensor, bool use_default_tol=true, bool hermitian=false)
  output : Tensor(out)
  infer_meta :
    func : MatrixRankTolInferMeta
  kernel :
    func : matrix_rank_tol

632
- op : max
633
  args : (Tensor x, IntArray axis={}, bool keepdim=false)
Z
zyfncg 已提交
634 635
  output : Tensor(out)
  infer_meta :
636
    func : ReduceIntArrayAxisInferMeta
Z
zyfncg 已提交
637 638 639 640
  kernel :
    func : max
  backward : max_grad

641
- op : maximum
Z
zyfncg 已提交
642 643 644 645 646 647 648 649
  args : (Tensor x, Tensor y)
  output : Tensor(out)
  infer_meta :
    func : ElementwiseInferMeta
  kernel :
    func : maximum
  backward : maximum_grad

650
- op : mean
651
  args : (Tensor x, IntArray axis={}, bool keepdim=false)
Z
zyfncg 已提交
652 653
  output : Tensor(out)
  infer_meta :
654
    func : ReduceIntArrayAxisInferMeta
Z
zyfncg 已提交
655 656 657 658
  kernel :
    func : mean
  backward : mean_grad

H
hong 已提交
659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676
- op : memcpy_d2h
  args : (Tensor x, int dst_place_type)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
  kernel :
    func : memcpy_d2h

- op : memcpy_h2d
  args : (Tensor x, int dst_place_type)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
  kernel :
    func : memcpy_h2d

677
- op : min
678
  args : (Tensor x, IntArray axis={}, bool keepdim=false)
Z
zyfncg 已提交
679 680
  output : Tensor(out)
  infer_meta :
681
    func : ReduceIntArrayAxisInferMeta
Z
zyfncg 已提交
682 683 684 685
  kernel :
    func : min
  backward : min_grad

686
- op : minimum
Z
zyfncg 已提交
687 688 689 690 691 692 693 694
  args : (Tensor x, Tensor y)
  output : Tensor(out)
  infer_meta :
    func : ElementwiseInferMeta
  kernel :
    func : minimum
  backward : minimum_grad

695
- op : mish
Z
zyfncg 已提交
696 697 698 699 700 701 702 703 704
  args : (Tensor x, float lambda)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
  kernel :
    func : mish
  backward : mish_grad

705
- op : multiply
Z
zyfncg 已提交
706 707 708 709 710
  args : (Tensor x, Tensor y)
  output : Tensor
  infer_meta :
    func : ElementwiseInferMeta
  kernel :
711 712
    func : multiply {dense, dense -> dense},
           multiply_sr {selected_rows, dense -> selected_rows}
713
  inplace : (x -> out)
Z
zyfncg 已提交
714 715
  backward : multiply_grad

716
- op : norm
Z
zyfncg 已提交
717 718 719 720 721 722 723 724
  args : (Tensor x, int axis, float epsilon, bool is_test)
  output : Tensor(out), Tensor(norm)
  infer_meta :
    func : NormInferMeta
  kernel :
    func : norm
  backward : norm_grad

725
- op : not_equal
726
  args : (Tensor x, Tensor y)
727
  output : Tensor(out)
Z
zyfncg 已提交
728 729 730 731
  infer_meta :
    func : CompareInferMeta
  kernel :
    func : not_equal
732
  inplace: (x -> out)
Z
zyfncg 已提交
733

734
- op : one_hot
Z
zyfncg 已提交
735
  args : (Tensor x, Scalar(int) num_classes)
736
  output : Tensor(out)
Z
zyfncg 已提交
737 738 739 740 741
  infer_meta :
    func : OneHotInferMeta
  kernel :
    func : one_hot

742
- op : ones
743
  args : (IntArray shape, DataType dtype=DataType::FLOAT32, Place place=CPUPlace())
744
  output : Tensor(out)
745 746
  invoke : full(shape, 1, dtype, place)

747
- op : ones_like
Z
zyfncg 已提交
748
  args : (Tensor x, DataType dtype=DataType::UNDEFINED, Place place={})
749
  output : Tensor(out)
Z
zyfncg 已提交
750 751
  invoke : full_like(x, 1, dtype, place)

752
- op : pad
753
  args : (Tensor x, int[] paddings, Scalar pad_value)
Z
zyfncg 已提交
754 755 756 757 758 759 760
  output : Tensor
  infer_meta :
    func : PadInferMeta
  kernel :
    func : pad
  backward : pad_grad

761
- op : pool2d
762
  args : (Tensor x, IntArray kernel_size, int[] strides, int[] paddings, bool ceil_mode, bool exclusive, str data_format, str pooling_type, bool global_pooling, bool adaptive, str padding_algorithm)
Z
zyfncg 已提交
763 764
  output : Tensor(out)
  infer_meta :
765
    func : Pool2DInferMeta
766
    param : [x, kernel_size, strides, paddings, ceil_mode, exclusive, data_format, pooling_type, global_pooling, adaptive, padding_algorithm]
Z
zyfncg 已提交
767 768
  kernel :
    func : pool2d
769
    param : [x, kernel_size, strides, paddings, ceil_mode, exclusive, data_format, pooling_type, global_pooling, adaptive, padding_algorithm]
Z
zyfncg 已提交
770 771
  backward : pool2d_grad

772
- op : pool3d
773
  args : (Tensor x, int[] kernel_size, int[] strides, int[] paddings, bool ceil_mode, bool exclusive, str data_format, str pooling_type, bool global_pooling, bool adaptive, str padding_algorithm)
Z
zyfncg 已提交
774 775 776
  output : Tensor(out)
  infer_meta :
    func : PoolInferMeta
777
    param : [x, kernel_size, strides, paddings, ceil_mode, exclusive, data_format, pooling_type, global_pooling, adaptive, padding_algorithm]
Z
zyfncg 已提交
778 779
  kernel :
    func : pool3d
780
    param : [x, kernel_size, strides, paddings, ceil_mode, exclusive, data_format, pooling_type, global_pooling, adaptive, padding_algorithm]
Z
zyfncg 已提交
781 782
  backward : pool3d_grad

783 784 785 786 787 788
- op : prod
  args : (Tensor x, IntArray dims, bool keep_dim, bool reduce_all)
  output : Tensor
  infer_meta :
    func : ReduceIntArrayAxisInferMetaBase
  kernel :
789
    func : prod
790 791
  backward : prod_grad

792
- op : randint
Z
zyfncg 已提交
793 794 795 796 797 798 799 800 801 802 803
  args : (int low, int high, IntArray shape, DataType dtype=DataType::INT64, Place place={})
  output : Tensor(out)
  infer_meta :
    func : RandintInferMeta
    param : [low, high, shape, dtype]
  kernel :
    func : randint
    param : [low, high, shape, dtype]
    data_type : dtype
    backend : place

804
- op : randperm
Z
zyfncg 已提交
805
  args : (int n, DataType dtype, Place place={})
806
  output : Tensor(out)
Z
zyfncg 已提交
807 808 809 810 811 812 813 814 815
  infer_meta :
    func : RandpermInferMeta
    param : [n, dtype]
  kernel :
    func : randperm
    param : [n, dtype]
    data_type : dtype
    backend : place

816
- op : remainder
C
Chen Weihang 已提交
817
  args : (Tensor x, Tensor y)
818
  output : Tensor (out)
C
Chen Weihang 已提交
819 820 821 822 823 824
  infer_meta :
    func : ElementwiseInferMeta
  kernel :
    func : remainder
  inplace : (x -> out)

825
- op : repeat_interleave
826
  args : (Tensor x, int repeats, int axis)
S
seemingwang 已提交
827 828 829 830 831 832 833
  output : Tensor(out)
  infer_meta :
    func : RepeatInterleaveInferMeta
  kernel :
    func : repeat_interleave
  backward: repeat_interleave_grad

834
- op : repeat_interleave_with_tensor_index
835
  args : (Tensor x, Tensor repeats, int axis)
S
seemingwang 已提交
836 837 838 839 840 841 842 843
  output : Tensor(out)
  infer_meta :
    func : RepeatInterleaveWithTensorIndexInferMeta
  kernel :
    func : repeat_interleave_with_tensor_index
    data_type : x
  backward: repeat_interleave_with_tensor_index_grad

844
- op : reshape
Z
zyfncg 已提交
845 846 847 848 849
  args : (Tensor x, IntArray shape)
  output : Tensor(out), Tensor(xshape)
  infer_meta :
    func : ReshapeWithXShapeInferMeta
  kernel :
850
    func : reshape
Z
zyfncg 已提交
851 852 853 854 855
  inplace : (x -> out)
  view: (x -> out)
  intermediate : xshape
  backward: reshape_grad

856 857 858 859 860 861 862 863 864 865 866 867 868 869 870
- op : rnn
  args: (Tensor x, Tensor[] pre_state, Tensor[] weight_list, Tensor sequence_length, Tensor dropout_state_in, float dropout_prob=0.0, bool is_bidirec=false, int input_size=10, int hidden_size=100, int num_layers=1, str mode="RNN_TANH", int seed=0, bool is_test=false)
  output: Tensor(out), Tensor(dropout_state_out), Tensor[](state){pre_state.size()}, Tensor(reserve)
  infer_meta:
    func: RnnInferMeta
    param : [x, pre_state, weight_list, sequence_length, dropout_prob, is_bidirec, input_size, hidden_size, num_layers, mode, seed, is_test]
  kernel:
    func: rnn
    param : [x, pre_state, weight_list, sequence_length, dropout_prob, is_bidirec, input_size, hidden_size, num_layers, mode, seed, is_test]
    data_type: x
  backward: rnn_grad
  optional : sequence_length
  intermediate : reserve
  view : (dropout_state_in -> dropout_state_out)

W
Weilong Wu 已提交
871 872 873 874 875 876 877 878 879 880 881
- op : rrelu
  args : (Tensor x, float lower, float upper, bool is_test)
  output : Tensor(out), Tensor(noise)
  infer_meta :
    func : RReluInferMeta
  kernel :
    func : rrelu
    data_type : x
  intermediate : noise
  backward : rrelu_grad

882
- op : slice
Z
zyfncg 已提交
883 884 885 886 887 888 889 890
  args : (Tensor input, int64_t[] axes, IntArray starts, IntArray ends, int64_t[] infer_flags, int64_t[] decrease_axis)
  output : Tensor
  infer_meta :
    func : SliceRawInferMeta
  kernel :
    func : slice
  backward : slice_grad

891
- op : softmax
Z
zyfncg 已提交
892
  args : (Tensor x, int axis)
893
  output : Tensor(out)
Z
zyfncg 已提交
894 895 896 897
  infer_meta :
    func : SoftmaxInferMeta
  kernel :
    func : softmax
898
  inplace : (x -> out)
Z
zyfncg 已提交
899 900
  backward : softmax_grad

901
- op : split
C
Charles-hit 已提交
902 903 904 905 906 907
  args : (Tensor x, IntArray sections, Scalar(int) axis)
  output : Tensor[]{sections.size()}
  infer_meta :
    func : SplitInferMeta
  kernel :
    func : split
Z
zyfncg 已提交
908 909
  backward : split_grad

910
- op : split_with_num
C
Charles-hit 已提交
911 912 913 914 915 916 917 918
  args : (Tensor x, int num, Scalar(int) axis)
  output : Tensor[]{num}
  infer_meta :
    func : SplitWithNumInferMeta
  kernel :
    func : split_with_num
  backward : split_with_num_grad

919
- op : strided_slice
Z
zyfncg 已提交
920 921 922 923 924 925 926 927
  args : (Tensor x, int[] axes, IntArray starts, IntArray ends, IntArray strides)
  output : Tensor
  infer_meta :
    func : StridedSliceInferMeta
  kernel :
    func : strided_slice
  backward : strided_slice_grad

928
- op : subtract
Z
zyfncg 已提交
929
  args : (Tensor x, Tensor y)
930
  output : Tensor(out)
Z
zyfncg 已提交
931 932 933 934
  infer_meta :
    func : ElementwiseInferMeta
  kernel :
    func : subtract
935
  inplace : (x -> out)
Z
zyfncg 已提交
936 937
  backward : subtract_grad

938
- op : sum
939
  args : (Tensor x, IntArray axis={}, DataType dtype=DataType::UNDEFINED, bool keepdim=false)
Z
zyfncg 已提交
940 941 942 943 944 945 946 947
  output : Tensor(out)
  infer_meta :
    func : SumInferMeta
  kernel :
    func : sum
    data_type : x
  backward : sum_grad

948
- op : swish
949
  args : (Tensor x)
Z
zyfncg 已提交
950 951 952 953 954 955 956 957
  output : Tensor(out)
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
  kernel :
    func : swish
  backward : swish_grad

958
- op : sync_batch_norm_
959
  args : (Tensor x, Tensor mean, Tensor variance, Tensor scale, Tensor bias, bool is_test, float momentum, float epsilon, str data_layout, bool use_global_stats, bool trainable_statistics)
960 961 962 963 964
  output : Tensor(out), Tensor(mean_out), Tensor(variance_out), Tensor(saved_mean), Tensor(saved_variance), Tensor(reserve_space)
  infer_meta :
    func : BatchNormInferMeta
  kernel :
    func : sync_batch_norm
965
    data_type : x
966
  backward : sync_batch_norm_grad
967
  inplace : (mean -> mean_out), (variance -> variance_out)
W
wanghuancoder 已提交
968
  optional : reserve_space
969

970
- op : tile
971 972
  args : (Tensor x, IntArray repeat_times = {})
  output : Tensor(out)
Z
zyfncg 已提交
973 974 975 976 977 978
  infer_meta :
    func : TileInferMeta
  kernel :
    func : tile
  backward : tile_grad

N
niuliling123 已提交
979 980 981 982 983 984 985 986 987
- op : trans_layout
  args : (Tensor x, int[] perm)
  output : Tensor
  infer_meta :
    func : TransposeInferMeta
  kernel :
    func : transpose
  backward : trans_layout_grad

988
- op : transpose
989
  args : (Tensor x, int[] perm)
990
  output : Tensor(out)
Z
zyfncg 已提交
991 992 993 994 995 996
  infer_meta :
    func : TransposeInferMeta
  kernel :
    func : transpose
  backward : transpose_grad

997
- op : tril
Z
zyfncg 已提交
998
  args : (Tensor x, int diagonal)
999 1000 1001 1002 1003
  output : Tensor(out)
  infer_meta :
    func : TrilInferMeta
  kernel :
    func : tril
1004
  inplace: (x -> out)
1005 1006
  backward : tril_grad

1007
- op : tril_indices
Z
zyfncg 已提交
1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018
  args : (int rows, int cols, int offset, DataType dtype, Place place={})
  output : Tensor(out)
  infer_meta :
    func : TrilIndicesInferMeta
    param : [rows, cols, offset, dtype]
  kernel :
    func : tril_indices
    param : [rows, cols, offset, dtype]
    data_type : dtype
    backend : place

1019
- op : triu
Z
zyfncg 已提交
1020
  args : (Tensor x, int diagonal)
1021 1022 1023 1024 1025
  output : Tensor(out)
  infer_meta :
    func : TriuInferMeta
  kernel :
    func : triu
1026
  inplace: (x -> out)
1027 1028
  backward : triu_grad

1029
- op : triu_indices
1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040
  args : (int row, int col, int offset, DataType dtype, Place place={})
  output : Tensor(out)
  infer_meta :
    func : TriuIndicesInferMeta
    param : [row, col, offset, dtype]
  kernel :
    func : triu_indices
    param : [row, col, offset, dtype]
    data_type : dtype
    backend : place

Z
zyfncg 已提交
1041
# python API: paddle.nn.initializer.TruncatedNormal
1042
- op : truncated_gaussian_random
Z
zyfncg 已提交
1043
  args : (int[] shape, float mean, float std, int seed, DataType dtype=DataType::FLOAT32, Place place={})
1044
  output : Tensor(out)
Z
zyfncg 已提交
1045 1046 1047 1048 1049 1050 1051 1052 1053
  infer_meta :
    func : TruncatedGaussianRandomInferMeta
    param : [shape, mean, std, seed, dtype]
  kernel :
    func : truncated_gaussian_random
    param : [shape, mean, std, seed, dtype]
    backend : place
    data_type : dtype

1054
- op : uniform
1055
  args : (IntArray shape,  DataType dtype,  Scalar min,  Scalar max,  int seed, Place place={})
Z
zyfncg 已提交
1056 1057 1058
  output : Tensor(out)
  infer_meta :
    func : UniformRandomInferMeta
1059
    param: [shape, dtype]
Z
zyfncg 已提交
1060
  kernel :
1061
    func : uniform
Z
zyfncg 已提交
1062 1063 1064 1065 1066
    param: [shape, dtype, min, max, seed]
    data_type : dtype
    backend : place

# The `axis` argument of Python API paddle.unique is not vector
1067
- op : unique
Z
zyfncg 已提交
1068 1069 1070 1071 1072 1073 1074
  args : (Tensor x, bool return_index, bool return_inverse, bool return_counts, int[] axis, DataType dtype=DataType::INT64)
  output : Tensor(out), Tensor(indices), Tensor(inverse), Tensor(counts)
  infer_meta :
    func : UniqueInferMeta
  kernel :
    func : unique
    data_type : x
1075
  optional : indices, inverse, counts
Z
zyfncg 已提交
1076

1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
- op : unpool
  args: (Tensor x, Tensor indices, int[] ksize, int[] strides, int[] padding, IntArray output_size, str data_format)
  output: Tensor(out)
  infer_meta:
    func: UnpoolInferMeta
  kernel:
    func: unpool
    data_type: x
  backward: unpool_grad

1087
- op : zeros
1088
  args : (IntArray shape, DataType dtype=DataType::FLOAT32, Place place=CPUPlace())
1089
  output : Tensor(out)
1090 1091
  invoke : full(shape, 0, dtype, place)

1092
- op : zeros_like
Z
zyfncg 已提交
1093
  args : (Tensor x, DataType dtype=DataType::UNDEFINED, Place place = {})
1094
  output : Tensor(out)
Z
zyfncg 已提交
1095
  invoke : full_like(x, 0, dtype, place)