api.yaml 30.0 KB
Newer Older
1
- api : add
Z
zyfncg 已提交
2
  args : (Tensor x, Tensor y)
3
  output : Tensor
4
  infer_meta :
5 6
    func : ElementwiseInferMeta
  kernel :
Y
YuanRisheng 已提交
7
    func : add
H
hong 已提交
8
  # backward : add_grad
9 10

- api : cast
Z
zyfncg 已提交
11
  args : (Tensor x, DataType out_dtype)
12
  output : Tensor
13
  infer_meta :
14 15 16
    func : CastInferMeta
  kernel :
    func : cast
17
    param : [x, out_dtype]
18 19
    data_type : x

20 21

- api : concat
Z
zyfncg 已提交
22
  args : (Tensor[] x, Scalar axis)
23 24 25
  output : Tensor
  infer_meta :
    func : ConcatInferMeta
26
    param : [x, axis]
27 28 29
  kernel :
    func : concat

30
- api : conj
Z
zyfncg 已提交
31
  args : (Tensor x)
32 33 34 35 36 37
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : conj

38
- api : copy_to
39
  args : (Tensor x, Place place, bool blocking)
40
  output : Tensor
41
  invoke : copy_to_impl(x, place, blocking)
42

43
- api : divide
Z
zyfncg 已提交
44
  args : (Tensor x, Tensor y)
45
  output : Tensor
46
  infer_meta :
47 48
    func : ElementwiseInferMeta
  kernel :
Y
YuanRisheng 已提交
49
    func : divide
50 51

- api : dot
Z
zyfncg 已提交
52
  args : (Tensor x, Tensor y)
53
  output : Tensor
54
  infer_meta :
55
    func : DotInferMeta
56
  kernel :
57 58
    func : dot

59
- api : empty
60
  args : (ScalarArray shape, DataType dtype=DataType::FLOAT32, Place place=CPUPlace())
61
  output: Tensor
62
  infer_meta :
63
    func : CreateInferMeta
64
    param : [shape, dtype]
65
  kernel :
66
    func : empty
67
    param : [shape, dtype]
68 69
    data_type : dtype
    backend : place
70

71
- api : empty_like
72
  args : (Tensor x, DataType dtype = DataType::UNDEFINED, Place place = {})
73
  output: Tensor
74
  infer_meta :
75
    func : CreateLikeInferMeta
76
    param : [x, dtype]
77
  kernel :
78
    func : empty_like
79
    param : [x, dtype]
80 81 82
    data_type : dtype > x
    backend : place > x

83
- api : flatten
Z
zyfncg 已提交
84
  args : (Tensor x, int start_axis, int stop_axis)
85
  output : Tensor
86
  infer_meta :
87
    func : FlattenInferMeta
88
  kernel :
Y
YuanRisheng 已提交
89
    func : flatten
90 91

- api : full
92
  args : (ScalarArray shape, Scalar value, DataType dtype=DataType::FLOAT32, Place place=CPUPlace())
93
  output: Tensor
94
  infer_meta :
Z
zyfncg 已提交
95
    func : CreateInferMeta
96
    param : [shape, dtype]
97
  kernel :
Y
YuanRisheng 已提交
98
    func : full
99
    param : [shape, value, dtype]
100 101
    data_type : dtype
    backend : place
102

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

- api : matmul
Z
zyfncg 已提交
116
  args : (Tensor x, Tensor y, bool transpose_x = false, bool transpose_y = false)
117
  output : Tensor
118
  infer_meta :
119
    func : MatmulInferMeta
120
  kernel :
121
    func : matmul
122
  backward : matmul_grad
123 124

- api : mean
125
  args : (Tensor x, int64[] axis={}, bool keep_dim=false)
126
  output : Tensor
127
  infer_meta :
128
    func : ReduceInferMeta
129
  kernel :
Y
YuanRisheng 已提交
130
    func : mean
131 132

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

- api : ones_like
141
  args : (Tensor x, DataType dtype=DataType::UNDEFINED, Place place={})
142
  output : Tensor
143
  invoke : full_like(x, 1, dtype, place)
144

F
From00 已提交
145 146 147 148 149 150 151 152
- api : pool2d
  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)
  output : Tensor(out)
  infer_meta :
    func : PoolInferMeta
  kernel:
    func : pool2d

153
- api : reshape
Z
zyfncg 已提交
154
  args : (Tensor x, ScalarArray shape)
155
  output : Tensor(out)
156
  infer_meta :
157
    func : ReshapeInferMeta
158
  kernel :
Y
YuanRisheng 已提交
159
    func : reshape
160
  inplace : (x -> out)
161

Y
YuanRisheng 已提交
162 163 164 165 166 167 168 169
- api : relu
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : relu
  inplace : (x -> out)
P
phlrain 已提交
170
  backward : relu_grad
Y
YuanRisheng 已提交
171

172
- api : scale
Z
zyfncg 已提交
173
  args : (Tensor x, Scalar scale, float bias, bool bias_after_scale)
174
  output : Tensor
175
  infer_meta :
176 177 178
    func : UnchangedInferMeta
    param : [x]
  kernel :
179
    func : scale, scale_sr
180
  inplace : (x -> out)
181

182
- api : sign
Z
zyfncg 已提交
183
  args : (Tensor x)
184 185 186 187 188 189
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : sign

190 191 192 193 194 195
- api : softmax
  args : (Tensor x, int axis)
  output : Tensor
  infer_meta :
    func : SoftmaxInferMeta
  kernel :
P
phlrain 已提交
196 197
    func : softmax
  backward : softmax_grad
198

199 200 201 202 203
- api : split
  args : (Tensor x, ScalarArray num_or_sections, Scalar axis)
  output : Tensor[]
  invoke : split_impl(x, num_or_sections, axis)

204
- api : subtract
Z
zyfncg 已提交
205
  args : (Tensor x, Tensor y)
206
  output : Tensor
207
  infer_meta :
208 209
    func : ElementwiseInferMeta
  kernel :
Y
YuanRisheng 已提交
210
    func : subtract
211 212

- api : sum
213
  args : (Tensor x, int64[] axis={}, DataType dtype=DataType::UNDEFINED, bool keep_dim=false)
214
  output : Tensor
215
  infer_meta :
216
    func : SumInferMeta
217
  kernel :
Y
YuanRisheng 已提交
218
    func : sum
219
    data_type : x
220 221

- api : zeros_like
222
  args : (Tensor x, DataType dtype=DataType::UNDEFINED, Place place = {})
223
  output : Tensor
224
  invoke : full_like(x, 0, dtype, place)
H
hong 已提交
225

H
hong 已提交
226 227 228 229 230 231 232 233

- api : one_hot
  args : (Tensor x, Scalar num_classes)
  output : Tensor
  infer_meta :
    func : OneHotInferMeta
  kernel :
    func : one_hot
234

H
hong 已提交
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
- api : digamma
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : digamma
  backward : digamma_grad

- api : abs
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : abs
  backward : abs_grad

- api : trunc
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : trunc
  backward : trunc_grad

# - api : norm
#   args : (Tensor x, int axis, float epsilon, bool is_test)
#   output : Tensor(out), Tensor(norm)
#   infer_meta :
#     func : NormInferMeta
#   kernel :
#     func : norm
#   intermediate : norm
#   backward : norm_grad

- api : diagonal
  args : (Tensor x, int offset, int axis1, int axis2)
  output : Tensor
  infer_meta :
    func : DiagonalInferMeta
  kernel :
    func : diagonal
  backward : diagonal_grad
P
phlrain 已提交
280

P
phlrain 已提交
281 282 283 284 285 286 287 288 289
# # maxout
# - api : maxout
#   args : (Tensor x, int groups, int axis)
#   output : Tensor
#   infer_meta :
#     func : MaxoutInferMeta
#   kernel :
#     func : maxout
#   backward : maxout_grad
P
phlrain 已提交
290

P
update  
phlrain 已提交
291 292 293 294 295 296 297 298 299
# put_along_axis
- api : put_along_axis
  args : (Tensor x, Tensor index, Tensor value, int axis, str reduce)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
    param : [index]
  kernel :
    func : put_along_axis
P
fix bug  
phlrain 已提交
300
    data_type : x
P
update  
phlrain 已提交
301
  backward : put_along_axis_grad
P
phlrain 已提交
302 303


P
update  
phlrain 已提交
304 305 306 307 308 309 310 311 312
# take_along_axis
- api : take_along_axis
  args : (Tensor x, Tensor index, int axis)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
    param : [index]
  kernel :
    func : take_along_axis
P
fix bug  
phlrain 已提交
313
    data_type : x
P
update  
phlrain 已提交
314
  backward : take_along_axis_grad
P
phlrain 已提交
315

P
update  
phlrain 已提交
316 317 318 319 320 321 322 323 324 325
# matrix_power
- api : matrix_power
  args : (Tensor x, int n)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
  kernel :
    func : matrix_power
  backward : matrix_power_grad
P
phlrain 已提交
326

P
update  
phlrain 已提交
327 328 329 330 331 332 333 334 335
# eigh
- api : eigh
  args : (Tensor x, str uplo)
  output : Tensor(out_w), Tensor(out_v)
  infer_meta :
    func : EighInferMeta
  kernel :
    func : eigh
  backward : eigh_grad
P
phlrain 已提交
336

P
update  
phlrain 已提交
337 338 339 340 341 342 343 344 345
# segment_pool
- api : segment_pool
  args : (Tensor x, Tensor segment_ids, str pooltype)
  output : Tensor(out), Tensor(summed_ids)
  infer_meta :
    func : SegmentPoolInferMeta
  kernel :
    func : segment_pool
  backward : segment_pool_grad
P
phlrain 已提交
346
  
P
phlrain 已提交
347

P
phlrain 已提交
348 349 350 351 352 353 354 355 356
# # accuracy
# - api : accuracy
#   args : (Tensor x, Tensor indices, Tensor label)
#   output : Tensor(accuracy), Tensor(correct), Tensor(total)
#   infer_meta :
#     func : AccuracyInferMeta
#   kernel :
#     func : accuracy
#     dtype : x
P
phlrain 已提交
357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470

# sin
- api : sin
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : sin
  backward : sin_grad

# cos
- api : cos
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : cos
  backward : cos_grad


# tanh
- api : tanh
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : tanh
  backward : tanh_grad

# acos
- api : acos
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : acos
  backward : acos_grad


# asin
- api : asin
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : asin
  backward : asin_grad


# atan
- api : atan
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : atan
  backward : atan_grad

# sinh
- api : sinh
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : sinh
  backward : sinh_grad

# cosh
- api : cosh
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : cosh
  backward : cosh_grad

# asinh
- api : asinh
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : asinh
  backward : asinh_grad

# acosh
- api : acosh
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : acosh
  backward : acosh_grad

# atanh
- api : atanh
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : atanh
  backward : atanh_grad

P
phlrain 已提交
471 472 473 474 475 476 477 478 479
# sigmoid
- api : sigmoid
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : sigmoid
  backward : sigmoid_grad
P
phlrain 已提交
480

P
phlrain 已提交
481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600
# tan
- api : tan
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : tan
  backward : tan_grad

# tanh_shrink
- api : tanh_shrink
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : tanh_shrink
  backward : tanh_shrink_grad

# silu
- api : silu
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : silu
  backward : silu_grad

# logsigmoid
- api : logsigmoid
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : logsigmoid
  backward : logsigmoid_grad

# leaky_relu
- api : leaky_relu
  args : (Tensor x, float alpha)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
  kernel :
    func : leaky_relu
  backward : leaky_relu_grad

# thresholded_relu
- api : thresholded_relu
  args : (Tensor x, float threshold)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
  kernel :
    func : thresholded_relu
  backward : thresholded_relu_grad


# soft_shrink
- api : soft_shrink
  args : (Tensor x, float lambda)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
  kernel :
    func : soft_shrink
  backward : soft_shrink_grad

# hard_shrink
- api : hard_shrink
  args : (Tensor x, float threshold)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
  kernel :
    func : hard_shrink
  backward : hard_shrink_grad


# elu
- api : elu
  args : (Tensor x, float alpha)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
  kernel :
    func : elu
  backward : elu_grad

# brelu
- api : brelu
  args : (Tensor x, float t_min, float t_max)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
  kernel :
    func : brelu
  backward : brelu_grad

# hard_sigmoid
- api : hard_sigmoid
  args : (Tensor x, float slope, float offset)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
  kernel :
    func : hard_sigmoid
  backward : hard_sigmoid_grad


P
fix bug  
phlrain 已提交
601
# arg_min  # int64 dtype
P
phlrain 已提交
602
- api : argmin
P
update  
phlrain 已提交
603
  args : (Tensor x, int64 axis, bool keepdims, bool flatten, int dtype)
P
phlrain 已提交
604 605
  output : Tensor
  infer_meta :
P
phlrain 已提交
606
    func : ArgMinMaxInferMeta
P
phlrain 已提交
607
  kernel :
P
update  
phlrain 已提交
608
    func : arg_min
P
phlrain 已提交
609

P
fix bug  
phlrain 已提交
610
# arg_max  # int64 dtype
P
phlrain 已提交
611
- api : argmax
P
update  
phlrain 已提交
612
  args : (Tensor x, int64 axis, bool keepdims, bool flatten, int dtype)
P
phlrain 已提交
613 614
  output : Tensor
  infer_meta :
P
phlrain 已提交
615
    func : ArgMinMaxInferMeta
P
phlrain 已提交
616
  kernel :
P
update  
phlrain 已提交
617
    func : arg_max
P
phlrain 已提交
618

P
update  
phlrain 已提交
619
# argsort
P
phlrain 已提交
620 621
- api : argsort
  args : (Tensor x, int axis, bool descending)
P
add  
phlrain 已提交
622
  output : Tensor(out), Tensor(indices)
P
phlrain 已提交
623
  infer_meta :
P
update  
phlrain 已提交
624
    func : ArgsortInferMeta 
P
phlrain 已提交
625 626
  kernel :
    func : argsort
P
update  
phlrain 已提交
627
  backward : argsort_grad
P
phlrain 已提交
628

P
update  
phlrain 已提交
629 630 631 632 633 634 635 636
# auc
- api : auc
  args : (Tensor x, Tensor label, Tensor stat_pos, Tensor stat_neg, str curve, int num_thresholds, int slide_steps)
  output : Tensor(auc), Tensor(stat_pos_out), Tensor(stat_neg_out)
  infer_meta :
    func : AucInferMeta
  kernel :
    func : auc
P
phlrain 已提交
637

P
phlrain 已提交
638 639
# # batch_norm
# - api : batch_norm
P
update  
phlrain 已提交
640
#   args : (Tensor x, Tensor scale, Tensor bias, Tensor mean, Tensor variance, float momentum, float epsilon, str data_layout, bool is_test, bool use_global_stats, bool trainable_statistics, bool fuse_with_relu)
P
phlrain 已提交
641 642 643 644 645 646
#   output : Tensor(out), Tensor(mean_out), Tensor(variance_out), Tensor(saved_mean), Tensor(saved_variance), Tensor(reserve_space)
#   infer_meta :
#     func : XXXXInferMeta
#   kernel :
#     func : batch_norm
#   backward: batch_norm_grad
P
add  
phlrain 已提交
647

P
update  
phlrain 已提交
648 649 650 651 652 653 654 655
# bernoulli
- api : bernoulli
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : bernoulli
P
add  
phlrain 已提交
656

P
phlrain 已提交
657 658 659 660 661 662 663 664 665
# # bilinear_tensor_product ?? optional
# - api : bilinear_tensor_product
#   args : (Tensor x, Tensor y, Tensor weight, Tensor bias)
#   output : Tensor
#   infer_meta :
#     func : BilinearTensorProductInferMeta
#   kernel :
#     func : bilinear_tensor_product
#   backward : bilinear_tensor_product_grad
P
update  
phlrain 已提交
666 667 668 669 670 671 672 673 674 675 676
#   optional : bias

# bincount
- api : bincount
  args : (Tensor x, Tensor weight, int minlength)
  output : Tensor
  infer_meta :
    func : BincountInferMeta
  kernel :
    func : bincount
  optional : weight
P
add  
phlrain 已提交
677 678 679



P
phlrain 已提交
680
# bitwise_and
P
phlrain 已提交
681 682 683 684 685 686 687
- api : bitwise_and
  args : (Tensor x, Tensor y)
  output : Tensor
  infer_meta :
    func : ElementwiseInferMeta
  kernel :
    func : bitwise_and
P
add  
phlrain 已提交
688

P
phlrain 已提交
689 690 691 692 693 694 695 696
# bitwise_or
- api : bitwise_or
  args : (Tensor x, Tensor y)
  output : Tensor
  infer_meta :
    func : ElementwiseInferMeta
  kernel :
    func : bitwise_or
P
add  
phlrain 已提交
697 698


P
phlrain 已提交
699 700 701 702 703 704 705 706
# bitwise_xor
- api : bitwise_xor
  args : (Tensor x, Tensor y)
  output : Tensor
  infer_meta :
    func : ElementwiseInferMeta
  kernel :
    func : bitwise_xor
P
add  
phlrain 已提交
707 708 709 710 711 712 713 714 715 716

# bitwise_not
- api : bitwise_not
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : bitwise_not

P
phlrain 已提交
717
# broadcast_tensors
P
phlrain 已提交
718 719 720 721 722 723 724 725
# - api : broadcast_tensors
#   args : (Tensor[] x)
#   output : Tensor[]
#   infer_meta :
#     func : BroadcastTensorsInferMeta
#   kernel :
#     func : broadcast_tensors
#   backward : broadcast_tensors_grad
P
add  
phlrain 已提交
726

P
phlrain 已提交
727
# cholesky
P
add  
phlrain 已提交
728 729 730 731 732 733 734 735 736
- api : cholesky
  args : (Tensor x, bool upper)
  output : Tensor
  infer_meta :
    func : CholeskyInferMeta
  kernel :
    func : cholesky
  backward : cholesky_grad
  
P
phlrain 已提交
737
# cholesky_solve
P
add  
phlrain 已提交
738 739 740 741 742 743 744 745 746
- api : cholesky_solve
  args : (Tensor x, Tensor y, bool upper)
  output : Tensor
  infer_meta :
    func : CholeskySolveInferMeta
  kernel :
    func : cholesky_solve
  backward : cholesky_solve_grad

P
phlrain 已提交
747 748
# # conv2d
# # copy
P
add  
phlrain 已提交
749 750


P
phlrain 已提交
751
# cumsum
P
add  
phlrain 已提交
752 753 754 755 756 757 758 759
- api : cumsum
  args : (Tensor x, int axis, bool flatten, bool exclusive, bool reverse)
  output : Tensor
  infer_meta :
    func : CumsumInferMeta
  kernel :
    func : cumsum

P
phlrain 已提交
760
# # depthwise_conv2d
P
fix bug  
phlrain 已提交
761
# # dropout optional, intermediate
P
phlrain 已提交
762
# - api : dropout
P
update  
phlrain 已提交
763
#   args : (Tensor x, Tensor seed_tensor, float p, bool is_test, str mode, int seed, bool fix_seed)
P
phlrain 已提交
764 765 766 767 768
#   output : Tensor(out), Tensor(mask)
#   infer_meta :
#     func : DropoutInferMeta
#   kernel :
#     func : dropout
P
add  
phlrain 已提交
769

P
phlrain 已提交
770
# # embedding
P
update  
phlrain 已提交
771

P
update  
phlrain 已提交
772 773 774 775 776 777 778 779 780
# erf
- api : erf
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : erf
  backward : erf_grad
P
update  
phlrain 已提交
781

P
update  
phlrain 已提交
782 783 784 785 786 787 788 789 790
# erfinv
- api : erfinv
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : erfinv
  backward : erfinv_grad
P
update  
phlrain 已提交
791

P
update  
phlrain 已提交
792
# expand_as
P
phlrain 已提交
793 794 795 796 797 798 799 800
# - api : expand_as
#   args : (Tensor x, Tensor y, int[] shape)
#   output : Tensor
#   infer_meta :
#     func : ExpandAsInferMeta
#   kernel :
#     func : expand_as
#   backward : expand_as_grad
P
update  
phlrain 已提交
801
#   optional : y
P
update  
phlrain 已提交
802 803


P
phlrain 已提交
804 805 806 807 808 809 810 811 812
# # expand
# - api : expand
#   args : (Tensor x, ScalarArray shape)
#   output : Tensor
#   infer_meta :
#     func : ExpandInferMeta
#   kernel :
#     func : expand
#   backward : expand_grad
P
update  
phlrain 已提交
813

P
phlrain 已提交
814
# eye
P
update  
phlrain 已提交
815 816 817 818 819 820 821
# - api : eye
#   args : (int64 num_rows, int64 num_colums, DataType dtype = DataType::FLOAT32)
#   output : Tensor
#   infer_meta :
#     func : EyeInferMeta
#   kernel :
#     func : eye
P
update  
phlrain 已提交
822

P
phlrain 已提交
823 824 825 826 827 828 829 830
# # flip
# - api : flip
#   args : (Tensor x, int[] axis)
#   output : Tensor
#   infer_meta :
#     func : FlipInferMeta
#   kernel :
#     func : flip
P
update  
phlrain 已提交
831

P
phlrain 已提交
832
# gaussian_random
P
phlrain 已提交
833
# - api : gaussian_random
P
update  
phlrain 已提交
834
#   args : (ScalarArray shape, float mean, float std, int seed, DataType dtype=DataType::FLOAT32)
P
phlrain 已提交
835 836
#   output : Tensor
#   infer_meta :
P
update  
phlrain 已提交
837 838
#     func : CreateInferMeta
#     param : [shape, dtype]
P
phlrain 已提交
839 840
#   kernel :
#     func : gaussian_random
P
update  
phlrain 已提交
841
#     data_type : dtype
P
update  
phlrain 已提交
842

P
phlrain 已提交
843 844
# # graph_send_recv
# - api : graph_send_recv
P
update  
phlrain 已提交
845
#   args : (Tensor x, Tensor src_index, Tensor dst_index, str pool_type)
P
phlrain 已提交
846 847 848 849 850 851
#   output : Tensor(out), Tensor(dst_count)
#   infer_meta :
#     func : GraphSendRecvInferMeta
#   kernel :
#     func : graph_send_recv
#   backward : graph_send_recv_grad
P
update  
phlrain 已提交
852

P
fix bug  
phlrain 已提交
853
# # histogram int64 
P
phlrain 已提交
854
# - api : histogram
P
update  
phlrain 已提交
855
#   args : (Tensor x, int64 bins, int min, int max)
P
phlrain 已提交
856 857 858 859 860
#   output : Tensor
#   infer_meta :
#     func : HistogramInferMeta
#   kernel :
#     func : histogram
P
update  
phlrain 已提交
861

P
update  
phlrain 已提交
862 863 864 865 866 867 868 869
# increment
- api : increment
  args : (Tensor x, float value)
  output : Tensor
  infer_meta :
    func : IncrementInferMeta
  kernel :
    func : increment
P
update  
phlrain 已提交
870

P
update  
phlrain 已提交
871 872 873 874 875 876 877 878
# is_empty
- api : is_empty
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : IsEmptyInferMeta
  kernel :
    func : is_empty
P
update  
phlrain 已提交
879

P
fix bug  
phlrain 已提交
880
# # isinf selected rows involk
P
phlrain 已提交
881 882 883 884 885 886 887
# - api : isinf
#   args : (Tensor x)
#   output : Tensor
#   infer_meta :
#     func : IsfiniteInferMeta
#   kernel :
#     func : isinf
P
update  
phlrain 已提交
888

P
fix bug  
phlrain 已提交
889
# # isnan selected rows involk
P
phlrain 已提交
890 891 892 893 894 895 896
# - api : isnan
#   args : (Tensor x)
#   output : Tensor
#   infer_meta :
#     func : IsfiniteInferMeta
#   kernel :
#     func : isnan
P
update  
phlrain 已提交
897

P
fix bug  
phlrain 已提交
898
# # isfinite selected rows involk
P
phlrain 已提交
899 900 901 902 903 904 905
# - api : isfinite
#   args : (Tensor x)
#   output : Tensor
#   infer_meta :
#     func : IsfiniteInferMeta
#   kernel :
#     func : isfinite
P
update  
phlrain 已提交
906

P
fix bug  
phlrain 已提交
907
# label_smooth  optional
P
phlrain 已提交
908 909 910 911
# - api : label_smooth
#   args : (Tensor label, Tensor prior_dist, float epsilon)
#   output : Tensor
#   infer_meta :
P
update  
phlrain 已提交
912 913
#     func : UnchangedInferMeta
#     param : [label]
P
phlrain 已提交
914 915 916
#   kernel :
#     func : label_smooth
#   backward : label_smooth_grad
P
update  
phlrain 已提交
917
#   optional : prior_dist
P
update  
phlrain 已提交
918

P
fix bug  
phlrain 已提交
919
# linspace start stop number
P
phlrain 已提交
920
# - api : linspace
P
update  
phlrain 已提交
921
#   args : (Tensor start, Tensor stop, Tensor number, DataType dtype=DataType::FLOAT32)
P
phlrain 已提交
922 923 924 925 926
#   output : Tensor
#   infer_meta :
#     func : LinspaceInferMeta
#   kernel :
#     func : linspace
P
update  
phlrain 已提交
927

P
update  
phlrain 已提交
928 929 930 931 932 933 934 935 936 937

# log_loss
- api : log_loss
  args : (Tensor input, Tensor label, float epsilon)
  output : Tensor
  infer_meta :
    func : LogLossInferMeta
  kernel :
    func : log_loss
  backward : log_loss_grad
P
update  
phlrain 已提交
938

P
phlrain 已提交
939 940 941 942 943 944 945 946
# # logical_and
# - api : logical_and
#   args : (Tensor x, Tensor y)
#   output : Tensor
#   infer_meta :
#     func : LogicalInferMeta
#   kernel :
#     func : logical_and
P
update  
phlrain 已提交
947

P
phlrain 已提交
948 949 950 951 952 953 954 955
# # logical_or
# - api : logical_or
#   args : (Tensor x, Tensor y)
#   output : Tensor
#   infer_meta :
#     func : LogicalInferMeta
#   kernel :
#     func : logical_or
P
phlrain 已提交
956 957


P
phlrain 已提交
958 959 960 961 962 963 964 965
# # logical_xor
# - api : logical_xor
#   args : (Tensor x, Tensor y)
#   output : Tensor
#   infer_meta :
#     func : LogicalInferMeta
#   kernel :
#     func : logical_xor
P
phlrain 已提交
966

P
update  
phlrain 已提交
967 968 969 970 971 972 973 974
# logical_not
- api : logical_not
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : logical_not
P
update  
phlrain 已提交
975

P
phlrain 已提交
976 977 978 979 980 981 982 983 984
# # masked_select
# - api : masked_select
#   args : (Tensor x, Tensor mask)
#   output : Tensor
#   infer_meta :
#     func : MaksedSelectInferMeta
#   kernel :
#     func : masked_select
#   backward : masked_select_grad
P
phlrain 已提交
985

P
phlrain 已提交
986 987 988 989 990 991 992 993 994
# # multi_dot
# - api : multi_dot
#   args : (Tensor[] x)
#   output : Tensor
#   infer_meta :
#     func : MultiDotInferMeta
#   kernel :
#     func : multi_dot
#   backward : multi_dot_grad
P
phlrain 已提交
995

P
update  
phlrain 已提交
996 997 998 999 1000 1001 1002 1003
# multinomial
- api : multinomial
  args : (Tensor x, int num_samples, bool replacement)
  output : Tensor
  infer_meta :
    func : MultinomialInferMeta
  kernel :
    func : multinomial
P
phlrain 已提交
1004

P
update  
phlrain 已提交
1005
# nll_loss  ?? optional
P
phlrain 已提交
1006
# - api : nll_loss
P
update  
phlrain 已提交
1007
#   args : (Tensor x, Tensor label, Tensor weight, int64 ignore_index, str reduction)
P
phlrain 已提交
1008 1009
#   output : Tensor(out), Tensor(total_weight)
#   infer_meta :
P
update  
phlrain 已提交
1010
#     func : NllLossRawInferMeta
P
phlrain 已提交
1011 1012 1013
#   kernel :
#     func : nll_loss
#   backward : nll_loss_grad
P
update  
phlrain 已提交
1014
#   optional : weight
P
phlrain 已提交
1015

P
phlrain 已提交
1016 1017 1018 1019 1020 1021 1022 1023 1024
# # pad
# - api : pad
#   args : (Tensor x, int[] paddings, float pad_value)
#   output : Tensor
#   infer_meta :
#     func : PadInferMeta
#   kernel :
#     func : pad
#   backward : pad_grad
P
phlrain 已提交
1025

P
phlrain 已提交
1026 1027
# # pixel_shuffle
# - api : pixel_shuffle
P
update  
phlrain 已提交
1028
#   args : (Tensor x, int upscale_factor, str data_format)
P
phlrain 已提交
1029 1030 1031 1032 1033 1034
#   output : Tensor
#   infer_meta :
#     func : PixelShuffleInferMeta
#   kernel :
#     func : pixel_shuffle
#   backward : pixel_shuffle_grad
P
phlrain 已提交
1035

P
phlrain 已提交
1036 1037 1038 1039 1040 1041 1042 1043 1044
# # poisson
# - api : poisson
#   args : (Tensor x)
#   output : Tensor
#   infer_meta :
#     func : PoissonInferMeta
#   kernel :
#     func : poisson
#   backward : poisson_grad
P
phlrain 已提交
1045

P
fix bug  
phlrain 已提交
1046
# psroi_pool  optional
P
phlrain 已提交
1047 1048 1049 1050 1051 1052 1053 1054
# - api : psroi_pool
#   args : (Tensor x, Tensor rois, Tensor rois_num, int pooled_weight, int pooled_width, int output_channels, float spatial_scale )
#   output : Tensor
#   infer_meta :
#     func : PsroiPoolInferMeta
#   kernel :
#     func : psroi_pool
#   backward : psroi_pool_grad
P
update  
phlrain 已提交
1055
#   optional : rois_num
P
phlrain 已提交
1056

P
phlrain 已提交
1057 1058 1059 1060 1061 1062 1063 1064
# # randint_raw
# - api : randint
#   args : (int low, int high, ScalarArray shape, DataType dtype)
#   output : Tensor
#   infer_meta :
#     func : RandintInferMeta
#   kernel :
#     func : randint
P
phlrain 已提交
1065

P
phlrain 已提交
1066 1067 1068 1069 1070 1071 1072 1073
# # randperm_raw
# - api : randperm
#   args : (int n, DataType dtype)
#   output : Tensor
#   infer_meta :
#     func : RandpermInferMeta
#   kernel :
#     func : randperm
P
phlrain 已提交
1074

P
phlrain 已提交
1075 1076 1077 1078 1079 1080 1081 1082
# # max
# - api : max
#   args : (Tensor x, int64_t[] dims, bool keep_dim)
#   output : Tensor
#   infer_meta :
#     func : MaxInferMeta
#   kernel :
#     func : max
P
phlrain 已提交
1083

P
phlrain 已提交
1084 1085 1086 1087 1088 1089 1090 1091
# # reduce_prod
# - api : reduce_prod
#   args : (Tensor x, int64_t[] dims, bool keep_dim, bool reduce_all)
#   output : Tensor
#   infer_meta :
#     func : ReduceProdInferMeta
#   kernel :
#     func : reduce_prod
P
phlrain 已提交
1092

P
update  
phlrain 已提交
1093 1094 1095 1096 1097 1098 1099 1100 1101 1102
# selu
- api : selu
  args : (Tensor x, float scale, float alpha)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
  kernel :
    func : selu
  backward : selu_grad
P
phlrain 已提交
1103

P
phlrain 已提交
1104
# # set_value None api
P
phlrain 已提交
1105

P
phlrain 已提交
1106
# # sgd # need invoke
P
fix bug  
phlrain 已提交
1107
# # shape selcted rows
P
phlrain 已提交
1108

P
update  
phlrain 已提交
1109 1110 1111 1112 1113 1114 1115 1116
# shard_index
- api : shard_index
  args : (Tensor in, int index_num, int nshards, int shard_id, int ignore_value)
  output : Tensor
  infer_meta :
    func : ShardIndexInferMeta
  kernel :
    func : shard_index
P
phlrain 已提交
1117

P
update  
phlrain 已提交
1118 1119 1120 1121 1122 1123 1124 1125 1126
# sigmoid_cross_entropy_with_logits
- api : sigmoid_cross_entropy_with_logits
  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
P
phlrain 已提交
1127

P
update  
phlrain 已提交
1128 1129 1130 1131 1132 1133 1134 1135
# size
- api : size
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : SizeInferMeta
  kernel :
    func : size
P
phlrain 已提交
1136

P
update  
phlrain 已提交
1137 1138 1139 1140 1141 1142 1143 1144 1145
# tile
- api : tile
  args : (Tensor x, ScalarArray repeat_times)
  output : Tensor
  infer_meta :
    func : TileInferMeta
  kernel :
    func : tile
  backward : tile_grad
P
phlrain 已提交
1146

P
phlrain 已提交
1147 1148 1149 1150 1151 1152 1153 1154 1155
# # top_k
# - api : top_k
#   args : (Tensor x, Scalar k, int axis, bool largest, bool sorted)
#   output : Tensor(out), Tensor(indices)
#   infer_meta :
#     func : TopkInferMeta
#   kernel :
#     func : top_k
#   backward : top_k_grad
P
phlrain 已提交
1156

P
update  
phlrain 已提交
1157 1158 1159 1160 1161 1162 1163 1164 1165
# trace
- api : trace
  args : (Tensor x, int offset, int axis1, int axis2)
  output : Tensor
  infer_meta :
    func : TraceInferMeta
  kernel :
    func : trace
  backward : trace_grad
P
phlrain 已提交
1166

P
phlrain 已提交
1167
# # phi_transfer_layout | not have python api
P
phlrain 已提交
1168

P
phlrain 已提交
1169 1170 1171 1172 1173 1174 1175 1176
# # truncated_gaussian_random
# - api : truncated_gaussian_random
#   args : (int[] shape, float mean, float std, int seed, DataType dtype)
#   output : Tensor
#   infer_meta :
#     func : TruncatedGaussianRandomInferMeta
#   kernel :
#     func : truncated_gaussian_random
P
phlrain 已提交
1177

P
phlrain 已提交
1178 1179 1180 1181 1182 1183 1184 1185
# # unbind
# - api : unbind
#   args : (Tensor x, int axis)
#   output : Tensor[]
#   infer_meta :
#     func : UnbindInferMeta
#   kernel :
#     func : unbind
P
phlrain 已提交
1186

P
update  
phlrain 已提交
1187 1188 1189 1190 1191 1192 1193 1194 1195
# unfold
- api : unfold
  args : (Tensor x, int[] kernel_sizes, int[] strides, int[] paddings, int[] dilations)
  output : Tensor
  infer_meta :
    func : UnfoldInferMeta
  kernel :
    func : unfold
  backward : unfold_grad
P
phlrain 已提交
1196 1197

# # uniform_random_raw selected rows ??
P
update  
phlrain 已提交
1198 1199

# viterbi_decode
P
phlrain 已提交
1200 1201 1202 1203 1204 1205 1206
# - api : viterbi_decode
#   args : (Tensor input, Tensor transition, Tensor length, bool include_bos_eos_tag)
#   output : Tensor(scores), Tensor(path)
#   infer_meta :
#     func : ViterbiDecodeInferMeta
#   kernel :
#     func : viterbi_decode
P
phlrain 已提交
1207

P
update  
phlrain 已提交
1208 1209 1210 1211 1212 1213 1214 1215
# where_index
- api : where_index
  args : (Tensor condition)
  output : Tensor
  infer_meta :
    func : WhereIndexInferMeta
  kernel :
    func : where_index
P
phlrain 已提交
1216 1217


P
phlrain 已提交
1218 1219 1220 1221 1222 1223 1224 1225
# # yolo_box
# - api : yolo_box
#   args : (Tensor x, Tensor img_size, int[] anchors, int class_num, float conf_thresh, int downsample_ratio, bool clip_bbox, float scale_x_y, bool iou_aware, float iou_aware_factor)
#   output : Tensor(boxes), Tensor(scores)
#   infer_meta :
#     func : YoloBoxInferMeta
#   kernel :
#     func : yolo_box
H
hong 已提交
1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486

- api : gumbel_softmax
  args : (Tensor x, float temperature, bool hard, int axis)
  output : Tensor
  infer_meta :
    func : GumbelSoftmaxInferMeta
  kernel :
    func : gumbel_softmax
  # backward : gumbel_softmax_grad

- api : diag
  args : (Tensor x, int offset, float padding_value)
  output : Tensor
  infer_meta :
    func : DiagInferMeta
  kernel :
    func : diag

# - api : pixel_shuffle
#   args : (Tensor x, int upscale_factor, const std::string& data_format)
#   output : Tensor
#   infer_meta :
#     func : PixelShuffleInferMeta
#   kernel :
#     func : pixel_shuffle

- api : transpose
  args : (Tensor x, int[] axis)
  output : Tensor
  infer_meta :
    func : TransposeInferMeta
  kernel :
    func : transpose
  backward : transpose_grad

- api : lerp
  args : (Tensor x, Tensor y, Tensor weight)
  output : Tensor
  infer_meta :
    func : LerpInferMeta
  kernel :
    func : lerp
  # backward : lerp_grad

- api : scatter
  args : (Tensor x, Tensor index, Tensor updates, bool overwrite)
  output : Tensor
  infer_meta :
    func : ScatterInferMeta
    dtype : x
  kernel :
    func : scatter
  backward : scatter_grad


- api : scatter_nd_add
  args : (Tensor x, Tensor index, Tensor updates)
  output : Tensor
  infer_meta :
    func : ScatterNdAddInferMeta
    dtype : x
  kernel :
    func : scatter_nd_add
  backward : scatter_nd_add_grad


- api : addmm
  args : (Tensor input, Tensor x, Tensor y, float alpha, float beta)
  output : Tensor
  infer_meta :
    func : AddmmInferMeta
  kernel :
    func : addmm
  backward : addmm_grad


- api : adadelta
  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

- api : adamax
  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
  


- api : where
  args : (Tensor condition, Tensor x, Tensor y)
  output : Tensor
  infer_meta :
    func : WhereInferMeta
  kernel :
    func : where
  backward : where_grad


# BilinearTensorProductInferMeta

# BroadcastTensorsInferMeta

- api : less_than
  args : (Tensor x, Tensor y, int axis = -1)
  output : Tensor
  infer_meta :
    func : CompareInferMeta
  kernel :
    func : less_than  

- api : less_equal
  args : (Tensor x, Tensor y, int axis = -1)
  output : Tensor
  infer_meta :
    func : CompareInferMeta
  kernel :
    func : less_equal

- api : greater
  args : (Tensor x, Tensor y, int axis = -1)
  output : Tensor
  infer_meta :
    func : CompareInferMeta
  kernel :
    func : greater

- api : greater_equal
  args : (Tensor x, Tensor y, int axis = -1)
  output : Tensor
  infer_meta :
    func : CompareInferMeta
  kernel :
    func : greater_equal

- api : equal
  args : (Tensor x, Tensor y, int axis = -1)
  output : Tensor
  infer_meta :
    func : CompareInferMeta
  kernel :
    func : equal
  
- api : not_equal
  args : (Tensor x, Tensor y, int axis = -1)
  output : Tensor
  infer_meta :
    func : CompareInferMeta
  kernel :
    func : not_equal

# - api : equal_all
#   args : (Tensor x, Tensor y)
#   output : Tensor
#   infer_meta :
#     func : CompareAllInferMeta
#   kernel :
#     func : equal_all


- api : huber_loss
  args : (Tensor input, Tensor label, float delta)
  output : Tensor(out), Tensor(residual)
  infer_meta :
    func : HuberLossInferMeta
  kernel :
    func : huber_loss
  # backward : huber_loss_grad

- api : triangular_solve
  args : (Tensor x, Tensor y, bool upper, bool tranpose, bool unitriangular)
  output : Tensor
  infer_meta :
    func : TriangularSolveInferMeta
  kernel :
    func : triangular_solve
  # backward : triangular_solve_grad


- api : index_sample
  args : (Tensor x, Tensor index)
  output : Tensor
  infer_meta :
    func : IndexSampleInferMeta
  kernel :
    func : index_sample
    data_type : x
  backward : index_sample_grad


- api : cross
  args : (Tensor x, Tensor y, int axis = 9)
  output : Tensor
  infer_meta :
    func : CrossInferMeta
  kernel :
    func : cross
  backward : cross_grad


- api : atan2
  args : (Tensor x, Tensor y)
  output : Tensor
  infer_meta :
    func : Atan2InferMeta
  kernel :
    func : atan2
  backward : atan2_grad


- api : bce_loss
  args : (Tensor input, Tensor label)
  output : Tensor
  infer_meta :
    func : BCELossInferMeta
  kernel :
    func : bce_loss
  backward : bce_loss_grad


- api : dist
  args : (Tensor x, Tensor y, float p)
  output : Tensor
  infer_meta :
    func : DistInferMeta
  kernel :
    func : dist
  # backward : dist_grad


- api : gather_nd
  args : (Tensor x, Tensor index)
  output : Tensor
  infer_meta :
    func : GatherNdInferMeta
  kernel :
    func : gather_nd
    data_type : x
  backward : gather_nd_grad

- api : gather_tree
  args : (Tensor ids, Tensor parents)
  output : Tensor
  infer_meta :
    func : GatherTreeMeta
  kernel :
    func : gather_tree

- api : mv
  args : (Tensor x, Tensor vec)
  output : Tensor
  infer_meta :
    func : MvInferMeta
  kernel :
    func : mv
  backward : mv_grad
H
hong 已提交
1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499



#  =================================== sep0


#  =================================== sep1


#  =================================== sep2


#  =================================== sep3