Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
justinchuby committed Jul 23, 2024
1 parent 85c572a commit d46cb2d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions onnxscript/function_libs/torch_lib/ops/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -1226,7 +1226,7 @@ def aten_bitwise_and(self: TInt, other: TInt) -> TInt:
"aten::bitwise_left_shift.Tensor",
"aten::bitwise_left_shift.Tensor_Scalar",
"aten::bitwise_left_shift.Scalar_Tensor",
"_operator::__lshift__"
"_operator::__lshift__",
),
traceable=True,
)
Expand All @@ -1246,7 +1246,7 @@ def aten_bitwise_left_shift_int16(self: INT16, other: INT16) -> INT16:
"aten::bitwise_left_shift.Tensor",
"aten::bitwise_left_shift.Tensor_Scalar",
"aten::bitwise_left_shift.Scalar_Tensor",
"_operator::__lshift__"
"_operator::__lshift__",
),
traceable=True,
)
Expand All @@ -1266,7 +1266,7 @@ def aten_bitwise_left_shift_int32(self: INT32, other: INT32) -> INT32:
"aten::bitwise_left_shift.Tensor",
"aten::bitwise_left_shift.Tensor_Scalar",
"aten::bitwise_left_shift.Scalar_Tensor",
"_operator::__lshift__"
"_operator::__lshift__",
),
traceable=True,
)
Expand All @@ -1286,7 +1286,7 @@ def aten_bitwise_left_shift_int64(self: INT64, other: INT64) -> INT64:
"aten::bitwise_left_shift.Tensor",
"aten::bitwise_left_shift.Tensor_Scalar",
"aten::bitwise_left_shift.Scalar_Tensor",
"_operator::__lshift__"
"_operator::__lshift__",
),
traceable=True,
)
Expand Down Expand Up @@ -1330,7 +1330,7 @@ def aten_bitwise_or(self: TInt, other: TInt) -> TInt:
"aten::bitwise_right_shift.Tensor",
"aten::bitwise_right_shift.Tensor_Scalar",
"aten::bitwise_right_shift.Scalar_Tensor",
"_operator::__rshift__"
"_operator::__rshift__",
)
)
def aten_bitwise_right_shift_int16(self: INT16, other: INT16) -> INT16:
Expand Down Expand Up @@ -1360,7 +1360,7 @@ def aten_bitwise_right_shift_int16(self: INT16, other: INT16) -> INT16:
"aten::bitwise_right_shift.Tensor",
"aten::bitwise_right_shift.Tensor_Scalar",
"aten::bitwise_right_shift.Scalar_Tensor",
"_operator::__rshift__"
"_operator::__rshift__",
)
)
def aten_bitwise_right_shift_int32(self: INT32, other: INT32) -> INT32:
Expand Down Expand Up @@ -1390,7 +1390,7 @@ def aten_bitwise_right_shift_int32(self: INT32, other: INT32) -> INT32:
"aten::bitwise_right_shift.Tensor",
"aten::bitwise_right_shift.Tensor_Scalar",
"aten::bitwise_right_shift.Scalar_Tensor",
"_operator::__rshift__"
"_operator::__rshift__",
)
)
def aten_bitwise_right_shift_int64(self: INT64, other: INT64) -> INT64:
Expand Down Expand Up @@ -1423,7 +1423,7 @@ def aten_bitwise_right_shift_int64(self: INT64, other: INT64) -> INT64:
"aten::bitwise_right_shift.Tensor",
"aten::bitwise_right_shift.Tensor_Scalar",
"aten::bitwise_right_shift.Scalar_Tensor",
"_operator::__rshift__"
"_operator::__rshift__",
)
)
def aten_bitwise_right_shift_int8(self: INT8, other: INT8) -> INT8:
Expand Down

0 comments on commit d46cb2d

Please sign in to comment.