@@ -35,6 +35,7 @@ Operators Currently Supported Through Converters
3535- aten::div.Tensor(Tensor self, Tensor other) -> (Tensor)
3636- aten::div_.Scalar(Tensor(a!) self, Scalar other) -> (Tensor(a!))
3737- 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)
3839- aten::embedding(Tensor weight, Tensor indices, int padding_idx=-1, bool scale_grad_by_freq=False, bool sparse=False) -> (Tensor)
3940- aten::eq.Scalar(Tensor self, Scalar other) -> (Tensor)
4041- aten::eq.Tensor(Tensor self, Tensor other) -> (Tensor)
@@ -71,6 +72,7 @@ Operators Currently Supported Through Converters
7172- aten::mean.dim(Tensor self, int[] dim, bool keepdim=False, *, int? dtype=None) -> (Tensor)
7273- aten::min(Tensor self) -> (Tensor)
7374- aten::min.other(Tensor self, Tensor other) -> (Tensor)
75+ - aten::mul.Scalar(Tensor self, Scalar other) -> (Tensor)
7476- aten::mul.Tensor(Tensor self, Tensor other) -> (Tensor)
7577- aten::mul_.Tensor(Tensor(a!) self, Tensor other) -> (Tensor(a!))
7678- aten::narrow(Tensor(a) self, int dim, int start, int length) -> (Tensor(a))
@@ -112,6 +114,7 @@ Operators Currently Supported Through Converters
112114- aten::tanh(Tensor input) -> (Tensor)
113115- aten::tanh_(Tensor(a!) self) -> (Tensor(a!))
114116- 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))
115118- aten::unsqueeze(Tensor(a) self, int dim) -> (Tensor(a))
116119- aten::upsample_bilinear2d(Tensor self, int[2] output_size, bool align_corners, float? scales_h=None, float? scales_w=None) -> (Tensor)
117120- aten::upsample_bilinear2d.vec(Tensor input, int[]? output_size, bool align_corners, float[]? scale_factors) -> (Tensor)
0 commit comments