File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
onnxscript/function_libs/torch_lib/ops Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -1239,6 +1239,7 @@ def aten_binomial(
1239
1239
"aten::bitwise_and.Tensor" ,
1240
1240
"aten::bitwise_and.Scalar" ,
1241
1241
"aten::bitwise_and.Scalar_Tensor" ,
1242
+ "_operator::and_" ,
1242
1243
),
1243
1244
trace_only = True ,
1244
1245
)
@@ -1354,6 +1355,7 @@ def aten_bitwise_not(self: TTensor) -> TTensor:
1354
1355
"aten::bitwise_or.Tensor" ,
1355
1356
"aten::bitwise_or.Scalar" ,
1356
1357
"aten::bitwise_or.Scalar_Tensor" ,
1358
+ "_operator::or_" ,
1357
1359
),
1358
1360
trace_only = True ,
1359
1361
)
@@ -5051,7 +5053,7 @@ def aten_logical_not(self: TTensor) -> BOOL:
5051
5053
return op .Not (op .Cast (self , to = BOOL .dtype ))
5052
5054
5053
5055
5054
- @torch_op (( "aten::logical_or" ) , trace_only = True )
5056
+ @torch_op ("aten::logical_or" , trace_only = True )
5055
5057
def aten_logical_or (self : TTensor , other : TTensor ) -> BOOL :
5056
5058
"""logical_or(Tensor self, Tensor other) -> Tensor"""
5057
5059
You can’t perform that action at this time.
0 commit comments