We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43488e2 commit 894bc8eCopy full SHA for 894bc8e
onnxscript/function_libs/torch_lib/ops/core.py
@@ -1348,7 +1348,7 @@ def aten_bitwise_or_scalar(self: TTensor, other: float) -> TTensor:
1348
1349
@torch_op("aten::bitwise_or.Scalar_Tensor", trace_only=True)
1350
def aten_bitwise_or_scalar_tensor(self: float, other: TTensor) -> TTensor:
1351
- """bitwise_or.Scalar_Tensor(Scalar self, Tensor other) -> Tensor"""
+ """bitwise_or.Scalar_Tensor(float self, Tensor other) -> Tensor"""
1352
self_tensor = op.Constant(value=ir.tensor(self, dtype=other.dtype))
1353
return aten_bitwise_or(self_tensor, other)
1354
0 commit comments