legacy_ops.yaml 58.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 : abs
Z
zyfncg 已提交
5 6 7 8 9 10 11 12
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : RealAndImagInferMeta
  kernel :
    func : abs
  backward : abs_grad

13
- op : accuracy
Z
zyfncg 已提交
14 15 16 17 18 19
  args : (Tensor x, Tensor indices, Tensor label)
  output : Tensor(accuracy), Tensor(correct), Tensor(total)
  infer_meta :
    func : AccuracyInferMeta
  kernel :
    func : accuracy
20
    data_type : x
Z
zyfncg 已提交
21

22
- op : adadelta_
Z
zyfncg 已提交
23 24 25 26 27 28
  args : (Tensor param, Tensor grad, Tensor avg_squared_grad, Tensor avg_squared_update, float rho, float epsilon)
  output : Tensor(param_out), Tensor(moment_out), Tensor(inf_norm_out)
  infer_meta :
    func : AdadeltaInferMeta
  kernel :
    func : adadelta
29
  inplace : (param -> param_out), (avg_squared_grad -> moment_out), (avg_squared_update -> inf_norm_out)
Z
zyfncg 已提交
30

31
- op : adagrad_
C
caozhou 已提交
32 33 34 35 36 37 38 39 40 41
  args : (Tensor param, Tensor grad, Tensor moment, Tensor learning_rate, float epsilon)
  output : Tensor(param_out), Tensor(moment_out)
  infer_meta :
    func : AdagradInferMeta
  kernel :
    func : adagrad {dense, dense, dense, dense -> dense, dense}
           adagrad_dense_param_sparse_grad {dense, selected_rows, dense, dense -> dense, dense}
    data_type : param
  inplace : (param -> param_out), (moment -> moment_out)

42
- op : adam_
Z
zyfncg 已提交
43 44
  args : (Tensor param, Tensor grad, Tensor learning_rate, Tensor moment1, Tensor moment2, Tensor beta1_pow, Tensor beta2_pow, Tensor master_param, Tensor skip_update, Scalar beta1, Scalar beta2, Scalar epsilon, bool lazy_mode, int64_t min_row_size_to_use_multithread, bool multi_precision, bool use_global_beta_pow)
  output : Tensor(param_out), Tensor(moment1_out), Tensor(moment2_out), Tensor(beta1_pow_out), Tensor(beta2_pow_out), Tensor(master_param_outs)
45 46 47 48 49 50
  infer_meta :
    func : AdamInferMeta
  kernel :
    func : adam {dense, dense, dense, dense, dense, dense, dense, dense, dense -> dense, dense, dense, dense, dense, dense},
           adam_dense_param_sparse_grad {dense, selected_rows, dense, dense, dense, dense, dense, dense, dense -> dense, dense, dense, dense, dense, dense}
    data_type : param
Z
zyfncg 已提交
51
  optional : master_param, skip_update
52
  inplace : (param -> param_out), (moment1 -> moment1_out), (moment2 -> moment2_out), (beta1_pow -> beta1_pow_out), (beta2_pow -> beta2_pow_out), (master_param -> master_param_outs)
Z
zyfncg 已提交
53

54
- op : adamax_
Z
zyfncg 已提交
55 56 57 58 59 60
  args : (Tensor param, Tensor grad, Tensor learning_rate, Tensor moment, Tensor inf_norm, Tensor beta1_pow, float beta1, float beta2, float epsilon)
  output : Tensor(param_out), Tensor(avg_squared_grad_out), Tensor(avg_squared_update_out)
  infer_meta :
    func : AdamaxInferMeta
  kernel :
    func : adamax
61
  inplace : (param -> param_out), (moment -> avg_squared_grad_out), (inf_norm -> avg_squared_update_out)
Z
zyfncg 已提交
62

63
- op : adamw_
Z
zyfncg 已提交
64 65
  args : (Tensor param, Tensor grad, Tensor learning_rate, Tensor moment1, Tensor moment2, Tensor beta1_pow, Tensor beta2_pow, Tensor master_param, Tensor skip_update, Scalar beta1, Scalar beta2, Scalar epsilon, float lr_ratio, float coeff, bool with_decay, bool lazy_mode, int64_t min_row_size_to_use_multithread, bool multi_precision, bool use_global_beta_pow)
  output : Tensor(param_out), Tensor(moment1_out), Tensor(moment2_out), Tensor(beta1_pow_out), Tensor(beta2_pow_out), Tensor(master_param_outs)
C
Charles-hit 已提交
66 67 68 69 70
  infer_meta :
    func : AdamwInferMeta
  kernel :
    func : adamw
    data_type : param
Z
zyfncg 已提交
71
  optional : master_param, skip_update
C
Charles-hit 已提交
72
  inplace : (param -> param_out), (moment1 -> moment1_out), (moment2 -> moment2_out), (beta1_pow -> beta1_pow_out), (beta2_pow -> beta2_pow_out), (master_param -> master_param_outs)
Z
zyfncg 已提交
73

74
- op : add
Z
zyfncg 已提交
75
  args : (Tensor x, Tensor y)
76
  output : Tensor(out)
Z
zyfncg 已提交
77 78 79 80
  infer_meta :
    func : ElementwiseInferMeta
  kernel :
    func : add
81
  inplace : (x -> out)
Z
zyfncg 已提交
82 83
  backward : add_grad

84
- op : add_n
85
  args : (Tensor[] inputs)
Z
zyfncg 已提交
86
  output : Tensor
87
  invoke : add_n_impl(inputs)
Z
zyfncg 已提交
88 89
  backward : add_n_grad

90
- op : affine_grid
91
  args : (Tensor input, IntArray outputShape, bool align_corners=true)
92 93 94 95 96 97 98 99 100 101
  output : Tensor
  infer_meta :
    func : AffineGridInferMeta
    param : [input, outputShape, align_corners]
  kernel :
    func : affine_grid
    param : [input, outputShape, align_corners]
    data_type : input
  backward : affine_grid_grad

102
- op : all
103
  args : (Tensor x, int64_t[] axis={}, bool keepdim=false)
Z
zyfncg 已提交
104 105 106 107 108 109
  output : Tensor(out)
  infer_meta :
    func : ReduceInferMeta
  kernel :
    func : all

110
- op : allclose
Z
zyfncg 已提交
111 112 113 114 115 116 117 118
  args : (Tensor x, Tensor y, Scalar rtol, Scalar atol, bool equal_nan)
  output : Tensor(out)
  infer_meta :
    func : AllValueCompareInferMeta
    param: [x, y]
  kernel :
    func : allclose

119
- op : amax
120
  args : (Tensor x, int64_t[] axis={}, bool keepdim=false)
121 122 123 124 125 126 127
  output : Tensor(out)
  infer_meta :
    func : ReduceInferMeta
  kernel :
    func : amax
  backward : amax_grad

128
- op : amin
129
  args : (Tensor x, int64_t[] axis={}, bool keepdim=false)
130 131 132 133 134 135 136
  output : Tensor(out)
  infer_meta :
    func : ReduceInferMeta
  kernel :
    func : amin
  backward : amin_grad

137
- op : any
138
  args : (Tensor x, int64_t[] axis={}, bool keepdim=false)
Z
zyfncg 已提交
139 140 141 142 143 144
  output : Tensor(out)
  infer_meta :
    func : ReduceInferMeta
  kernel :
    func : any

145
- op : arange
Z
zyfncg 已提交
146
  args : (Tensor start, Tensor end, Tensor step, DataType dtype, Place place={})
147
  output : Tensor(out)
Z
zyfncg 已提交
148 149 150 151 152 153 154 155 156 157 158
  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

159
- op : argmax
160
  args : (Tensor x, Scalar axis, bool keepdims, bool flatten, int dtype)
161
  output : Tensor(out)
Z
zyfncg 已提交
162 163 164
  infer_meta :
    func : ArgMinMaxInferMeta
  kernel :
Z
zyfncg 已提交
165
    func : argmax
Z
zyfncg 已提交
166

167
- op : argmin
168
  args : (Tensor x, Scalar axis, bool keepdims, bool flatten, int dtype)
169
  output : Tensor(out)
Z
zyfncg 已提交
170 171 172
  infer_meta :
    func : ArgMinMaxInferMeta
  kernel :
Z
zyfncg 已提交
173
    func : argmin
Z
zyfncg 已提交
174

175
- op : assign
Z
zyfncg 已提交
176 177 178 179 180 181 182 183
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : assign
  backward : assign_grad

184
- op : assign_out_
Z
zyfncg 已提交
185 186 187 188 189 190 191 192 193 194 195
  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

196
- op : assign_value_
197 198 199 200 201 202 203 204 205 206
  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
207
    backend : place > output
208

209
- op : auc
210
  args : (Tensor x, Tensor label, Tensor stat_pos, Tensor stat_neg, Tensor ins_tag_weight, str curve, int num_thresholds, int slide_steps)
Z
zyfncg 已提交
211 212 213 214 215
  output : Tensor(auc), Tensor(stat_pos_out), Tensor(stat_neg_out)
  infer_meta :
    func : AucInferMeta
  kernel :
    func : auc
216
  optional : ins_tag_weight
Z
zyfncg 已提交
217

218
- op : average_accumulates_
219 220 221 222 223 224 225 226 227
  args : (Tensor param, Tensor in_sum_1, Tensor in_sum_2, Tensor in_sum_3, Tensor in_num_accumulates, Tensor in_old_num_accumulates, Tensor in_num_updates, float average_window, int64_t max_average_window, int64_t min_average_window)
  output : Tensor(out_sum_1), Tensor(out_sum_2), Tensor(out_sum_3), Tensor(out_num_accumulates), Tensor(out_old_num_accumulates), Tensor(out_num_updates)
  infer_meta:
    func : AverageAccumulatesInferMeta
  kernel :
    func : average_accumulates {dense, dense, dense, dense, dense ,dense, dense -> dense, dense, dense, dense, dense, dense}
    data_type : param
  inplace : (in_sum_1 -> out_sum_1), (in_sum_2 -> out_sum_2), (in_sum_3 -> out_sum_3), (in_num_accumulates -> out_num_accumulates), (in_old_num_accumulates -> out_old_num_accumulates), (in_num_updates -> out_num_updates)

228
- op : batch_norm
229
  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 已提交
230
  output : Tensor(out), Tensor(mean_out), Tensor(variance_out), Tensor(saved_mean), Tensor(saved_variance), Tensor(reserve_space)
231 232 233 234 235 236
  infer_meta:
    func : BatchNormInferMeta
  kernel :
    func : batch_norm
    data_type : x
  view : (mean -> mean_out), (variance -> variance_out)
Z
zyfncg 已提交
237 238
  backward : batch_norm_grad

239
- op : bce_loss
Z
zyfncg 已提交
240 241 242 243 244 245 246 247
  args : (Tensor input, Tensor label)
  output : Tensor
  infer_meta :
    func : BCELossInferMeta
  kernel :
    func : bce_loss
  backward : bce_loss_grad

248
- op : bicubic_interp
249 250 251 252 253 254 255 256 257 258
  args : (Tensor x, Tensor out_size, Tensor[] size_tensor, Tensor scale_tensor, str data_layout, int out_d, int out_h, int out_w, float[] scale, str interp_method, bool align_corners, int align_mode)
  output : Tensor(output)
  infer_meta :
    func : InterpolateInferMeta
  optional: out_size, size_tensor, scale_tensor
  kernel :
    func : bicubic_interp
    data_type : x
  backward : bicubic_interp_grad

259
- op : bilinear_interp
260 261 262 263 264 265 266 267 268 269
  args : (Tensor x, Tensor out_size, Tensor[] size_tensor, Tensor scale_tensor, str data_layout, int out_d, int out_h, int out_w, float[] scale, str interp_method, bool align_corners, int align_mode)
  output : Tensor(output)
  infer_meta :
    func : InterpolateInferMeta
  optional: out_size, size_tensor, scale_tensor
  kernel :
    func : bilinear_interp
    data_type : x
  backward : bilinear_interp_grad

270
- op : bilinear_tensor_product
271 272 273 274 275 276 277 278 279
  args : (Tensor x, Tensor y, Tensor weight, Tensor bias)
  output : Tensor
  infer_meta :
    func : BilinearTensorProductInferMeta
  kernel :
    func : bilinear_tensor_product
  optional : bias
  backward : bilinear_tensor_product_grad

280
- op : bincount
281
  args: (Tensor x, Tensor weights, Scalar(int) minlength = 0)
282 283 284 285 286 287 288
  output: Tensor(out)
  infer_meta:
    func: BincountInferMeta
  kernel:
    func: bincount
  optional: weights

289
- op : bitwise_and
Z
zyfncg 已提交
290
  args : (Tensor x, Tensor y)
291
  output : Tensor(out)
Z
zyfncg 已提交
292 293 294 295 296
  infer_meta :
    func : ElementwiseInferMeta
  kernel :
    func : bitwise_and

297
- op : bitwise_not
Z
zyfncg 已提交
298
  args : (Tensor x)
299
  output : Tensor(out)
Z
zyfncg 已提交
300 301 302 303 304
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : bitwise_not

305
- op : bitwise_or
Z
zyfncg 已提交
306
  args : (Tensor x, Tensor y)
307
  output : Tensor(out)
Z
zyfncg 已提交
308 309 310 311 312
  infer_meta :
    func : ElementwiseInferMeta
  kernel :
    func : bitwise_or

313
- op : bitwise_xor
Z
zyfncg 已提交
314
  args : (Tensor x, Tensor y)
315
  output : Tensor(out)
Z
zyfncg 已提交
316 317 318 319 320
  infer_meta :
    func : ElementwiseInferMeta
  kernel :
    func : bitwise_xor

321
- op : box_coder
L
lyq 已提交
322 323 324 325 326 327 328 329
  args : (Tensor prior_box, Tensor prior_box_var, Tensor target_box, str code_type, bool box_normalized, int axis, float[] variance)
  output : Tensor(output_box)
  infer_meta :
    func : BoxCoderInferMeta
  kernel :
    func : box_coder
  optional : prior_box_var

330 331 332 333 334 335 336 337 338
- op : broadcast_tensors
  args: (Tensor[] input)
  output: Tensor[]{input.size()}
  infer_meta:
    func: BroadcastTensorsInferMeta
  kernel:
    func: broadcast_tensors
  backward: broadcast_tensors_grad

339
- op : cast
340
  args : (Tensor x, DataType dtype)
Z
zyfncg 已提交
341 342 343 344 345
  output : Tensor
  infer_meta :
    func : CastInferMeta
  kernel :
    func : cast
346
    param : [x, dtype]
Z
zyfncg 已提交
347 348 349
    data_type : x
  backward : cast_grad

350 351 352 353 354 355 356 357 358 359 360 361
- op : check_finite_and_unscale_
  args : (Tensor[] x, Tensor scale, Tensor input_found_infinite)
  output : Tensor[](out){x.size()}, Tensor(output_found_infinite)
  infer_meta :
    func : CheckFiniteAndUnscaleInferMeta
    param : [x, scale]
  kernel :
    func : check_finite_and_unscale
    param : [x, scale]
    data_type : x
  inplace : (x -> out), (input_found_infinite -> output_found_infinite)

362
- op : class_center_sample
363 364 365
  args : (Tensor label, int num_classes, int num_samples, int ring_id, int rank, int nranks, bool fix_seed, int seed)
  output : Tensor(remapped_label), Tensor(sampled_local_class_center)
  infer_meta :
366
    func : ClassCenterSampleInferMeta
367
  kernel :
368
    func : class_center_sample
369

370
- op : clip
Z
zyfncg 已提交
371 372 373 374 375 376 377 378 379 380
  args : (Tensor x, Scalar(float) min, Scalar(float) max)
  output : Tensor(out)
  inplace : (x -> out)
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
  kernel :
    func : clip
  backward : clip_grad

381
- op : clip_by_norm
L
lyq 已提交
382 383 384 385 386 387 388
  args : (Tensor x, float max_norm)
  output : Tensor(out)
  infer_meta :
    func : ClipByNormInferMeta
  kernel :
    func : clip_by_norm

389
- op : coalesce_tensor
390 391 392 393 394 395 396 397
  args : (Tensor[] input, DataType dtype, bool copy_data = false, bool set_constant = false, bool persist_output = false, float constant = 0.0, bool use_align = true, int align_size = -1, int size_of_dtype = -1, int64_t[] concated_shapes = {}, int64_t[] concated_ranks = {})
  output : Tensor[](output){input.size()}, Tensor(fused_output)
  infer_meta :
    func : CoalesceTensorInferMeta
  kernel :
    func : coalesce_tensor
    data_type : dtype

398
- op : concat
Z
zyfncg 已提交
399 400 401 402 403 404 405 406 407
  args : (Tensor[] x, Scalar(int64_t) axis)
  output : Tensor
  infer_meta :
    func : ConcatInferMeta
    param : [x, axis]
  kernel :
    func : concat
  backward : concat_grad

408
- op : conv2d
409
  args : (Tensor input, Tensor filter, int[] strides, int[] paddings, str padding_algorithm, int[] dilations, int groups, str data_format)
Z
zyfncg 已提交
410
  output : Tensor
Z
zyfncg 已提交
411 412 413 414
  infer_meta :
    func : ConvInferMeta
  kernel :
    func : conv2d
Z
zyfncg 已提交
415 416
  backward : conv2d_grad

417
- op : conv2d_transpose
418
  args : (Tensor x, Tensor filter, int[] strides, int[] paddings, int[] output_padding, IntArray output_size, str padding_algorithm, int groups, int[] dilations, str data_format)
Z
zyfncg 已提交
419 420
  output : Tensor(out)
  infer_meta :
421
    func : Conv2dTransposeInferMeta
Z
zyfncg 已提交
422 423 424 425
  kernel :
    func : conv2d_transpose
  backward : conv2d_transpose_grad

426
- op : conv3d
427
  args : (Tensor input, Tensor filter, int[] strides, int[] paddings, str padding_algorithm, int groups, int[] dilations, str data_format)
Z
zyfncg 已提交
428
  output : Tensor
Z
zyfncg 已提交
429
  infer_meta :
430
    func : Conv3DInferMeta
Z
zyfncg 已提交
431 432
  kernel :
    func : conv3d
Z
zyfncg 已提交
433 434
  backward : conv3d_grad

435
- op : conv3d_transpose
Z
zyfncg 已提交
436 437 438 439 440 441 442 443
  args : (Tensor x, Tensor filter, int[] strides, int[] paddings, int[] output_padding, int[] output_size, str padding_algorithm, int groups, int[] dilations, str data_format)
  output : Tensor(out)
  infer_meta :
    func : ConvTransposeInferMeta
  kernel :
    func : conv3d_transpose
  backward : conv3d_transpose_grad

444
- op : copy_to
Z
zyfncg 已提交
445
  args : (Tensor x, Place place, bool blocking)
446
  output : Tensor(out)
Z
zyfncg 已提交
447 448 449
  invoke : copy_to_impl(x, place, blocking)

# Part of python API paddle.nn.functional.cross_entropy
450
- op : cross_entropy_with_softmax
Z
zyfncg 已提交
451 452 453 454 455 456 457 458 459
  args : (Tensor input, Tensor label, bool soft_label, bool use_softmax, bool numeric_stable_mode, int ignore_index, int axis)
  output : Tensor(softmax), Tensor(loss)
  infer_meta :
    func : CrossEntropyWithSoftmaxInferMeta
  kernel :
    func : cross_entropy_with_softmax
    data_type : input
  backward : cross_entropy_with_softmax_grad

460
- op : cumprod
Z
zyfncg 已提交
461 462 463 464 465 466 467 468 469
  args : (Tensor x,  int dim)
  output : Tensor(out)
  infer_meta :
    func : UnchangedInferMeta
    param: [x]
  kernel :
    func : cumprod
  backward : cumprod_grad

470
- op : cumsum
W
WangZhen 已提交
471
  args : (Tensor x, Scalar axis, bool flatten, bool exclusive, bool reverse)
Z
zyfncg 已提交
472 473
  output : Tensor(out)
  infer_meta :
W
WangZhen 已提交
474
    func : CumScalarAxisInferMeta
Z
zyfncg 已提交
475 476 477 478
  kernel :
    func : cumsum
  backward : cumsum_grad

479
- op : decode_jpeg
Y
YuanRisheng 已提交
480
  args : (Tensor x, str mode, Place place)
W
wuyefeilin 已提交
481 482 483
  output : Tensor(out)
  infer_meta :
    func : DecodeJpegInferMeta
Y
YuanRisheng 已提交
484
    param : [x, mode]
W
wuyefeilin 已提交
485 486
  kernel :
    func : decode_jpeg
Y
YuanRisheng 已提交
487 488
    param : [x, mode]
    backend : place
W
wuyefeilin 已提交
489

490
- op : deformable_conv
Z
zyfncg 已提交
491 492 493 494 495 496 497 498 499 500
  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

501
- op : depthwise_conv2d
502
  args : (Tensor x, Tensor filter, int[] strides, int[] paddings, str padding_algorithm, int groups, int[] dilations, str data_format)
Z
zyfncg 已提交
503 504
  output : Tensor(out)
  infer_meta :
505
    func : DepthwiseConvInferMeta
506
    param : [x, filter, strides, paddings, padding_algorithm, groups, dilations, data_format]
Z
zyfncg 已提交
507 508
  kernel :
    func : depthwise_conv2d
509
    param : [x, filter, strides, paddings, padding_algorithm, groups, dilations, data_format]
Z
zyfncg 已提交
510 511
  backward : depthwise_conv2d_grad

512
- op : depthwise_conv2d_transpose
513
  args : (Tensor x, Tensor filter, int[] strides, int[] paddings, int[] output_padding, IntArray output_size, str padding_algorithm, int groups, int[] dilations, str data_format)
Z
zyfncg 已提交
514 515
  output : Tensor(out)
  infer_meta :
516
    func : Conv2dTransposeInferMeta
Z
zyfncg 已提交
517 518 519 520
  kernel :
    func : depthwise_conv2d_transpose
  backward : depthwise_conv2d_transpose_grad

521 522 523 524 525 526 527 528
- op : dirichlet
  args: (Tensor alpha)
  output: Tensor(out)
  infer_meta:
    func: DirichletInferMeta
  kernel:
    func: dirichlet

529
- op : distribute_fpn_proposals
530 531 532 533 534 535 536 537 538
  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

539
- op : divide
Z
zyfncg 已提交
540 541 542 543 544 545 546 547
  args : (Tensor x, Tensor y)
  output : Tensor
  infer_meta :
    func : ElementwiseInferMeta
  kernel :
    func : divide
  backward : divide_grad

548
- op : dropout
549
  args : (Tensor x, Tensor seed_tensor, Scalar p, bool is_test, str mode, int seed, bool fix_seed)
Z
zyfncg 已提交
550 551 552 553 554 555 556 557 558
  output : Tensor(out), Tensor(mask)
  infer_meta :
    func : DropoutInferMeta
  kernel :
    func : dropout
    data_type : x
  optional : seed_tensor
  backward : dropout_grad

559
- op : edit_distance
Z
zhiboniu 已提交
560 561 562 563 564 565 566 567 568
  args : (Tensor hyps, Tensor refs, Tensor hypslength, Tensor refslength, bool normalized = false)
  output : Tensor(sequencenum), Tensor(out)
  infer_meta :
    func : EditDistanceInferMeta
  kernel :
    func : edit_distance
    data_type: DataType::FLOAT32
  optional : hypslength, refslength

569
- op : eigvalsh
570 571 572 573 574 575 576 577
  args : (Tensor x, str uplo, bool is_test)
  output : Tensor(eigenvalues), Tensor(eigenvectors)
  infer_meta :
    func : EigvalshInferMeta
  kernel :
    func : eigvalsh
  backward : eigvalsh_grad

578
- op : einsum
Z
zyfncg 已提交
579 580 581
  args : (Tensor[] x, str equation)
  output : Tensor, Tensor[]{x.size()}, Tensor[]{x.size()}
  infer_meta :
582
    func : EinsumRawInferMeta
Z
zyfncg 已提交
583 584
    param : [x, equation]
  kernel :
585
    func : einsum_raw
Z
zyfncg 已提交
586 587
  backward : einsum_grad

588
- op : elementwise_pow
Z
zyfncg 已提交
589 590 591 592 593 594 595 596
  args : (Tensor x, Tensor y)
  output : Tensor(out)
  infer_meta :
    func : ElementwiseInferMeta
  kernel :
    func : elementwise_pow
  backward : elementwise_pow_grad

597
- op : embedding
Z
zyfncg 已提交
598 599
  args : (Tensor x, Tensor weight, int64_t padding_idx=-1, bool sparse=false)
  output : Tensor
600 601 602 603 604 605 606 607
  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 已提交
608 609
  backward : embedding_grad

610
- op : empty
Z
zyfncg 已提交
611
  args : (IntArray shape, DataType dtype=DataType::FLOAT32, Place place=CPUPlace())
612
  output: Tensor(out)
Z
zyfncg 已提交
613 614 615 616 617 618 619 620 621
  infer_meta :
    func : CreateInferMeta
    param : [shape, dtype]
  kernel :
    func : empty
    param : [shape, dtype]
    data_type : dtype
    backend : place

622
- op : empty_like
Z
zyfncg 已提交
623
  args : (Tensor x, DataType dtype = DataType::UNDEFINED, Place place = {})
624
  output: Tensor(out)
Z
zyfncg 已提交
625 626 627 628 629 630 631 632 633
  infer_meta :
    func : CreateLikeInferMeta
    param : [x, dtype]
  kernel :
    func : empty_like
    param : [x, dtype]
    data_type : dtype > x
    backend : place > x

634
- op : equal
635
  args : (Tensor x, Tensor y)
636
  output : Tensor(out)
Z
zyfncg 已提交
637 638 639 640 641
  infer_meta :
    func : CompareInferMeta
  kernel :
    func : equal

642
- op : expand
Z
zyfncg 已提交
643 644 645 646 647 648 649 650
  args : (Tensor x, IntArray shape)
  output : Tensor
  infer_meta :
    func : ExpandInferMeta
  kernel :
    func : expand
  backward : expand_grad

651
- op : expand_as
Z
zyfncg 已提交
652 653 654 655 656 657 658 659 660
  args : (Tensor x, Tensor y, int[] target_shape)
  output : Tensor
  infer_meta :
    func : ExpandAsInferMeta
  kernel :
    func : expand_as
  optional : y
  backward : expand_as_grad

661
- op : exponential_
662
  args : (Tensor x, float lam)
663 664 665 666 667 668 669 670 671
  output : Tensor(out)
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
  kernel :
    func : exponential
  inplace : (x -> out)
  backward : exponential__grad

672
- op : eye
673
  args : (Scalar num_rows, Scalar num_columns, DataType dtype=DataType::FLOAT32, Place place={})
Z
zyfncg 已提交
674 675 676 677 678 679 680 681 682 683
  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

684
- op : fill
685 686 687 688 689 690 691 692 693 694
  args : (Tensor x, Scalar value)
  output : Tensor(out)
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
  kernel :
    func : fill
  inplace : (x -> out)
  backward: fill_grad

695
- op : fill_diagonal
Z
zhiboniu 已提交
696 697 698 699 700 701 702 703 704
  args : (Tensor x, float value, int offset, bool wrap)
  output : Tensor(out)
  infer_meta :
    func : FillDiagonalInferMeta
  kernel :
    func : fill_diagonal
  inplace : (x -> out)
  backward : fill_diagonal_grad

705
- op : flatten
Z
zyfncg 已提交
706 707 708 709 710 711 712 713 714 715 716 717
  args : (Tensor x, int start_axis, int stop_axis)
  output : Tensor(out), Tensor(xshape)
  infer_meta :
    func : FlattenWithXShapeInferMeta
  kernel :
    func : flatten_with_xshape
    backend : x
  inplace : (x -> out)
  view : (x -> out)
  intermediate : xshape
  backward : flatten_grad

718
- op : floor_divide
Z
zyfncg 已提交
719 720 721 722 723 724 725
  args : (Tensor x, Tensor y)
  output : Tensor(out)
  infer_meta :
    func : ElementwiseInferMeta
  kernel :
    func : floor_divide

726
- op : fmax
727
  args : (Tensor x, Tensor y)
Z
zyfncg 已提交
728 729 730 731 732 733 734 735
  output : Tensor(out)
  infer_meta :
    param: [x, y]
    func : ElementwiseInferMeta
  kernel :
    func : fmax
  backward : fmax_grad

736
- op : fmin
737
  args : (Tensor x, Tensor y)
Z
zyfncg 已提交
738 739 740 741 742 743 744 745
  output : Tensor(out)
  infer_meta :
    param: [x, y]
    func : ElementwiseInferMeta
  kernel :
    func : fmin
  backward : fmin_grad

746
- op : frobenius_norm
Z
zyfncg 已提交
747 748 749 750 751 752 753 754
  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

755
- op : full
Z
zyfncg 已提交
756
  args : (IntArray shape, Scalar value, DataType dtype=DataType::FLOAT32, Place place=CPUPlace())
757
  output: Tensor(out)
Z
zyfncg 已提交
758 759 760 761 762 763 764 765 766
  infer_meta :
    func : CreateInferMeta
    param : [shape, dtype]
  kernel :
    func : full
    param : [shape, value, dtype]
    data_type : dtype
    backend : place

767
- op : full_
768 769 770 771 772 773 774 775 776 777 778 779
  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

780
- op : full_batch_size_like
Z
zyfncg 已提交
781
  args : (Tensor input, int[] shape, DataType dtype, Scalar value, int input_dim_idx, int output_dim_idx, Place place=CPUPlace())
782
  output: Tensor(out)
Z
zyfncg 已提交
783 784 785 786 787 788 789 790 791
  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

792
- op : full_like
Z
zyfncg 已提交
793
  args : (Tensor x, Scalar value, DataType dtype = DataType::UNDEFINED, Place place = {})
794
  output: Tensor(out)
Z
zyfncg 已提交
795 796 797 798 799 800 801 802 803 804 805
  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

806
- op : gather
Z
zyfncg 已提交
807 808 809 810 811 812 813 814 815
  args : (Tensor x, Tensor index, Scalar(int) axis=0)
  output : Tensor(out)
  infer_meta :
    func : GatherInferMeta
  kernel :
    func : gather
    data_type: x
  backward : gather_grad

816
- op : gaussian
Z
zyfncg 已提交
817
  args : (IntArray shape, float mean, float std, int seed, DataType dtype, Place place={})
818
  output: Tensor(out)
Z
zyfncg 已提交
819
  infer_meta :
820
    func : GaussianInferMeta
Z
zyfncg 已提交
821 822
    param : [shape, mean, std, seed, dtype]
  kernel :
823
    func : gaussian
Z
zyfncg 已提交
824 825 826 827
    param : [shape, mean, std, seed, dtype]
    data_type : dtype
    backend : place

828
- op : generate_proposals
Z
zhiboniu 已提交
829 830 831 832 833
  args : (Tensor scores, Tensor bbox_deltas, Tensor im_shape, Tensor anchors, Tensor variances, int pre_nms_top_n, int post_nms_top_n, float nms_thresh, float min_size, float eta, bool pixel_offset=true)
  output : Tensor(rpn_rois), Tensor(rpn_roi_probs), Tensor(rpn_rois_num)
  infer_meta :
    func : GenerateProposalsV2InferMeta
  kernel :
834
    func : generate_proposals
Z
zhiboniu 已提交
835

836
- op : greater_equal
837
  args : (Tensor x, Tensor y)
838
  output : Tensor(out)
Z
zyfncg 已提交
839 840 841 842 843
  infer_meta :
    func : CompareInferMeta
  kernel :
    func : greater_equal

844
- op : greater_than
845
  args : (Tensor x, Tensor y)
846
  output : Tensor(out)
Z
zyfncg 已提交
847 848 849 850 851
  infer_meta :
    func : CompareInferMeta
  kernel :
    func : greater_than

852
- op : group_norm
Z
zyfncg 已提交
853 854 855 856 857 858 859 860 861 862
  args : (Tensor x, Tensor scale, Tensor bias, float epsilon, int groups, str data_layout)
  output : Tensor(y), Tensor(mean), Tensor(variance)
  infer_meta :
    func : GroupNormInferMeta
  kernel :
    func : group_norm
  optional : scale, bias
  intermediate : mean, variance
  backward : group_norm_grad

863
- op : hardswish
864
  args : (Tensor x)
Z
zyfncg 已提交
865 866 867 868 869
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
  kernel :
Z
zyfncg 已提交
870
    func : hardswish
871
  backward : hardswish_grad
Z
zyfncg 已提交
872

873 874 875 876 877 878 879
- op : hardtanh
  args : (Tensor x, float t_min, float t_max)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
  kernel :
Z
zyfncg 已提交
880
    func : hardtanh
881 882
  backward : hardtanh_grad

883
- op : hsigmoid_loss
884
  args : (Tensor x, Tensor label, Tensor w, Tensor bias, Tensor path, Tensor code, int num_classes, bool remote_prefetch, bool is_sparse)
885 886 887 888 889 890 891 892 893
  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

894
- op : huber_loss
Z
zyfncg 已提交
895 896 897 898 899 900 901 902
  args : (Tensor input, Tensor label, float delta)
  output : Tensor(out), Tensor(residual)
  infer_meta :
    func : HuberLossInferMeta
  kernel :
    func : huber_loss
  backward : huber_loss_grad

903
- op : imag
Z
zyfncg 已提交
904 905 906 907 908 909 910 911
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : RealAndImagInferMeta
  kernel :
    func : imag
  backward : imag_grad

912
- op : increment
913
  args : (Tensor x, float value = 1.0)
914
  output : Tensor(out)
Z
zyfncg 已提交
915 916 917 918
  infer_meta :
    func : IncrementInferMeta
  kernel :
    func : increment
H
hong 已提交
919
  inplace : (x -> out)
Z
zyfncg 已提交
920

921
- op : index_add
L
Li Min 已提交
922 923 924 925 926 927 928 929 930 931
  args : (Tensor x, Tensor index,  Tensor add_value, int axis)
  output : Tensor(out)
  infer_meta :
    func : IndexAddInferMeta
  kernel :
    func : index_add
    data_type : x
  inplace : (x -> out)
  backward : index_add_grad

932
- op : instance_norm
Z
zyfncg 已提交
933 934 935 936 937 938 939 940 941 942 943
  args : (Tensor x, Tensor scale, Tensor bias, float epsilon)
  output : Tensor(y), Tensor(saved_mean), Tensor(saved_variance)
  infer_meta :
    func : InstanceNormInferMeta
  kernel :
    func : instance_norm
    data_type : x
  optional : scale, bias
  intermediate : saved_mean, saved_variance
  backward : instance_norm_grad

944
- op : kldiv_loss
Z
zyfncg 已提交
945 946 947 948 949 950 951 952 953
  args : (Tensor x, Tensor label, str reduction)
  output : Tensor(out)
  infer_meta :
    func : KLDivInferMeta
  kernel :
    func : kldiv_loss
    data_type : x
  backward : kldiv_loss_grad

954
- op : kron
Z
zyfncg 已提交
955 956 957 958 959 960 961 962
  args : (Tensor x, Tensor y)
  output : Tensor
  infer_meta :
    func : KronInferMeta
  kernel :
    func : kron
  backward : kron_grad

963
- op : lamb_
T
Thomas Young 已提交
964 965 966 967 968 969 970 971 972 973 974
  args : (Tensor param, Tensor grad, Tensor learning_rate, Tensor moment1, Tensor moment2, Tensor beta1_pow, Tensor beta2_pow, Tensor master_param, Tensor skip_update, float weight_decay, float beta1, float beta2, float epsilon, bool multi_precision)
  output : Tensor(param_out), Tensor(moment1_out), Tensor(moment2_out), Tensor(beta1_pow_out), Tensor(beta2_pow_out), Tensor(master_param_outs)
  infer_meta :
    func : LambInferMeta
  kernel :
    func : lamb {dense, dense, dense, dense, dense, dense, dense, dense, dense -> dense, dense, dense, dense, dense, dense},
           lamb_sr {dense, selected_rows, dense, dense, dense, dense, dense, dense, dense -> dense, dense, dense, dense, dense, dense}
    data_type : param
  optional : master_param, skip_update
  inplace : (param -> param_out), (moment1 -> moment1_out), (moment2 -> moment2_out), (beta1_pow -> beta1_pow_out), (beta2_pow -> beta2_pow_out), (master_param -> master_param_outs)

975
- op : layer_norm
976
  args : (Tensor x, Tensor scale, Tensor bias, float epsilon, int begin_norm_axis)
Z
zyfncg 已提交
977 978 979 980 981 982 983 984 985
  output : Tensor(out), Tensor(mean), Tensor(variance)
  infer_meta :
    func : LayerNormInferMeta
  kernel :
    func : layer_norm
    data_type : x
  backward : layer_norm_grad
  optional : scale, bias

986
- op : less_equal
987
  args : (Tensor x, Tensor y)
988
  output : Tensor(out)
Z
zyfncg 已提交
989 990 991 992 993
  infer_meta :
    func : CompareInferMeta
  kernel :
    func : less_equal

994
- op : less_than
995
  args : (Tensor x, Tensor y)
996
  output : Tensor(out)
Z
zyfncg 已提交
997 998 999 1000 1001
  infer_meta :
    func : CompareInferMeta
  kernel :
    func : less_than

1002
- op : linear_interp
1003 1004 1005 1006 1007 1008
  args : (Tensor x, Tensor out_size, Tensor[] size_tensor, Tensor scale_tensor, str data_layout, int out_d, int out_h, int out_w, float[] scale, str interp_method, bool align_corners, int align_mode)
  output : Tensor(output)
  infer_meta :
    func : InterpolateInferMeta
  optional: out_size, size_tensor, scale_tensor
  kernel :
1009
    func : linear_interp
1010
    data_type : x
1011
  backward : linear_interp_grad
1012

1013
- op : linspace
1014
  args : (Tensor start, Tensor stop, Tensor number, DataType dtype, Place place)
1015
  output : Tensor(out)
Z
zyfncg 已提交
1016 1017
  infer_meta :
    func : LinspaceInferMeta
1018
    param: [start, stop, number, dtype]
Z
zyfncg 已提交
1019 1020
  kernel :
    func : linspace
1021
    param: [start, stop, number, dtype]
Z
zyfncg 已提交
1022
    data_type : dtype
1023
    backend : place
Z
zyfncg 已提交
1024

1025
- op : log_softmax
Z
zyfncg 已提交
1026 1027 1028 1029 1030 1031 1032 1033
  args : (Tensor x,  int axis)
  output : Tensor(out)
  infer_meta :
    func : UnchangedInferMetaCheckAxis
  kernel :
    func : log_softmax
  backward : log_softmax_grad

1034
- op : logcumsumexp
Z
zyfncg 已提交
1035 1036 1037 1038 1039 1040 1041 1042
  args : (Tensor x, int axis, bool flatten, bool exclusive, bool reverse)
  output : Tensor(out)
  infer_meta :
    func : CumInferMeta
  kernel :
    func : logcumsumexp
  backward : logcumsumexp_grad

1043
- op : logical_and
Z
zyfncg 已提交
1044
  args : (Tensor x, Tensor y)
1045
  output : Tensor(out)
Z
zyfncg 已提交
1046 1047 1048 1049 1050
  infer_meta :
    func : ElementwiseInferMeta
  kernel :
    func : logical_and

1051
- op : logical_not
Z
zyfncg 已提交
1052
  args : (Tensor x)
1053
  output : Tensor(out)
Z
zyfncg 已提交
1054 1055 1056 1057 1058
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : logical_not

1059
- op : logical_or
Z
zyfncg 已提交
1060
  args : (Tensor x, Tensor y)
1061
  output : Tensor(out)
Z
zyfncg 已提交
1062 1063 1064 1065 1066
  infer_meta :
    func : ElementwiseInferMeta
  kernel :
    func : logical_or

1067
- op : logical_xor
Z
zyfncg 已提交
1068
  args : (Tensor x, Tensor y)
1069
  output : Tensor(out)
Z
zyfncg 已提交
1070 1071 1072 1073 1074
  infer_meta :
    func : ElementwiseInferMeta
  kernel :
    func : logical_xor

1075
- op : logsumexp
Z
zyfncg 已提交
1076 1077 1078 1079 1080 1081 1082 1083
  args : (Tensor x, int64_t[] axis,  bool keepdim,  bool reduce_all)
  output : Tensor(out)
  infer_meta :
    func : LogsumexpInferMeta
  kernel :
    func : logsumexp
  backward : logsumexp_grad

1084
- op : lstsq
1085 1086 1087 1088 1089 1090
  args : (Tensor x, Tensor y, Scalar rcond, str driver)
  output : Tensor(solution), Tensor(residuals), Tensor(rank), Tensor(singular_values)
  infer_meta :
    func : LstsqInferMeta
  kernel :
    func : lstsq
1091
    data_type : x
1092

1093
- op : lu
L
Lin Manhui 已提交
1094 1095 1096 1097 1098 1099 1100 1101
  args : (Tensor x, bool pivot)
  output : Tensor(out), Tensor(pivots), Tensor(infos)
  infer_meta :
    func : LUInferMeta
  kernel :
    func : lu
  backward : lu_grad

1102
- op : margin_cross_entropy
1103 1104 1105 1106 1107 1108 1109 1110 1111
  args : (Tensor logits, Tensor label, bool return_softmax, int ring_id, int rank, int nranks, float margin1, float margin2, float margin3, float scale)
  output : Tensor(softmax), Tensor(loss)
  infer_meta :
    func : MarginCrossEntropyInferMeta
  kernel :
    func : margin_cross_entropy
    data_type : logits
  backward : margin_cross_entropy_grad

1112
- op : matmul
Z
zyfncg 已提交
1113 1114 1115 1116 1117 1118 1119 1120
  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

1121
- op : matrix_nms
Z
zhiboniu 已提交
1122 1123 1124 1125 1126 1127 1128
  args : (Tensor bboxes, Tensor scores, float score_threshold, int nms_top_k, int keep_top_k, float post_threshold=0., bool use_gaussian = false, float gaussian_sigma = 2.0, int background_label = 0, bool normalized = true)
  output : Tensor(out), Tensor(index), Tensor(roisnum)
  infer_meta :
    func : MatrixNMSInferMeta
  kernel :
    func : matrix_nms

1129
- op : matrix_rank
1130
  args : (Tensor x, float tol, bool hermitian=false, bool use_default_tol=true)
Z
zyfncg 已提交
1131 1132 1133
  output : Tensor(out)
  infer_meta :
    func : MatrixRankInferMeta
1134
    param : [x, hermitian, use_default_tol]
Z
zyfncg 已提交
1135 1136 1137
  kernel :
    func : matrix_rank

1138
- op : matrix_rank_tol
Z
zyfncg 已提交
1139 1140 1141 1142 1143 1144 1145
  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

1146
- op : max
1147
  args : (Tensor x, IntArray axis={}, bool keepdim=false)
Z
zyfncg 已提交
1148 1149
  output : Tensor(out)
  infer_meta :
1150
    func : ReduceIntArrayAxisInferMeta
Z
zyfncg 已提交
1151 1152 1153 1154
  kernel :
    func : max
  backward : max_grad

1155
- op : max_pool2d_with_index
Z
zyfncg 已提交
1156 1157 1158 1159 1160 1161 1162 1163
  args : (Tensor x, int[] kernel_size, int[] strides, int[] paddings, bool global_pooling, bool adaptive)
  output : Tensor(out), Tensor(mask)
  infer_meta :
    func : MaxPoolWithIndexInferMeta
  kernel :
    func : max_pool2d_with_index
  backward : max_pool2d_with_index_grad

1164
- op : max_pool3d_with_index
Z
zyfncg 已提交
1165 1166 1167 1168 1169 1170 1171 1172
  args : (Tensor x, int[] kernel_size, int[] strides, int[] paddings, bool global_pooling, bool adaptive)
  output : Tensor(out), Tensor(mask)
  infer_meta :
    func : MaxPoolWithIndexInferMeta
  kernel :
    func : max_pool3d_with_index
  backward : max_pool3d_with_index_grad

1173
- op : maximum
Z
zyfncg 已提交
1174 1175 1176 1177 1178 1179 1180 1181
  args : (Tensor x, Tensor y)
  output : Tensor(out)
  infer_meta :
    func : ElementwiseInferMeta
  kernel :
    func : maximum
  backward : maximum_grad

1182
- op : mean
1183
  args : (Tensor x, IntArray axis={}, bool keepdim=false)
Z
zyfncg 已提交
1184 1185
  output : Tensor(out)
  infer_meta :
1186
    func : ReduceIntArrayAxisInferMeta
Z
zyfncg 已提交
1187 1188 1189 1190
  kernel :
    func : mean
  backward : mean_grad

1191
- op : mean_all
Z
zyfncg 已提交
1192 1193 1194 1195 1196 1197 1198 1199
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : MeanAllInferMeta
  kernel :
    func : mean_all
  backward : mean_all_grad

1200 1201 1202 1203 1204 1205 1206 1207
- op : merge_selected_rows
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : merge_selected_rows {selected_rows -> selected_rows}

1208
- op : merged_adam_
1209 1210 1211 1212 1213 1214 1215 1216 1217 1218
  args : (Tensor[] param, Tensor[] grad, Tensor[] learning_rate, Tensor[] moment1, Tensor[] moment2, Tensor[] beta1_pow, Tensor[] beta2_pow, Tensor[] master_param, Scalar beta1, Scalar beta2, Scalar epsilon, bool multi_precision, bool use_global_beta_pow)
  output : Tensor[](param_out){param.size()}, Tensor[](moment1_out){param.size()}, Tensor[](moment2_out){param.size()}, Tensor[](beta1_pow_out){param.size()}, Tensor[](beta2_pow_out){param.size()}, Tensor[](master_param_out){param.size()}
  infer_meta :
    func : MergedAdamInferMeta
  optional: master_param
  kernel :
    func : merged_adam
    data_type : param
  inplace : (param -> param_out), (moment1 -> moment1_out), (moment2 -> moment2_out), (beta1_pow -> beta1_pow_out), (beta2_pow -> beta2_pow_out), (master_param -> master_param_out)

1219
- op : merged_momentum_
1220 1221 1222 1223 1224 1225 1226 1227 1228 1229
  args : (Tensor[] param, Tensor[] grad, Tensor[] velocity, Tensor[] learning_rate, Tensor[] master_param, float mu, bool use_nesterov = false, str[] regularization_method = {}, float[] regularization_coeff = {}, bool multi_precision = false, float rescale_grad = 1.0f)
  output : Tensor[](param_out){param.size()}, Tensor[](velocity_out){param.size()}, Tensor[](master_param_out){param.size()}
  infer_meta :
    func : MergedMomentumInferMeta
  optional: master_param
  kernel :
    func : merged_momentum
    data_type : param
  inplace : (param -> param_out), (velocity -> velocity_out), (master_param -> master_param_out)

1230
- op : meshgrid
Z
zyfncg 已提交
1231 1232 1233 1234 1235 1236 1237 1238
  args : (Tensor[] inputs)
  output : Tensor[]{inputs.size()}
  infer_meta :
    func : MeshgridInferMeta
  kernel :
    func : meshgrid
  backward : meshgrid_grad

1239
- op : min
1240
  args : (Tensor x, IntArray axis={}, bool keepdim=false)
Z
zyfncg 已提交
1241 1242
  output : Tensor(out)
  infer_meta :
1243
    func : ReduceIntArrayAxisInferMeta
Z
zyfncg 已提交
1244 1245 1246 1247
  kernel :
    func : min
  backward : min_grad

1248
- op : minimum
Z
zyfncg 已提交
1249 1250 1251 1252 1253 1254 1255 1256
  args : (Tensor x, Tensor y)
  output : Tensor(out)
  infer_meta :
    func : ElementwiseInferMeta
  kernel :
    func : minimum
  backward : minimum_grad

1257
- op : mish
Z
zyfncg 已提交
1258 1259 1260 1261 1262 1263 1264 1265 1266
  args : (Tensor x, float lambda)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
  kernel :
    func : mish
  backward : mish_grad

1267
- op : momentum_
Z
zyfncg 已提交
1268 1269
  args : (Tensor param, Tensor grad, Tensor velocity, Tensor learning_rate, Tensor master_param, float mu, bool use_nesterov = false, str regularization_method = "", float regularization_coeff = 0.0, bool multi_precision = false, float rescale_grad = 1.0f)
  output : Tensor(param_out), Tensor(velocity_out), Tensor(master_param_out)
1270 1271 1272 1273 1274
  infer_meta:
    func : MomentumInferMeta
  kernel :
    func : momentum
    data_type : param
Z
zyfncg 已提交
1275
  optional : master_param
1276
  inplace : (param -> param_out), (velocity -> velocity_out), (master_param -> master_param_out)
Z
zyfncg 已提交
1277

1278
- op : multi_dot
Z
zyfncg 已提交
1279 1280 1281 1282 1283 1284 1285 1286
  args : (Tensor[] x)
  output : Tensor
  infer_meta :
    func : MultiDotInferMeta
  kernel :
    func : multi_dot
  backward : multi_dot_grad

1287
- op : multiclass_nms3
1288 1289 1290 1291 1292 1293 1294 1295
  args : (Tensor bboxes, Tensor scores, Tensor rois_num, float score_threshold, int nms_top_k, int keep_top_k, float nms_threshold=0.3, bool normalized=true, float nms_eta=1.0, int background_label=0)
  output : Tensor(out), Tensor(index), Tensor(nms_rois_num)
  infer_meta :
    func : MultiClassNMSInferMeta
  kernel :
    func : multiclass_nms3
  optional : rois_num

1296
- op : multiplex
1297
  args : (Tensor[] inputs, Tensor index)
Z
zyfncg 已提交
1298 1299 1300 1301 1302
  output : Tensor
  infer_meta :
    func : MultiplexInferMeta
  kernel :
    func : multiplex
1303
    data_type : inputs
Z
zyfncg 已提交
1304 1305
  backward : multiplex_grad

1306
- op : multiply
Z
zyfncg 已提交
1307 1308 1309 1310 1311
  args : (Tensor x, Tensor y)
  output : Tensor
  infer_meta :
    func : ElementwiseInferMeta
  kernel :
1312 1313
    func : multiply {dense, dense -> dense},
           multiply_sr {selected_rows, dense -> selected_rows}
Z
zyfncg 已提交
1314 1315
  backward : multiply_grad

1316
- op : nearest_interp
1317 1318 1319 1320 1321 1322 1323 1324 1325 1326
  args : (Tensor x, Tensor out_size, Tensor[] size_tensor, Tensor scale_tensor, str data_layout, int out_d, int out_h, int out_w, float[] scale, str interp_method, bool align_corners, int align_mode)
  output : Tensor(output)
  infer_meta :
    func : InterpolateInferMeta
  optional: out_size, size_tensor, scale_tensor
  kernel :
    func : nearest_interp
    data_type : x
  backward : nearest_interp_grad

1327
- op : nms
1328 1329 1330 1331 1332 1333 1334 1335
  args : (Tensor x, float threshold)
  output : Tensor(out)
  infer_meta :
    func : NMSInferMeta
  kernel :
    func : nms
    data_type : x

1336 1337 1338 1339 1340 1341 1342 1343
- op : nonzero
  args : (Tensor condition)
  output : Tensor(out)
  infer_meta :
    func : NonZeroInferMeta
  kernel :
    func : nonzero

1344
- op : norm
Z
zyfncg 已提交
1345 1346 1347 1348 1349 1350 1351 1352
  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

1353
- op : not_equal
1354
  args : (Tensor x, Tensor y)
1355
  output : Tensor(out)
Z
zyfncg 已提交
1356 1357 1358 1359 1360
  infer_meta :
    func : CompareInferMeta
  kernel :
    func : not_equal

1361 1362 1363 1364
- op : numel
  args : (Tensor x)
  output : Tensor(size)
  infer_meta :
1365
    func : NumelInferMeta
1366
  kernel :
1367
    func : numel
1368 1369 1370
  data_transform:
    skip_transform : x

1371
- op : one_hot
Z
zyfncg 已提交
1372
  args : (Tensor x, Scalar(int) num_classes)
1373
  output : Tensor(out)
Z
zyfncg 已提交
1374 1375 1376 1377 1378
  infer_meta :
    func : OneHotInferMeta
  kernel :
    func : one_hot

1379
- op : ones
1380
  args : (IntArray shape, DataType dtype=DataType::FLOAT32, Place place=CPUPlace())
1381
  output : Tensor(out)
1382 1383
  invoke : full(shape, 1, dtype, place)

1384
- op : ones_like
Z
zyfncg 已提交
1385
  args : (Tensor x, DataType dtype=DataType::UNDEFINED, Place place={})
1386
  output : Tensor(out)
Z
zyfncg 已提交
1387 1388
  invoke : full_like(x, 1, dtype, place)

1389
- op : p_norm
Z
zyfncg 已提交
1390 1391 1392 1393 1394 1395 1396 1397
  args : (Tensor x,  float porder,  int axis,  float epsilon,  bool keepdim,  bool asvector=false)
  output : Tensor(out)
  infer_meta :
    func : PNormInferMeta
  kernel :
    func : p_norm
  backward : p_norm_grad

1398
- op : pad
1399
  args : (Tensor x, int[] paddings, Scalar pad_value)
Z
zyfncg 已提交
1400 1401 1402 1403 1404 1405 1406
  output : Tensor
  infer_meta :
    func : PadInferMeta
  kernel :
    func : pad
  backward : pad_grad

1407
- op : pad3d
Z
zyfncg 已提交
1408 1409 1410 1411 1412 1413 1414 1415
  args : (Tensor x, IntArray paddings, str mode,  float pad_value, str data_format)
  output : Tensor(out)
  infer_meta :
    func : Pad3dInferMeta
  kernel :
    func : pad3d
  backward : pad3d_grad

1416
- op : pool2d
1417
  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 已提交
1418 1419
  output : Tensor(out)
  infer_meta :
1420
    func : Pool2DInferMeta
1421
    param : [x, kernel_size, strides, paddings, ceil_mode, exclusive, data_format, pooling_type, global_pooling, adaptive, padding_algorithm]
Z
zyfncg 已提交
1422 1423
  kernel :
    func : pool2d
1424
    param : [x, kernel_size, strides, paddings, ceil_mode, exclusive, data_format, pooling_type, global_pooling, adaptive, padding_algorithm]
Z
zyfncg 已提交
1425 1426
  backward : pool2d_grad

1427
- op : pool3d
1428
  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 已提交
1429 1430 1431
  output : Tensor(out)
  infer_meta :
    func : PoolInferMeta
1432
    param : [x, kernel_size, strides, paddings, ceil_mode, exclusive, data_format, pooling_type, global_pooling, adaptive, padding_algorithm]
Z
zyfncg 已提交
1433 1434
  kernel :
    func : pool3d
1435
    param : [x, kernel_size, strides, paddings, ceil_mode, exclusive, data_format, pooling_type, global_pooling, adaptive, padding_algorithm]
Z
zyfncg 已提交
1436 1437
  backward : pool3d_grad

1438
- op : pow
1439
  args : (Tensor x, Scalar y)
Z
zyfncg 已提交
1440 1441 1442 1443 1444 1445
  output : Tensor(out)
  infer_meta :
    func : UnchangedInferMeta
    param: [x]
  kernel :
    func : pow
1446
    data_type : x
Z
zyfncg 已提交
1447 1448
  backward : pow_grad

1449
- op : prelu
Z
zyfncg 已提交
1450 1451 1452 1453 1454 1455 1456 1457
  args : (Tensor x, Tensor alpha, str data_format, str mode)
  output : Tensor(out)
  infer_meta :
    func : PReluInferMeta
  kernel :
    func : prelu
  backward : prelu_grad

1458
- op : prior_box
Z
zhiboniu 已提交
1459 1460 1461 1462 1463 1464 1465
  args : (Tensor input, Tensor image, float[] min_sizes, float[] aspect_ratios, float[] variances, float[] max_sizes = {}, bool flip=true, bool clip=true, float step_w=0.0, float step_h=0.0, float offset=0.5, bool min_max_aspect_ratios_order=false)
  output : Tensor(out), Tensor(var)
  infer_meta :
    func : PriorBoxInferMeta
  kernel :
    func : prior_box

1466 1467 1468 1469 1470 1471 1472 1473 1474
- op : prod
  args : (Tensor x, IntArray dims, bool keep_dim, bool reduce_all)
  output : Tensor
  infer_meta :
    func : ReduceIntArrayAxisInferMetaBase
  kernel :
    func : prod_raw
  backward : prod_grad

1475
- op : psroi_pool
Z
zyfncg 已提交
1476 1477 1478 1479 1480 1481 1482 1483 1484 1485
  args : (Tensor x, Tensor boxes, Tensor boxes_num, int pooled_height, int pooled_width, int output_channels, float spatial_scale)
  output : Tensor
  infer_meta :
    func : PsroiPoolInferMeta
  kernel :
    func : psroi_pool
    data_type : x
  optional : boxes_num
  backward : psroi_pool_grad

1486
- op : randint
Z
zyfncg 已提交
1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497
  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

1498
- op : randperm
Z
zyfncg 已提交
1499
  args : (int n, DataType dtype, Place place={})
1500
  output : Tensor(out)
Z
zyfncg 已提交
1501 1502 1503 1504 1505 1506 1507 1508 1509
  infer_meta :
    func : RandpermInferMeta
    param : [n, dtype]
  kernel :
    func : randperm
    param : [n, dtype]
    data_type : dtype
    backend : place

1510
- op : real
Z
zyfncg 已提交
1511 1512 1513 1514 1515 1516 1517 1518
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : RealAndImagInferMeta
  kernel :
    func : real
  backward : real_grad

1519
- op : relu6
1520
  args : (Tensor x)
1521 1522 1523 1524 1525 1526 1527 1528
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
  kernel :
    func : relu6
  backward : relu6_grad

1529
- op : remainder
C
Chen Weihang 已提交
1530 1531 1532 1533 1534 1535 1536 1537
  args : (Tensor x, Tensor y)
  output : Tensor
  infer_meta :
    func : ElementwiseInferMeta
  kernel :
    func : remainder
  inplace : (x -> out)

1538
- op : repeat_interleave
1539
  args : (Tensor x, int repeats, int axis)
S
seemingwang 已提交
1540 1541 1542 1543 1544 1545 1546
  output : Tensor(out)
  infer_meta :
    func : RepeatInterleaveInferMeta
  kernel :
    func : repeat_interleave
  backward: repeat_interleave_grad

1547
- op : repeat_interleave_with_tensor_index
1548
  args : (Tensor x, Tensor repeats, int axis)
S
seemingwang 已提交
1549 1550 1551 1552 1553 1554 1555 1556
  output : Tensor(out)
  infer_meta :
    func : RepeatInterleaveWithTensorIndexInferMeta
  kernel :
    func : repeat_interleave_with_tensor_index
    data_type : x
  backward: repeat_interleave_with_tensor_index_grad

1557
- op : reshape
Z
zyfncg 已提交
1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568
  args : (Tensor x, IntArray shape)
  output : Tensor(out), Tensor(xshape)
  infer_meta :
    func : ReshapeWithXShapeInferMeta
  kernel :
    func : reshape_with_xshape
  inplace : (x -> out)
  view: (x -> out)
  intermediate : xshape
  backward: reshape_grad

1569
- op : reverse
1570
  args : (Tensor x, IntArray axis)
W
wanghuancoder 已提交
1571 1572 1573 1574 1575 1576 1577
  output : Tensor
  infer_meta :
    func : ReverseInferMeta
  kernel :
    func : reverse
  backward : reverse_grad

1578
- op : rmsprop_
C
caozhou 已提交
1579 1580 1581 1582 1583 1584 1585
  args : (Tensor param, Tensor mean_square, Tensor grad, Tensor moment, Tensor learning_rate, Tensor mean_grad, float epsilon, float decay, float momentum, bool centered)
  output : Tensor(param_out), Tensor(moment_out), Tensor(mean_square_out), Tensor(mean_grad_out)
  infer_meta :
    func : RmspropInferMeta
  kernel :
    func : rmsprop {dense, dense, dense, dense, dense, dense -> dense, dense, dense, dense}
           rmsprop_dense_param_sparse_grad {dense, dense, selected_rows, dense, dense, dense -> dense, dense, dense, dense}
W
wanghuancoder 已提交
1586
  optional : mean_grad
C
caozhou 已提交
1587 1588
  inplace : (param -> param_out), (moment -> moment_out), (mean_square -> mean_square_out), (mean_grad -> mean_grad_out)

1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603
- 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)

1604
- op : roi_align
Z
zyfncg 已提交
1605 1606 1607 1608 1609 1610 1611 1612 1613 1614
  args : (Tensor x, Tensor boxes, Tensor boxes_num, int pooled_height, int pooled_width, float spatial_scale, int sampling_ratio, bool aligned)
  output : Tensor
  infer_meta :
    func : RoiAlignInferMeta
  kernel :
    func : roi_align
    data_type : x
  optional : boxes_num
  backward : roi_align_grad

1615
- op : roi_pool
Z
zyfncg 已提交
1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626
  args : (Tensor x, Tensor boxes, Tensor boxes_num, int pooled_height, int pooled_width, float spatial_scale)
  output : Tensor(out), Tensor(arg_max)
  infer_meta :
    func : RoiPoolInferMeta
  kernel :
    func : roi_pool
    data_type : x
  optional : boxes_num
  intermediate : arg_max
  backward : roi_pool_grad

1627
- op : scale
Z
zyfncg 已提交
1628
  args : (Tensor x, Scalar scale, float bias, bool bias_after_scale)
1629
  output : Tensor(out)
Z
zyfncg 已提交
1630 1631 1632 1633
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
  kernel :
1634 1635
    func : scale {dense -> dense},
           scale_sr {selected_rows -> selected_rows}
Z
zyfncg 已提交
1636 1637 1638
  inplace : (x -> out)
  backward : scale_grad

1639
- op : segment_pool
Z
zyfncg 已提交
1640 1641 1642 1643 1644 1645 1646 1647 1648
  args : (Tensor x, Tensor segment_ids, str pooltype)
  output : Tensor(out), Tensor(summed_ids)
  infer_meta :
    func : SegmentPoolInferMeta
  kernel :
    func : segment_pool
    data_type : x
  backward : segment_pool_grad

1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670
- op : send_u_recv
  args : (Tensor x, Tensor src_index, Tensor dst_index, str reduce_op = "SUM", IntArray out_size = {0})
  output : Tensor(out), Tensor(dst_count)
  infer_meta :
    func : SendURecvInferMeta
  kernel :
    func : send_u_recv
    data_type : x
  intermediate : dst_count
  backward : send_u_recv_grad

- op : send_ue_recv
  args : (Tensor x, Tensor y, Tensor src_index, Tensor dst_index, str message_op, str reduce_op, IntArray out_size)
  output : Tensor(out), Tensor(dst_count)
  infer_meta :
    func : SendUERecvInferMeta
  kernel :
    func : send_ue_recv
    data_type : x
  intermediate : dst_count
  backward : send_ue_recv_grad

1671
- op : sgd_
Z
zyfncg 已提交
1672 1673
  args : (Tensor param, Tensor learning_rate, Tensor grad, Tensor master_param, bool multi_precision)
  output : Tensor(param_out), Tensor(master_param_out)
1674 1675 1676 1677 1678 1679 1680 1681 1682
  infer_meta :
    func : SgdInferMeta
  kernel :
    func : sgd {dense, dense, dense, dense -> dense, dense},
           sgd_dense_param_sparse_grad {dense, dense, selected_rows, dense -> dense, dense},
           sgd_sparse_param_sparse_grad {selected_rows, dense, selected_rows, selected_rows -> selected_rows, selected_rows}
    data_type : param
  data_transform :
    support_trans_dtype : learning_rate
Z
zyfncg 已提交
1683
  optional : master_param
1684
  inplace : (param -> param_out), (master_param -> master_param_out)
Z
zyfncg 已提交
1685

1686
- op : shape
Z
zyfncg 已提交
1687
  args : (Tensor input)
1688
  output : Tensor(out)
Z
zyfncg 已提交
1689 1690 1691
  infer_meta :
    func : ShapeInferMeta
  kernel :
1692 1693
    func : shape {dense -> dense},
           shape_sr {selected_rows -> selected_rows}
Z
zyfncg 已提交
1694 1695 1696
  data_transform:
    skip_transform : input

1697
- op : sigmoid_cross_entropy_with_logits
Z
zyfncg 已提交
1698 1699 1700 1701 1702 1703 1704 1705
  args : (Tensor x, Tensor label, bool normalize, int ignore_index)
  output : Tensor
  infer_meta :
    func : SigmoidCrossEntropyWithLogitsInferMeta
  kernel :
    func : sigmoid_cross_entropy_with_logits
  backward : sigmoid_cross_entropy_with_logits_grad

1706
- op : sign
Z
zyfncg 已提交
1707
  args : (Tensor x)
1708
  output : Tensor(out)
Z
zyfncg 已提交
1709 1710 1711 1712
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : sign
1713
  backward : sign_grad
Z
zyfncg 已提交
1714

1715
- op : slice
Z
zyfncg 已提交
1716 1717 1718 1719 1720 1721 1722 1723
  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

1724
- op : slogdet
1725 1726 1727 1728 1729
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
1730
    func : slogdet
1731 1732
  backward : slogdet_grad

1733
- op : softmax
Z
zyfncg 已提交
1734
  args : (Tensor x, int axis)
1735
  output : Tensor(out)
Z
zyfncg 已提交
1736 1737 1738 1739
  infer_meta :
    func : SoftmaxInferMeta
  kernel :
    func : softmax
1740
  inplace : (x -> out)
Z
zyfncg 已提交
1741 1742
  backward : softmax_grad

1743
- op : spectral_norm
1744 1745 1746 1747 1748
  args : (Tensor weight, Tensor u, Tensor v, int dim, int power_iters, float eps)
  output : Tensor
  infer_meta :
    func : SpectralNormInferMeta
  kernel :
1749
    func : spectral_norm
1750
    data_type : weight
1751
  backward : spectral_norm_grad
1752

1753
- op : split
C
Charles-hit 已提交
1754 1755 1756 1757 1758 1759
  args : (Tensor x, IntArray sections, Scalar(int) axis)
  output : Tensor[]{sections.size()}
  infer_meta :
    func : SplitInferMeta
  kernel :
    func : split
Z
zyfncg 已提交
1760 1761
  backward : split_grad

1762
- op : split_with_num
C
Charles-hit 已提交
1763 1764 1765 1766 1767 1768 1769 1770
  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

1771
- op : squared_l2_norm
1772 1773 1774 1775 1776 1777 1778 1779
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : SquaredL2NormInferMeta
  kernel :
    func : squared_l2_norm
  backward : squared_l2_norm_grad

1780
- op : stack
Z
zyfncg 已提交
1781 1782 1783 1784 1785 1786 1787 1788
  args : (Tensor[] x, int axis)
  output : Tensor
  infer_meta :
    func : StackInferMeta
  kernel :
    func : stack
  backward : stack_grad

1789
- op : strided_slice
Z
zyfncg 已提交
1790 1791 1792 1793 1794 1795 1796 1797
  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

1798
- op : subtract
Z
zyfncg 已提交
1799
  args : (Tensor x, Tensor y)
1800
  output : Tensor(out)
Z
zyfncg 已提交
1801 1802 1803 1804
  infer_meta :
    func : ElementwiseInferMeta
  kernel :
    func : subtract
1805
  inplace : (x -> out)
Z
zyfncg 已提交
1806 1807
  backward : subtract_grad

1808
- op : sum
1809
  args : (Tensor x, IntArray axis={}, DataType dtype=DataType::UNDEFINED, bool keepdim=false)
Z
zyfncg 已提交
1810 1811 1812 1813 1814 1815 1816 1817
  output : Tensor(out)
  infer_meta :
    func : SumInferMeta
  kernel :
    func : sum
    data_type : x
  backward : sum_grad

1818
- op : swish
1819
  args : (Tensor x)
Z
zyfncg 已提交
1820 1821 1822 1823 1824 1825 1826 1827
  output : Tensor(out)
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
  kernel :
    func : swish
  backward : swish_grad

1828
- op : sync_batch_norm_
1829
  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)
1830 1831 1832 1833 1834
  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
1835
    data_type : x
1836
  backward : sync_batch_norm_grad
1837
  inplace : (mean -> mean_out), (variance -> variance_out)
1838

1839
- op : temporal_shift
C
ccrrong 已提交
1840 1841 1842 1843 1844 1845 1846 1847
  args : (Tensor x, int seg_num, float shift_ratio, str data_format_str)
  output : Tensor
  infer_meta :
    func : TemporalShiftInferMeta
  kernel :
    func : temporal_shift
  backward : temporal_shift_grad

1848
- op : tile
Z
zyfncg 已提交
1849 1850 1851 1852 1853 1854 1855 1856
  args : (Tensor x, IntArray repeat_times)
  output : Tensor
  infer_meta :
    func : TileInferMeta
  kernel :
    func : tile
  backward : tile_grad

1857
- op : transpose
1858
  args : (Tensor x, int[] perm)
Z
zyfncg 已提交
1859 1860 1861 1862 1863 1864 1865
  output : Tensor
  infer_meta :
    func : TransposeInferMeta
  kernel :
    func : transpose
  backward : transpose_grad

1866
- op : triangular_solve
Z
zyfncg 已提交
1867 1868 1869 1870 1871 1872
  args : (Tensor x, Tensor y, bool upper, bool transpose, bool unitriangular)
  output : Tensor
  infer_meta :
    func : TriangularSolveInferMeta
  kernel :
    func : triangular_solve
1873
    data_type : x
Z
zyfncg 已提交
1874 1875
  backward : triangular_solve_grad

1876
- op : tril
1877
  args : (Tensor x,  int diagonal)
1878 1879 1880 1881 1882 1883 1884
  output : Tensor(out)
  infer_meta :
    func : TrilInferMeta
  kernel :
    func : tril
  backward : tril_grad

1885
- op : tril_indices
Z
zyfncg 已提交
1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896
  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

1897
- op : trilinear_interp
1898 1899 1900 1901 1902 1903 1904 1905 1906 1907
  args : (Tensor x, Tensor out_size, Tensor[] size_tensor, Tensor scale_tensor, str data_layout, int out_d, int out_h, int out_w, float[] scale, str interp_method, bool align_corners, int align_mode)
  output : Tensor(output)
  infer_meta :
    func : InterpolateInferMeta
  optional: out_size, size_tensor, scale_tensor
  kernel :
    func : trilinear_interp
    data_type : x
  backward : trilinear_interp_grad

1908 1909 1910 1911 1912 1913 1914 1915 1916
- op : triu
  args : (Tensor x,  int diagonal)
  output : Tensor(out)
  infer_meta :
    func : TriuInferMeta
  kernel :
    func : triu
  backward : triu_grad

1917
- op : triu_indices
1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928
  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 已提交
1929
# python API: paddle.nn.initializer.TruncatedNormal
1930
- op : truncated_gaussian_random
Z
zyfncg 已提交
1931
  args : (int[] shape, float mean, float std, int seed, DataType dtype=DataType::FLOAT32, Place place={})
1932
  output : Tensor(out)
Z
zyfncg 已提交
1933 1934 1935 1936 1937 1938 1939 1940 1941
  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

1942
- op : unbind
Z
zyfncg 已提交
1943 1944 1945 1946 1947 1948 1949 1950
  args : (Tensor input, int axis)
  output : Tensor[] {axis<0 ? input.dims()[input.dims().size()+axis]:input.dims()[axis]}
  infer_meta :
    func : UnbindInferMeta
  kernel :
    func : unbind
  backward : unbind_grad

1951
- op : uniform
1952
  args : (IntArray shape,  DataType dtype,  Scalar min,  Scalar max,  int seed, Place place={})
Z
zyfncg 已提交
1953 1954 1955
  output : Tensor(out)
  infer_meta :
    func : UniformRandomInferMeta
1956
    param: [shape, dtype]
Z
zyfncg 已提交
1957
  kernel :
1958
    func : uniform
Z
zyfncg 已提交
1959 1960 1961 1962
    param: [shape, dtype, min, max, seed]
    data_type : dtype
    backend : place

1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973
- op : uniform_inplace
  args: (Tensor x, float min, float max, int seed, int diag_num, int diag_step, float diag_val)
  output: Tensor(out)
  infer_meta:
    func: UniformRandomInplaceInferMeta
  kernel:
    func: uniform_inplace
    data_type: x
  inplace: (x -> out)
  backward: uniform_inplace_grad

Z
zyfncg 已提交
1974
# The `axis` argument of Python API paddle.unique is not vector
1975
- op : unique
Z
zyfncg 已提交
1976 1977 1978 1979 1980 1981 1982 1983
  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

1984
- op : unique_consecutive
1985 1986 1987 1988 1989 1990 1991 1992
  args : (Tensor x, bool return_inverse, bool return_counts, int[] axis, int dtype)
  output : Tensor(out), Tensor(index), Tensor(counts)
  infer_meta :
      func : UniqueConsecutiveInferMeta
  kernel :
    func : unique_consecutive
    data_type : x

1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012
- 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

- op : unpool3d
  args: (Tensor x, Tensor indices, int[] ksize, int[] strides, int[] padding, int[] output_size, str data_format)
  output: Tensor(out)
  infer_meta:
    func: Unpool3dInferMeta
  kernel:
    func: unpool3d
    data_type: x
  backward: unpool3d_grad

2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023
- op : update_loss_scaling_
  args : (Tensor[] x, Tensor found_infinite, Tensor prev_loss_scaling, Tensor in_good_steps, Tensor in_bad_steps, int incr_every_n_steps, int decr_every_n_nan_or_inf, float incr_ratio, float decr_ratio, Scalar stop_update)
  output : Tensor[](out){x.size()}, Tensor(loss_scaling), Tensor(out_good_steps), Tensor(out_bad_steps)
  infer_meta :
    func : UpdateLossScalingInferMeta
    param : [x, found_infinite, prev_loss_scaling, in_good_steps, in_bad_steps]
  kernel :
    func : update_loss_scaling
    data_type : x
  inplace : (x -> out), (prev_loss_scaling -> loss_scaling), (in_good_steps -> out_good_steps), (in_bad_steps -> out_bad_steps)

2024
- op : warpctc
Z
Zhong Hui 已提交
2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035
  args : (Tensor logits, Tensor label, Tensor logits_length, Tensor labels_length, int blank, bool norm_by_times)
  output :  Tensor(loss), Tensor(warpctcgrad)
  infer_meta :
    func : WarpctcInferMeta
  kernel :
    func : warpctc
    data_type: logits
  optional: logits_length, labels_length
  intermediate: warpctcgrad
  backward : warpctc_grad

2036
- op : yolo_box
Z
zyfncg 已提交
2037 2038 2039 2040 2041 2042 2043 2044
  args : (Tensor x, Tensor img_size, int[] anchors, int class_num, float conf_thresh, int downsample_ratio, bool clip_bbox, float scale_x_y=1.0, bool iou_aware=false, float iou_aware_factor=0.5)
  output : Tensor(boxes), Tensor(scores)
  infer_meta :
    func : YoloBoxInferMeta
  kernel :
    func : yolo_box
    data_type : x

2045
- op : yolo_loss
2046 2047 2048
  args : (Tensor x, Tensor gt_box, Tensor gt_label, Tensor gt_score, int[] anchors, int[] anchor_mask, int class_num, float ignore_thresh, int downsample_ratio, bool use_label_smooth=true, float scale_x_y=1.0)
  output : Tensor(loss), Tensor(objectness_mask), Tensor(gt_match_mask)
  infer_meta :
2049
    func : YoloLossInferMeta
2050
  kernel :
2051
    func : yolo_loss
2052 2053
    data_type : x
  optional : gt_score
2054
  backward : yolo_loss_grad
2055

2056
- op : zeros
2057
  args : (IntArray shape, DataType dtype=DataType::FLOAT32, Place place=CPUPlace())
2058
  output : Tensor(out)
2059 2060
  invoke : full(shape, 0, dtype, place)

2061
- op : zeros_like
Z
zyfncg 已提交
2062
  args : (Tensor x, DataType dtype=DataType::UNDEFINED, Place place = {})
2063
  output : Tensor(out)
Z
zyfncg 已提交
2064
  invoke : full_like(x, 0, dtype, place)