@@ -35,6 +35,7 @@ Operators Currently Supported Through Converters
35
35
- aten::div.Tensor(Tensor self, Tensor other) -> (Tensor)
36
36
- aten::div_.Scalar(Tensor(a!) self, Scalar other) -> (Tensor(a!))
37
37
- aten::div_.Tensor(Tensor(a!) self, Tensor other) -> (Tensor(a!))
38
+ - aten::elu(Tensor self, Scalar alpha=1, Scalar scale=1, Scalar input_scale=1) -> (Tensor)
38
39
- aten::embedding(Tensor weight, Tensor indices, int padding_idx=-1, bool scale_grad_by_freq=False, bool sparse=False) -> (Tensor)
39
40
- aten::eq.Scalar(Tensor self, Scalar other) -> (Tensor)
40
41
- aten::eq.Tensor(Tensor self, Tensor other) -> (Tensor)
@@ -71,6 +72,7 @@ Operators Currently Supported Through Converters
71
72
- aten::mean.dim(Tensor self, int[] dim, bool keepdim=False, *, int? dtype=None) -> (Tensor)
72
73
- aten::min(Tensor self) -> (Tensor)
73
74
- aten::min.other(Tensor self, Tensor other) -> (Tensor)
75
+ - aten::mul.Scalar(Tensor self, Scalar other) -> (Tensor)
74
76
- aten::mul.Tensor(Tensor self, Tensor other) -> (Tensor)
75
77
- aten::mul_.Tensor(Tensor(a!) self, Tensor other) -> (Tensor(a!))
76
78
- aten::narrow(Tensor(a) self, int dim, int start, int length) -> (Tensor(a))
@@ -112,6 +114,7 @@ Operators Currently Supported Through Converters
112
114
- aten::tanh(Tensor input) -> (Tensor)
113
115
- aten::tanh_(Tensor(a!) self) -> (Tensor(a!))
114
116
- aten::topk(Tensor self, int k, int dim=-1, bool largest=True, bool sorted=True) -> (Tensor values, Tensor indices)
117
+ - aten::transpose.int(Tensor(a) self, int dim0, int dim1) -> (Tensor(a))
115
118
- aten::unsqueeze(Tensor(a) self, int dim) -> (Tensor(a))
116
119
- aten::upsample_bilinear2d(Tensor self, int[2] output_size, bool align_corners, float? scales_h=None, float? scales_w=None) -> (Tensor)
117
120
- aten::upsample_bilinear2d.vec(Tensor input, int[]? output_size, bool align_corners, float[]? scale_factors) -> (Tensor)
0 commit comments