Skip to content

Commit 43488e2

Browse files
justinchubyCopilot
andauthored
Update onnxscript/function_libs/torch_lib/ops/core.py
Co-authored-by: Copilot <[email protected]>
1 parent 56c823c commit 43488e2

File tree

1 file changed

+1
-1
lines changed
  • onnxscript/function_libs/torch_lib/ops

1 file changed

+1
-1
lines changed

onnxscript/function_libs/torch_lib/ops/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1248,7 +1248,7 @@ def aten_bitwise_and_scalar(self: TTensor, other: float) -> TTensor:
12481248

12491249
@torch_op("aten::bitwise_and.Scalar_Tensor", trace_only=True)
12501250
def aten_bitwise_and_scalar_tensor(self: float, other: TTensor) -> TTensor:
1251-
"""bitwise_and.Tensor(Tensor self, Tensor other) -> Tensor"""
1251+
"""bitwise_and.Scalar_Tensor(float self, Tensor other) -> Tensor"""
12521252

12531253
self_tensor = op.Constant(value=ir.tensor(self, dtype=other.dtype))
12541254
return aten_bitwise_and(self_tensor, other)

0 commit comments

Comments
 (0)