sparse_ops.yaml 13.3 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 91 92 93 94 95 96 97
- op : batch_norm
  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)
  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
- op : scale
228 229
  args : (Tensor x, float scale, float bias, bool bias_after_scale)
  output : Tensor(out)
Z
zhangkaihuo 已提交
230 231 232
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
233 234 235 236 237
  kernel :
    func : scale_coo{sparse_coo -> sparse_coo},
           scale_csr{sparse_csr -> sparse_csr}
  backward : scale_grad

238
- op : sin
239
  args : (Tensor x)
240
  output : Tensor(out)
Z
zhangkaihuo 已提交
241 242
  infer_meta :
    func : UnchangedInferMeta
243
  kernel :
244 245
    func : sin_coo{sparse_coo -> sparse_coo},
           sin_csr{sparse_csr -> sparse_csr}
246
    layout : x
247
  backward : sin_grad
248

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

260
- op : softmax
261 262
  args : (Tensor x, int axis=-1)
  output : Tensor(out)
Z
zhangkaihuo 已提交
263 264 265
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
266 267 268 269 270
  kernel :
    func : softmax_csr{sparse_csr -> sparse_csr}
    layout : x
  backward : softmax_grad

271
- op : sparse_coo_tensor
272 273
  args : (Tensor values, Tensor indices, IntArray dense_shape)
  output : Tensor(out)
Z
zhangkaihuo 已提交
274 275
  infer_meta :
    func : sparse::SparseCooTensorInferMeta
276 277 278 279 280 281
  kernel :
    func : sparse_coo_tensor{dense, dense -> sparse_coo}
    layout : values
    data_type : values
  backward : sparse_coo_tensor_grad

282
- op : sqrt
283
  args : (Tensor x)
284
  output : Tensor(out)
Z
zhangkaihuo 已提交
285 286
  infer_meta :
    func : UnchangedInferMeta
287
  kernel :
288 289
    func : sqrt_coo{sparse_coo -> sparse_coo},
           sqrt_csr{sparse_csr -> sparse_csr}
290
    layout : x
291
  backward : sqrt_grad
292

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

304
- op : subtract
305 306
  args : (Tensor x, Tensor y)
  output : Tensor(out)
Z
zhangkaihuo 已提交
307 308
  infer_meta :
    func : ElementwiseInferMeta
309
  kernel :
310 311
    func : subtract_coo_coo{sparse_coo, sparse_coo -> sparse_coo},
           subtract_csr_csr{sparse_csr, sparse_csr -> sparse_csr}
312 313 314
    layout : x
  backward : subtract_grad

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

326
- op : tanh
327
  args : (Tensor x)
328
  output : Tensor(out)
Z
zhangkaihuo 已提交
329 330
  infer_meta :
    func : UnchangedInferMeta
331
  kernel :
332 333
    func : tanh_coo{sparse_coo -> sparse_coo},
           tanh_csr{sparse_csr -> sparse_csr}
334
    layout : x
335
  backward : tanh_grad
336

337
- op : to_dense
338
  args : (Tensor x)
339
  output : Tensor(out)
Z
zhangkaihuo 已提交
340 341
  infer_meta :
    func : UnchangedInferMeta
342 343 344 345
  kernel :
    func : coo_to_dense {sparse_coo -> dense},
           csr_to_dense {sparse_csr -> dense}
  backward : to_dense_grad
346

347
- op : to_sparse_coo
348
  args : (Tensor x, int64_t sparse_dim)
349
  output : Tensor(out)
Z
zhangkaihuo 已提交
350 351 352
  infer_meta :
    func : UnchangedInferMeta
    param : [x]
353 354 355 356
  kernel :
    func : dense_to_coo { dense -> sparse_coo },
           csr_to_coo { sparse_csr -> sparse_coo}
  backward : to_sparse_coo_grad
357

358
- op : to_sparse_csr
359
  args : (Tensor x)
360
  output : Tensor(out)
Z
zhangkaihuo 已提交
361 362
  infer_meta :
    func : UnchangedInferMeta
363 364 365
  kernel :
    func : dense_to_csr {dense -> sparse_csr},
           coo_to_csr {sparse_coo -> sparse_csr}
Z
zhangkaihuo 已提交
366

367
- op : values
368 369
  args : (Tensor x)
  output : Tensor(out)
Z
zhangkaihuo 已提交
370 371
  infer_meta :
    func : sparse::ValuesInferMeta
372
  kernel :
373 374
    func : values_coo{sparse_coo -> dense},
           values_csr{sparse_csr -> dense}
375 376 377
    layout : x
  backward : values_grad

378
- op: addmm
379 380
  args : (Tensor input, Tensor x, Tensor y, float alpha=1.0, float beta=1.0)
  output : Tensor(out)
Z
zhangkaihuo 已提交
381
  infer_meta :
Z
zhangkaihuo 已提交
382 383
    func : UnchangedInferMeta
    param : [input]
384 385 386 387 388 389 390 391
  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

392
- op: coalesce
Z
zhangkaihuo 已提交
393 394
  args : (Tensor x)
  output : Tensor(out)
Z
zhangkaihuo 已提交
395 396
  infer_meta :
    func : UnchangedInferMeta
Z
zhangkaihuo 已提交
397
  kernel :
Z
zhangkaihuo 已提交
398
    func: coalesce_coo{sparse_coo -> sparse_coo}
Z
zhangkaihuo 已提交
399 400
    layout : x

401
- op: full_like
402 403
  args : (Tensor x, Scalar value, DataType dtype=DataType::UNDEFINED)
  output : Tensor(out)
Z
zhangkaihuo 已提交
404 405 406
  infer_meta :
    func : CreateLikeInferMeta
    param : [x, dtype]
407
  kernel :
Z
zhangkaihuo 已提交
408 409
    func : full_like_coo{sparse_coo -> sparse_coo},
           full_like_csr{sparse_csr -> sparse_csr}
410 411 412
    layout : x
    data_type : dtype

413
- op: fused_attention
414 415
  args : (Tensor query, Tensor key, Tensor value, Tensor sparse_mask, Tensor key_padding_mask, Tensor attn_mask)
  output : Tensor(out), Tensor(softmax)
Z
zhangkaihuo 已提交
416 417
  infer_meta :
    func : sparse::FusedAttentionInferMeta
418 419 420
  kernel :
    func : fused_attention_csr{dense, dense, dense, sparse_csr, dense, dense -> dense, sparse_csr}
    layout : sparse_mask
421 422
    data_type: query
  optional : key_padding_mask, attn_mask
423 424 425
  intermediate : softmax
  backward: fused_attention_grad

426
- op: masked_matmul
427 428
  args : (Tensor x, Tensor y, Tensor mask)
  output : Tensor(out)
Z
zhangkaihuo 已提交
429 430 431
  infer_meta :
    func : MatmulInferMeta
    param : [x, y, false, false]
432
  kernel :
433
    func : masked_matmul_csr{dense, dense, sparse_csr -> sparse_csr}
434 435 436
    layout : x
  backward: masked_matmul_grad

437
- op: matmul
438 439
  args : (Tensor x, Tensor y)
  output : Tensor(out)
Z
zhangkaihuo 已提交
440 441 442
  infer_meta :
    func : MatmulInferMeta
    param: [x, y, false, false]
443
  kernel :
444 445 446 447
    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}
448 449 450
    layout : x
  backward: matmul_grad

451
- op: maxpool
Z
zhangkaihuo 已提交
452
  args : (Tensor x, int[] kernel_sizes, int[] paddings, int[] dilations, int[] strides)
453
  output : Tensor(out), Tensor(rulebook), Tensor(counter)
Z
zhangkaihuo 已提交
454 455
  infer_meta :
    func : sparse::Pool3dInferMeta
Z
zhangkaihuo 已提交
456
  kernel :
457
    func : maxpool_coo{sparse_coo -> sparse_coo, dense, dense}
Z
zhangkaihuo 已提交
458
    layout : x
459
  intermediate : rulebook, counter
460
  backward : maxpool_grad
461

462
- op: mv
463 464
  args : (Tensor x, Tensor vec)
  output : Tensor(out)
Z
zhangkaihuo 已提交
465 466
  infer_meta :
    func : MvInferMeta
467 468 469 470 471
  kernel :
    func : mv_coo{sparse_coo, dense -> dense},
           mv_csr{sparse_csr, dense -> dense}
    layout : x
  backward: mv_grad
472 473 474 475 476 477 478 479 480 481 482 483

- 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
Z
zhangkaihuo 已提交
484

Z
zhangkaihuo 已提交
485
- op : sync_batch_norm_
Z
zhangkaihuo 已提交
486 487 488 489 490 491 492 493
  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)
  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
Z
zhangkaihuo 已提交
494
  inplace : (mean -> mean_out), (variance -> variance_out)
495 496 497 498 499 500 501 502 503 504 505

- 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