sparse_ops.yaml 13.4 KB
Newer Older
1
- op : abs
2 3
  args : (Tensor x)
  output : Tensor(out)
Z
zhangkaihuo 已提交
4 5
  infer_meta :
    func : UnchangedInferMeta
6 7 8 9 10 11
  kernel :
    func : abs_coo{sparse_coo -> sparse_coo},
           abs_csr{sparse_csr -> sparse_csr}
    layout : x
  backward : abs_grad

12
- op : acos
13 14
  args : (Tensor x)
  output : Tensor(out)
Z
zhangkaihuo 已提交
15 16
  infer_meta :
    func : UnchangedInferMeta
17 18 19 20 21 22
  kernel :
    func : acos_coo{sparse_coo -> sparse_coo},
           acos_csr{sparse_csr -> sparse_csr}
    layout : x
  backward : acos_grad

23
- op : acosh
24 25
  args : (Tensor x)
  output : Tensor(out)
Z
zhangkaihuo 已提交
26 27
  infer_meta :
    func : UnchangedInferMeta
28 29 30 31 32 33
  kernel :
    func : acosh_coo{sparse_coo -> sparse_coo},
           acosh_csr{sparse_csr -> sparse_csr}
    layout : x
  backward : acosh_grad

34
- op : add
35 36
  args : (Tensor x, Tensor y)
  output : Tensor(out)
Z
zhangkaihuo 已提交
37
  infer_meta :
Z
zhangkaihuo 已提交
38
    func : ElementwiseInferMeta
39
  kernel :
40 41
    func : add_coo_coo{sparse_coo, sparse_coo -> sparse_coo},
           add_csr_csr{sparse_csr, sparse_csr -> sparse_csr}
Z
zhangkaihuo 已提交
42
           add_coo_dense{sparse_coo, dense -> sparse_coo},
43 44 45
    layout : x
  backward : add_grad

46
- op : asin
47 48
  args : (Tensor x)
  output : Tensor(out)
Z
zhangkaihuo 已提交
49 50
  infer_meta :
    func : UnchangedInferMeta
51 52 53 54 55 56
  kernel :
    func : asin_coo{sparse_coo -> sparse_coo},
           asin_csr{sparse_csr -> sparse_csr}
    layout : x
  backward : asin_grad

57
- op : asinh
58 59
  args : (Tensor x)
  output : Tensor(out)
Z
zhangkaihuo 已提交
60 61
  infer_meta :
    func : UnchangedInferMeta
62 63 64 65 66 67
  kernel :
    func : asinh_coo{sparse_coo -> sparse_coo},
           asinh_csr{sparse_csr -> sparse_csr}
    layout : x
  backward : asinh_grad

68
- op : atan
69 70
  args : (Tensor x)
  output : Tensor(out)
Z
zhangkaihuo 已提交
71 72
  infer_meta :
    func : UnchangedInferMeta
73 74 75 76 77 78
  kernel :
    func : atan_coo{sparse_coo -> sparse_coo},
           atan_csr{sparse_csr -> sparse_csr}
    layout : x
  backward : atan_grad

79
- op : atanh
80 81
  args : (Tensor x)
  output : Tensor(out)
Z
zhangkaihuo 已提交
82 83
  infer_meta :
    func : UnchangedInferMeta
84 85 86 87 88 89
  kernel :
    func : atanh_coo{sparse_coo -> sparse_coo},
           atanh_csr{sparse_csr -> sparse_csr}
    layout : x
  backward : atanh_grad

90
- op : batch_norm_
91
  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)
92 93 94 95 96 97
  output : Tensor(out), Tensor(mean_out), Tensor(variance_out), Tensor(saved_mean), Tensor(saved_variance), Tensor(reserve_space)
  infer_meta :
    func : BatchNormInferMeta
  kernel :
    func : batch_norm_coo {sparse_coo, dense, dense, dense, dense -> sparse_coo, dense, dense, dense, dense, dense}
    data_type : x
98
  inplace : (mean -> mean_out), (variance -> variance_out)
99 100
  backward : batch_norm_grad

101
- op : cast
102 103
  args : (Tensor x, DataType index_dtype=DataType::UNDEFINED, DataType value_dtype=DataType::UNDEFINED)
  output : Tensor(out)
Z
zhangkaihuo 已提交
104 105 106
  infer_meta :
    func : CastInferMeta
    param: [x, value_dtype]
107 108 109 110 111 112 113
  kernel :
    func : cast_coo{sparse_coo -> sparse_coo},
           cast_csr{sparse_csr -> sparse_csr}
    layout : x
    data_type : x
  backward : cast_grad

114
- op : conv3d
115
  args : (Tensor x, Tensor kernel, int[] paddings, int[] dilations, int[] strides, int groups, bool subm, str key="")
116
  output : Tensor(out), Tensor(rulebook), Tensor(counter)
Z
zhangkaihuo 已提交
117 118
  infer_meta :
    func : sparse::Conv3dInferMeta
119
  kernel :
120
    func : conv3d_coo{sparse_coo, dense -> sparse_coo, dense, dense}
121
    layout : x
122
  intermediate: rulebook, counter
Z
zhangkaihuo 已提交
123
  backward : conv3d_grad
124

125
- op : divide
126 127
  args : (Tensor x, Tensor y)
  output : Tensor(out)
Z
zhangkaihuo 已提交
128
  infer_meta :
Z
zhangkaihuo 已提交
129
    func : ElementwiseInferMeta
130
  kernel :
131 132
    func : divide_coo_coo{sparse_coo, sparse_coo -> sparse_coo},
           divide_csr_csr{sparse_csr, sparse_csr -> sparse_csr}
133 134 135
    layout : x
  backward : divide_grad

136
- op : divide_scalar
137 138
  args : (Tensor x, float scalar)
  output : Tensor(out)
Z
zhangkaihuo 已提交
139 140 141
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
142
  kernel :
Z
zhangkaihuo 已提交
143 144
    func : divide_scalar_coo{sparse_coo -> sparse_coo},
           divide_scalar_csr{sparse_csr -> sparse_csr}
145 146
  backward : divide_scalar_grad

147
- op : expm1
148 149
  args : (Tensor x)
  output : Tensor(out)
Z
zhangkaihuo 已提交
150 151
  infer_meta :
    func : UnchangedInferMeta
152 153 154 155 156 157
  kernel :
    func : expm1_coo{sparse_coo -> sparse_coo},
           expm1_csr{sparse_csr -> sparse_csr}
    layout : x
  backward : expm1_grad

158 159 160 161 162 163 164 165 166 167 168
- op : isnan
  args : (Tensor x)
  output : Tensor(out)
  infer_meta :
    func : IsfiniteInferMeta
    param: [x]
  kernel :
    func : isnan_coo{sparse_coo -> sparse_coo},
      isnan_csr{sparse_csr -> sparse_csr}
    layout : x

169
- op : leaky_relu
170 171
  args : (Tensor x, float alpha)
  output : Tensor(out)
Z
zhangkaihuo 已提交
172 173 174
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
175 176 177 178 179 180
  kernel :
    func : leaky_relu_coo{sparse_coo -> sparse_coo},
           leaky_relu_csr{sparse_csr -> sparse_csr}
    layout : x
  backward : leaky_relu_grad

181
- op : log1p
182 183
  args : (Tensor x)
  output : Tensor(out)
Z
zhangkaihuo 已提交
184 185
  infer_meta :
    func : UnchangedInferMeta
186 187 188 189 190 191
  kernel :
    func : log1p_coo{sparse_coo -> sparse_coo},
           log1p_csr{sparse_csr -> sparse_csr}
    layout : x
  backward : log1p_grad

192
- op : multiply
193 194
  args : (Tensor x, Tensor y)
  output : Tensor(out)
Z
zhangkaihuo 已提交
195 196
  infer_meta :
    func : ElementwiseInferMeta
197
  kernel :
198 199
    func : multiply_coo_coo{sparse_coo, sparse_coo -> sparse_coo},
           multiply_csr_csr{sparse_csr, sparse_csr -> sparse_csr}
200 201 202
    layout : x
  backward : multiply_grad

203
- op : pow
204 205
  args : (Tensor x, float factor)
  output : Tensor(out)
Z
zhangkaihuo 已提交
206 207 208
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
209 210 211 212 213 214
  kernel :
    func : pow_coo{sparse_coo -> sparse_coo},
           pow_csr{sparse_csr -> sparse_csr}
    layout : x
  backward : pow_grad

215
- op : relu
216
  args : (Tensor x)
217
  output : Tensor(out)
Z
zhangkaihuo 已提交
218 219
  infer_meta :
    func : UnchangedInferMeta
220
  kernel :
221 222
    func : relu_coo{sparse_coo -> sparse_coo},
           relu_csr{sparse_csr -> sparse_csr}
223
    layout : x
224
  backward : relu_grad
225

226
- op : relu6
227
  args : (Tensor x)
228
  output : Tensor(out)
Z
zhangkaihuo 已提交
229 230 231
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
232 233 234 235 236 237
  kernel :
    func : relu6_coo{sparse_coo -> sparse_coo},
           relu6_csr{sparse_csr -> sparse_csr}
    layout : x
  backward : relu6_grad

238 239 240 241 242 243 244 245 246 247 248
- op : reshape
  args : (Tensor x,  IntArray shape)
  output : Tensor(out)
  infer_meta :
    func : ReshapeInferMeta
  kernel :
    func : reshape_coo{sparse_coo -> sparse_coo},
           reshape_csr{sparse_csr -> sparse_csr}
    layout : x
  backward : reshape_grad

249
- op : scale
250 251
  args : (Tensor x, float scale, float bias, bool bias_after_scale)
  output : Tensor(out)
Z
zhangkaihuo 已提交
252 253 254
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
255 256 257 258 259
  kernel :
    func : scale_coo{sparse_coo -> sparse_coo},
           scale_csr{sparse_csr -> sparse_csr}
  backward : scale_grad

260
- op : sin
261
  args : (Tensor x)
262
  output : Tensor(out)
Z
zhangkaihuo 已提交
263 264
  infer_meta :
    func : UnchangedInferMeta
265
  kernel :
266 267
    func : sin_coo{sparse_coo -> sparse_coo},
           sin_csr{sparse_csr -> sparse_csr}
268
    layout : x
269
  backward : sin_grad
270

271
- op : sinh
272 273
  args : (Tensor x)
  output : Tensor(out)
Z
zhangkaihuo 已提交
274 275
  infer_meta :
    func : UnchangedInferMeta
276 277 278 279 280 281
  kernel :
    func : sinh_coo{sparse_coo -> sparse_coo},
           sinh_csr{sparse_csr -> sparse_csr}
    layout : x
  backward : sinh_grad

282
- op : softmax
283 284
  args : (Tensor x, int axis=-1)
  output : Tensor(out)
Z
zhangkaihuo 已提交
285 286 287
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
288 289 290 291 292
  kernel :
    func : softmax_csr{sparse_csr -> sparse_csr}
    layout : x
  backward : softmax_grad

293
- op : sparse_coo_tensor
294
  args : (Tensor values, Tensor indices, int64_t[] shape={})
295
  output : Tensor(out)
Z
zhangkaihuo 已提交
296 297
  infer_meta :
    func : sparse::SparseCooTensorInferMeta
298 299 300 301 302 303
  kernel :
    func : sparse_coo_tensor{dense, dense -> sparse_coo}
    layout : values
    data_type : values
  backward : sparse_coo_tensor_grad

304
- op : sqrt
305
  args : (Tensor x)
306
  output : Tensor(out)
Z
zhangkaihuo 已提交
307 308
  infer_meta :
    func : UnchangedInferMeta
309
  kernel :
310 311
    func : sqrt_coo{sparse_coo -> sparse_coo},
           sqrt_csr{sparse_csr -> sparse_csr}
312
    layout : x
313
  backward : sqrt_grad
314

315
- op : square
316 317
  args : (Tensor x)
  output : Tensor(out)
Z
zhangkaihuo 已提交
318 319
  infer_meta :
    func : UnchangedInferMeta
320 321 322 323 324 325
  kernel :
    func : square_coo{sparse_coo -> sparse_coo},
           square_csr{sparse_csr -> sparse_csr}
    layout : x
  backward : square_grad

326
- op : subtract
327 328
  args : (Tensor x, Tensor y)
  output : Tensor(out)
Z
zhangkaihuo 已提交
329 330
  infer_meta :
    func : ElementwiseInferMeta
331
  kernel :
332 333
    func : subtract_coo_coo{sparse_coo, sparse_coo -> sparse_coo},
           subtract_csr_csr{sparse_csr, sparse_csr -> sparse_csr}
334 335 336
    layout : x
  backward : subtract_grad

337
- op : sync_batch_norm_
338
  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)
339 340 341 342 343 344 345 346 347
  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_coo{sparse_coo, dense, dense, dense, dense -> sparse_coo, dense, dense, dense, dense, dense}
    data_type : x
  backward : sync_batch_norm_grad
  inplace : (mean -> mean_out), (variance -> variance_out)

348
- op : tan
349 350
  args : (Tensor x)
  output : Tensor(out)
Z
zhangkaihuo 已提交
351 352
  infer_meta :
    func : UnchangedInferMeta
353 354 355 356 357 358
  kernel :
    func : tan_coo{sparse_coo -> sparse_coo},
           tan_csr{sparse_csr -> sparse_csr}
    layout : x
  backward : tan_grad

359
- op : tanh
360
  args : (Tensor x)
361
  output : Tensor(out)
Z
zhangkaihuo 已提交
362 363
  infer_meta :
    func : UnchangedInferMeta
364
  kernel :
365 366
    func : tanh_coo{sparse_coo -> sparse_coo},
           tanh_csr{sparse_csr -> sparse_csr}
367
    layout : x
368
  backward : tanh_grad
369

370
- op : to_dense
371
  args : (Tensor x)
372
  output : Tensor(out)
Z
zhangkaihuo 已提交
373 374
  infer_meta :
    func : UnchangedInferMeta
375 376 377 378
  kernel :
    func : coo_to_dense {sparse_coo -> dense},
           csr_to_dense {sparse_csr -> dense}
  backward : to_dense_grad
379

380
- op : to_sparse_coo
381
  args : (Tensor x, int64_t sparse_dim)
382
  output : Tensor(out)
Z
zhangkaihuo 已提交
383 384 385
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
386 387 388 389
  kernel :
    func : dense_to_coo { dense -> sparse_coo },
           csr_to_coo { sparse_csr -> sparse_coo}
  backward : to_sparse_coo_grad
390

391
- op : to_sparse_csr
392
  args : (Tensor x)
393
  output : Tensor(out)
Z
zhangkaihuo 已提交
394 395
  infer_meta :
    func : UnchangedInferMeta
396 397 398
  kernel :
    func : dense_to_csr {dense -> sparse_csr},
           coo_to_csr {sparse_coo -> sparse_csr}
Z
zhangkaihuo 已提交
399

400 401 402 403 404 405 406 407 408 409 410 411
- op : transpose
  args : (Tensor x, int[] perm)
  output : Tensor(out)
  infer_meta :
    func : TransposeInferMeta
    param: [ x, perm ]
  kernel :
    func : transpose_coo{sparse_coo -> sparse_coo},
           transpose_csr{sparse_csr -> sparse_csr}
    layout : x
  backward : transpose_grad

412
- op : values
413 414
  args : (Tensor x)
  output : Tensor(out)
Z
zhangkaihuo 已提交
415 416
  infer_meta :
    func : sparse::ValuesInferMeta
417
  kernel :
418 419
    func : values_coo{sparse_coo -> dense},
           values_csr{sparse_csr -> dense}
420 421 422
    layout : x
  backward : values_grad

423
- op: addmm
424
  args : (Tensor input, Tensor x, Tensor y, float beta=1.0, float alpha=1.0)
425
  output : Tensor(out)
Z
zhangkaihuo 已提交
426
  infer_meta :
Z
zhangkaihuo 已提交
427 428
    func : UnchangedInferMeta
    param : [input]
429 430 431 432 433 434 435 436
  kernel :
    func : addmm_csr_dense {dense, sparse_csr, dense -> dense},
           addmm_csr_csr {sparse_csr, sparse_csr, sparse_csr -> sparse_csr},
           addmm_coo_dense {dense, sparse_coo, dense -> dense},
           addmm_coo_coo {sparse_coo, sparse_coo, sparse_coo -> sparse_coo}
    layout : x
  backward: addmm_grad

437
- op: coalesce
Z
zhangkaihuo 已提交
438 439
  args : (Tensor x)
  output : Tensor(out)
Z
zhangkaihuo 已提交
440 441
  infer_meta :
    func : UnchangedInferMeta
Z
zhangkaihuo 已提交
442
  kernel :
Z
zhangkaihuo 已提交
443
    func: coalesce_coo{sparse_coo -> sparse_coo}
Z
zhangkaihuo 已提交
444 445
    layout : x

446
- op: full_like
447 448
  args : (Tensor x, Scalar value, DataType dtype=DataType::UNDEFINED)
  output : Tensor(out)
Z
zhangkaihuo 已提交
449 450 451
  infer_meta :
    func : CreateLikeInferMeta
    param : [x, dtype]
452
  kernel :
Z
zhangkaihuo 已提交
453 454
    func : full_like_coo{sparse_coo -> sparse_coo},
           full_like_csr{sparse_csr -> sparse_csr}
455 456 457
    layout : x
    data_type : dtype

458
- op: fused_attention
459 460
  args : (Tensor query, Tensor key, Tensor value, Tensor sparse_mask, Tensor key_padding_mask, Tensor attn_mask)
  output : Tensor(out), Tensor(softmax)
Z
zhangkaihuo 已提交
461 462
  infer_meta :
    func : sparse::FusedAttentionInferMeta
463 464 465
  kernel :
    func : fused_attention_csr{dense, dense, dense, sparse_csr, dense, dense -> dense, sparse_csr}
    layout : sparse_mask
466 467
    data_type: query
  optional : key_padding_mask, attn_mask
468 469 470
  intermediate : softmax
  backward: fused_attention_grad

471
- op: masked_matmul
472 473
  args : (Tensor x, Tensor y, Tensor mask)
  output : Tensor(out)
Z
zhangkaihuo 已提交
474 475 476
  infer_meta :
    func : MatmulInferMeta
    param : [x, y, false, false]
477
  kernel :
478
    func : masked_matmul_csr{dense, dense, sparse_csr -> sparse_csr}
479 480 481
    layout : x
  backward: masked_matmul_grad

482
- op: matmul
483 484
  args : (Tensor x, Tensor y)
  output : Tensor(out)
Z
zhangkaihuo 已提交
485 486 487
  infer_meta :
    func : MatmulInferMeta
    param: [x, y, false, false]
488
  kernel :
489 490 491 492
    func : matmul_csr_dense {sparse_csr, dense -> dense},
           matmul_csr_csr {sparse_csr, sparse_csr -> sparse_csr},
           matmul_coo_dense {sparse_coo, dense -> dense},
           matmul_coo_coo {sparse_coo, sparse_coo -> sparse_coo}
493 494 495
    layout : x
  backward: matmul_grad

496
- op: maxpool
Z
zhangkaihuo 已提交
497
  args : (Tensor x, int[] kernel_sizes, int[] paddings, int[] dilations, int[] strides)
498
  output : Tensor(out), Tensor(rulebook), Tensor(counter)
Z
zhangkaihuo 已提交
499 500
  infer_meta :
    func : sparse::Pool3dInferMeta
Z
zhangkaihuo 已提交
501
  kernel :
502
    func : maxpool_coo{sparse_coo -> sparse_coo, dense, dense}
Z
zhangkaihuo 已提交
503
    layout : x
504
  intermediate : rulebook, counter
505
  backward : maxpool_grad
506

507
- op: mv
508 509
  args : (Tensor x, Tensor vec)
  output : Tensor(out)
Z
zhangkaihuo 已提交
510 511
  infer_meta :
    func : MvInferMeta
512 513 514 515 516
  kernel :
    func : mv_coo{sparse_coo, dense -> dense},
           mv_csr{sparse_csr, dense -> dense}
    layout : x
  backward: mv_grad