Skip to content

Commit 894bc8e

Browse files
justinchubyCopilot
andauthored
Update onnxscript/function_libs/torch_lib/ops/core.py
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 43488e2 commit 894bc8e

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
@@ -1348,7 +1348,7 @@ def aten_bitwise_or_scalar(self: TTensor, other: float) -> TTensor:
13481348

13491349
@torch_op("aten::bitwise_or.Scalar_Tensor", trace_only=True)
13501350
def aten_bitwise_or_scalar_tensor(self: float, other: TTensor) -> TTensor:
1351-
"""bitwise_or.Scalar_Tensor(Scalar self, Tensor other) -> Tensor"""
1351+
"""bitwise_or.Scalar_Tensor(float self, Tensor other) -> Tensor"""
13521352
self_tensor = op.Constant(value=ir.tensor(self, dtype=other.dtype))
13531353
return aten_bitwise_or(self_tensor, other)
13541354

0 commit comments

Comments
 (0)