File tree 1 file changed +2
-2
lines changed
onnxscript/function_libs/torch_aten/ops 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1984,7 +1984,7 @@ def aten_gcd(self: TensorType, other: TensorType) -> TensorType:
1984
1984
def aten_ge (self : TReal , other : TReal ) -> BOOL :
1985
1985
# ge.Tensor(Tensor self, Tensor other) -> Tensor
1986
1986
1987
- return op .Greater (self , other )
1987
+ return op .GreaterOrEqual (self , other )
1988
1988
1989
1989
1990
1990
def aten_geqrf (self : TensorType ) -> tuple [TensorType , TensorType ]:
@@ -2542,7 +2542,7 @@ def aten_ldexp(self: TensorType, other: TensorType) -> TensorType:
2542
2542
def aten_le (self : TReal , other : TReal ) -> BOOL :
2543
2543
# le.Tensor(Tensor self, Tensor other) -> Tensor
2544
2544
2545
- return op .Less (self , other )
2545
+ return op .LessOrEqual (self , other )
2546
2546
2547
2547
2548
2548
def aten_lerp (self : TensorType , end : TensorType , weight : TensorType ) -> TensorType :
You can’t perform that action at this time.
0 commit comments