sparse_ops.yaml 13.2 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
Z
zhangkaihuo 已提交
98
  view : (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
- op : leaky_relu
159 160
  args : (Tensor x, float alpha)
  output : Tensor(out)
Z
zhangkaihuo 已提交
161 162 163
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
164 165 166 167 168 169
  kernel :
    func : leaky_relu_coo{sparse_coo -> sparse_coo},
           leaky_relu_csr{sparse_csr -> sparse_csr}
    layout : x
  backward : leaky_relu_grad

170
- op : log1p
171 172
  args : (Tensor x)
  output : Tensor(out)
Z
zhangkaihuo 已提交
173 174
  infer_meta :
    func : UnchangedInferMeta
175 176 177 178 179 180
  kernel :
    func : log1p_coo{sparse_coo -> sparse_coo},
           log1p_csr{sparse_csr -> sparse_csr}
    layout : x
  backward : log1p_grad

181
- op : multiply
182 183
  args : (Tensor x, Tensor y)
  output : Tensor(out)
Z
zhangkaihuo 已提交
184 185
  infer_meta :
    func : ElementwiseInferMeta
186
  kernel :
187 188
    func : multiply_coo_coo{sparse_coo, sparse_coo -> sparse_coo},
           multiply_csr_csr{sparse_csr, sparse_csr -> sparse_csr}
189 190 191
    layout : x
  backward : multiply_grad

192
- op : pow
193 194
  args : (Tensor x, float factor)
  output : Tensor(out)
Z
zhangkaihuo 已提交
195 196 197
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
198 199 200 201 202 203
  kernel :
    func : pow_coo{sparse_coo -> sparse_coo},
           pow_csr{sparse_csr -> sparse_csr}
    layout : x
  backward : pow_grad

204
- op : relu
205
  args : (Tensor x)
206
  output : Tensor(out)
Z
zhangkaihuo 已提交
207 208
  infer_meta :
    func : UnchangedInferMeta
209
  kernel :
210 211
    func : relu_coo{sparse_coo -> sparse_coo},
           relu_csr{sparse_csr -> sparse_csr}
212
    layout : x
213
  backward : relu_grad
214

215
- op : relu6
216 217
  args : (Tensor x, float threshold)
  output : Tensor(out)
Z
zhangkaihuo 已提交
218 219 220
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
221 222 223 224 225 226
  kernel :
    func : relu6_coo{sparse_coo -> sparse_coo},
           relu6_csr{sparse_csr -> sparse_csr}
    layout : x
  backward : relu6_grad

227 228 229 230 231 232 233 234 235 236 237
- 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

238
- op : scale
239 240
  args : (Tensor x, float scale, float bias, bool bias_after_scale)
  output : Tensor(out)
Z
zhangkaihuo 已提交
241 242 243
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
244 245 246 247 248
  kernel :
    func : scale_coo{sparse_coo -> sparse_coo},
           scale_csr{sparse_csr -> sparse_csr}
  backward : scale_grad

249
- op : sin
250
  args : (Tensor x)
251
  output : Tensor(out)
Z
zhangkaihuo 已提交
252 253
  infer_meta :
    func : UnchangedInferMeta
254
  kernel :
255 256
    func : sin_coo{sparse_coo -> sparse_coo},
           sin_csr{sparse_csr -> sparse_csr}
257
    layout : x
258
  backward : sin_grad
259

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

271
- op : softmax
272 273
  args : (Tensor x, int axis=-1)
  output : Tensor(out)
Z
zhangkaihuo 已提交
274 275 276
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
277 278 279 280 281
  kernel :
    func : softmax_csr{sparse_csr -> sparse_csr}
    layout : x
  backward : softmax_grad

282
- op : sparse_coo_tensor
283 284
  args : (Tensor values, Tensor indices, IntArray dense_shape)
  output : Tensor(out)
Z
zhangkaihuo 已提交
285 286
  infer_meta :
    func : sparse::SparseCooTensorInferMeta
287 288 289 290 291 292
  kernel :
    func : sparse_coo_tensor{dense, dense -> sparse_coo}
    layout : values
    data_type : values
  backward : sparse_coo_tensor_grad

293
- op : sqrt
294
  args : (Tensor x)
295
  output : Tensor(out)
Z
zhangkaihuo 已提交
296 297
  infer_meta :
    func : UnchangedInferMeta
298
  kernel :
299 300
    func : sqrt_coo{sparse_coo -> sparse_coo},
           sqrt_csr{sparse_csr -> sparse_csr}
301
    layout : x
302
  backward : sqrt_grad
303

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

315
- op : subtract
316 317
  args : (Tensor x, Tensor y)
  output : Tensor(out)
Z
zhangkaihuo 已提交
318 319
  infer_meta :
    func : ElementwiseInferMeta
320
  kernel :
321 322
    func : subtract_coo_coo{sparse_coo, sparse_coo -> sparse_coo},
           subtract_csr_csr{sparse_csr, sparse_csr -> sparse_csr}
323 324 325
    layout : x
  backward : subtract_grad

326
- op : sync_batch_norm_
327
  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)
328 329 330 331 332 333 334 335 336
  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)

337
- op : tan
338 339
  args : (Tensor x)
  output : Tensor(out)
Z
zhangkaihuo 已提交
340 341
  infer_meta :
    func : UnchangedInferMeta
342 343 344 345 346 347
  kernel :
    func : tan_coo{sparse_coo -> sparse_coo},
           tan_csr{sparse_csr -> sparse_csr}
    layout : x
  backward : tan_grad

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

359
- op : to_dense
360
  args : (Tensor x)
361
  output : Tensor(out)
Z
zhangkaihuo 已提交
362 363
  infer_meta :
    func : UnchangedInferMeta
364 365 366 367
  kernel :
    func : coo_to_dense {sparse_coo -> dense},
           csr_to_dense {sparse_csr -> dense}
  backward : to_dense_grad
368

369
- op : to_sparse_coo
370
  args : (Tensor x, int64_t sparse_dim)
371
  output : Tensor(out)
Z
zhangkaihuo 已提交
372 373 374
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
375 376 377 378
  kernel :
    func : dense_to_coo { dense -> sparse_coo },
           csr_to_coo { sparse_csr -> sparse_coo}
  backward : to_sparse_coo_grad
379

380
- op : to_sparse_csr
381
  args : (Tensor x)
382
  output : Tensor(out)
Z
zhangkaihuo 已提交
383 384
  infer_meta :
    func : UnchangedInferMeta
385 386 387
  kernel :
    func : dense_to_csr {dense -> sparse_csr},
           coo_to_csr {sparse_coo -> sparse_csr}
Z
zhangkaihuo 已提交
388

389 390 391 392 393 394 395 396 397 398 399 400
- 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

401
- op : values
402 403
  args : (Tensor x)
  output : Tensor(out)
Z
zhangkaihuo 已提交
404 405
  infer_meta :
    func : sparse::ValuesInferMeta
406
  kernel :
407 408
    func : values_coo{sparse_coo -> dense},
           values_csr{sparse_csr -> dense}
409 410 411
    layout : x
  backward : values_grad

412
- op: addmm
413
  args : (Tensor input, Tensor x, Tensor y, float beta=1.0, float alpha=1.0)
414
  output : Tensor(out)
Z
zhangkaihuo 已提交
415
  infer_meta :
Z
zhangkaihuo 已提交
416 417
    func : UnchangedInferMeta
    param : [input]
418 419 420 421 422 423 424 425
  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

426
- op: coalesce
Z
zhangkaihuo 已提交
427 428
  args : (Tensor x)
  output : Tensor(out)
Z
zhangkaihuo 已提交
429 430
  infer_meta :
    func : UnchangedInferMeta
Z
zhangkaihuo 已提交
431
  kernel :
Z
zhangkaihuo 已提交
432
    func: coalesce_coo{sparse_coo -> sparse_coo}
Z
zhangkaihuo 已提交
433 434
    layout : x

435
- op: full_like
436 437
  args : (Tensor x, Scalar value, DataType dtype=DataType::UNDEFINED)
  output : Tensor(out)
Z
zhangkaihuo 已提交
438 439 440
  infer_meta :
    func : CreateLikeInferMeta
    param : [x, dtype]
441
  kernel :
Z
zhangkaihuo 已提交
442 443
    func : full_like_coo{sparse_coo -> sparse_coo},
           full_like_csr{sparse_csr -> sparse_csr}
444 445 446
    layout : x
    data_type : dtype

447
- op: fused_attention
448 449
  args : (Tensor query, Tensor key, Tensor value, Tensor sparse_mask, Tensor key_padding_mask, Tensor attn_mask)
  output : Tensor(out), Tensor(softmax)
Z
zhangkaihuo 已提交
450 451
  infer_meta :
    func : sparse::FusedAttentionInferMeta
452 453 454
  kernel :
    func : fused_attention_csr{dense, dense, dense, sparse_csr, dense, dense -> dense, sparse_csr}
    layout : sparse_mask
455 456
    data_type: query
  optional : key_padding_mask, attn_mask
457 458 459
  intermediate : softmax
  backward: fused_attention_grad

460
- op: masked_matmul
461 462
  args : (Tensor x, Tensor y, Tensor mask)
  output : Tensor(out)
Z
zhangkaihuo 已提交
463 464 465
  infer_meta :
    func : MatmulInferMeta
    param : [x, y, false, false]
466
  kernel :
467
    func : masked_matmul_csr{dense, dense, sparse_csr -> sparse_csr}
468 469 470
    layout : x
  backward: masked_matmul_grad

471
- op: matmul
472 473
  args : (Tensor x, Tensor y)
  output : Tensor(out)
Z
zhangkaihuo 已提交
474 475 476
  infer_meta :
    func : MatmulInferMeta
    param: [x, y, false, false]
477
  kernel :
478 479 480 481
    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}
482 483 484
    layout : x
  backward: matmul_grad

485
- op: maxpool
Z
zhangkaihuo 已提交
486
  args : (Tensor x, int[] kernel_sizes, int[] paddings, int[] dilations, int[] strides)
487
  output : Tensor(out), Tensor(rulebook), Tensor(counter)
Z
zhangkaihuo 已提交
488 489
  infer_meta :
    func : sparse::Pool3dInferMeta
Z
zhangkaihuo 已提交
490
  kernel :
491
    func : maxpool_coo{sparse_coo -> sparse_coo, dense, dense}
Z
zhangkaihuo 已提交
492
    layout : x
493
  intermediate : rulebook, counter
494
  backward : maxpool_grad
495

496
- op: mv
497 498
  args : (Tensor x, Tensor vec)
  output : Tensor(out)
Z
zhangkaihuo 已提交
499 500
  infer_meta :
    func : MvInferMeta
501 502 503 504 505
  kernel :
    func : mv_coo{sparse_coo, dense -> dense},
           mv_csr{sparse_csr, dense -> dense}
    layout : x
  backward: mv_grad