api.yaml 30.1 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
H
hong 已提交
50
  backward : divide_grad
51 52

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

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

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

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

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

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

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

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

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

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

F
From00 已提交
147 148 149 150 151 152 153 154
- 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

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

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

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

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

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

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

206
- api : subtract
Z
zyfncg 已提交
207
  args : (Tensor x, Tensor y)
208
  output : Tensor
209
  infer_meta :
210 211
    func : ElementwiseInferMeta
  kernel :
Y
YuanRisheng 已提交
212
    func : subtract
H
hong 已提交
213
  backward : subtract_grad
214 215

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

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

H
hong 已提交
229 230 231 232 233 234 235 236

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

H
hong 已提交
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 280 281 282
- 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 已提交
283

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

P
update  
phlrain 已提交
294 295 296 297 298 299 300 301 302
# 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 已提交
303
    data_type : x
P
update  
phlrain 已提交
304
  backward : put_along_axis_grad
P
phlrain 已提交
305 306


P
update  
phlrain 已提交
307 308 309 310 311 312 313 314 315
# 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 已提交
316
    data_type : x
P
update  
phlrain 已提交
317
  backward : take_along_axis_grad
P
phlrain 已提交
318

P
update  
phlrain 已提交
319 320 321 322 323 324 325 326 327 328
# 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 已提交
329

P
update  
phlrain 已提交
330 331 332 333 334 335 336 337 338
# 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 已提交
339

P
update  
phlrain 已提交
340 341 342 343 344 345 346 347 348
# 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 已提交
349
  
P
phlrain 已提交
350

P
phlrain 已提交
351 352 353 354 355 356 357 358 359
# # 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 已提交
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 471 472 473

# 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 已提交
474 475 476 477 478 479 480 481 482
# sigmoid
- api : sigmoid
  args : (Tensor x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : sigmoid
  backward : sigmoid_grad
P
phlrain 已提交
483

P
phlrain 已提交
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 601 602 603
# 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 已提交
604
# arg_min  # int64 dtype
P
phlrain 已提交
605
- api : argmin
P
update  
phlrain 已提交
606
  args : (Tensor x, int64 axis, bool keepdims, bool flatten, int dtype)
P
phlrain 已提交
607 608
  output : Tensor
  infer_meta :
P
phlrain 已提交
609
    func : ArgMinMaxInferMeta
P
phlrain 已提交
610
  kernel :
P
update  
phlrain 已提交
611
    func : arg_min
P
phlrain 已提交
612

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

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

P
update  
phlrain 已提交
632 633 634 635 636 637 638 639
# 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 已提交
640

P
phlrain 已提交
641 642
# # batch_norm
# - api : batch_norm
P
update  
phlrain 已提交
643
#   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 已提交
644 645 646 647 648 649
#   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 已提交
650

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

P
phlrain 已提交
660 661 662 663 664 665 666 667 668
# # 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 已提交
669 670 671 672 673 674 675 676 677 678 679
#   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 已提交
680 681 682



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

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


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

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

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

P
phlrain 已提交
730
# cholesky
P
add  
phlrain 已提交
731 732 733 734 735 736 737 738 739
- api : cholesky
  args : (Tensor x, bool upper)
  output : Tensor
  infer_meta :
    func : CholeskyInferMeta
  kernel :
    func : cholesky
  backward : cholesky_grad
  
P
phlrain 已提交
740
# cholesky_solve
P
add  
phlrain 已提交
741 742 743 744 745 746 747 748 749
- 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 已提交
750 751
# # conv2d
# # copy
P
add  
phlrain 已提交
752 753


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

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

P
phlrain 已提交
773
# # embedding
P
update  
phlrain 已提交
774

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

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

P
update  
phlrain 已提交
795
# expand_as
P
phlrain 已提交
796 797 798 799 800 801 802 803
# - 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 已提交
804
#   optional : y
P
update  
phlrain 已提交
805 806


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

P
phlrain 已提交
817
# eye
P
update  
phlrain 已提交
818 819 820 821 822 823 824
# - 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 已提交
825

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

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

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

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

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

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

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

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

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

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

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

P
update  
phlrain 已提交
931 932 933 934 935 936 937 938 939 940

# 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 已提交
941

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

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


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

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

P
phlrain 已提交
979 980 981 982 983 984 985 986 987
# # 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 已提交
988

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

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

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

P
phlrain 已提交
1019 1020 1021 1022 1023 1024 1025 1026 1027
# # 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 已提交
1028

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

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

P
fix bug  
phlrain 已提交
1049
# psroi_pool  optional
P
phlrain 已提交
1050 1051 1052 1053 1054 1055 1056 1057
# - 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 已提交
1058
#   optional : rois_num
P
phlrain 已提交
1059

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

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

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

P
phlrain 已提交
1087 1088 1089 1090 1091 1092 1093 1094
# # 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 已提交
1095

P
update  
phlrain 已提交
1096 1097 1098 1099 1100 1101 1102 1103 1104 1105
# 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 已提交
1106

P
phlrain 已提交
1107
# # set_value None api
P
phlrain 已提交
1108

P
phlrain 已提交
1109
# # sgd # need invoke
P
fix bug  
phlrain 已提交
1110
# # shape selcted rows
P
phlrain 已提交
1111

P
update  
phlrain 已提交
1112 1113 1114 1115 1116 1117 1118 1119
# 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 已提交
1120

P
update  
phlrain 已提交
1121 1122 1123 1124 1125 1126 1127 1128 1129
# 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 已提交
1130

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

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

P
phlrain 已提交
1150 1151 1152 1153 1154 1155 1156 1157 1158
# # 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 已提交
1159

P
update  
phlrain 已提交
1160 1161 1162 1163 1164 1165 1166 1167 1168
# 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 已提交
1169

P
phlrain 已提交
1170
# # phi_transfer_layout | not have python api
P
phlrain 已提交
1171

P
phlrain 已提交
1172 1173 1174 1175 1176 1177 1178 1179
# # 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 已提交
1180

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

P
update  
phlrain 已提交
1190 1191 1192 1193 1194 1195 1196 1197 1198
# 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 已提交
1199 1200

# # uniform_random_raw selected rows ??
P
update  
phlrain 已提交
1201 1202

# viterbi_decode
P
phlrain 已提交
1203 1204 1205 1206 1207 1208 1209
# - 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 已提交
1210

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


P
phlrain 已提交
1221 1222 1223 1224 1225 1226 1227 1228
# # 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 已提交
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

- 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
H
hong 已提交
1320

H
hong 已提交
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


- 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
H
hong 已提交
1376

H
hong 已提交
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 1487 1488 1489
- 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 已提交
1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502



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


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


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


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