We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56c823c commit 43488e2Copy full SHA for 43488e2
onnxscript/function_libs/torch_lib/ops/core.py
@@ -1248,7 +1248,7 @@ def aten_bitwise_and_scalar(self: TTensor, other: float) -> TTensor:
1248
1249
@torch_op("aten::bitwise_and.Scalar_Tensor", trace_only=True)
1250
def aten_bitwise_and_scalar_tensor(self: float, other: TTensor) -> TTensor:
1251
- """bitwise_and.Tensor(Tensor self, Tensor other) -> Tensor"""
+ """bitwise_and.Scalar_Tensor(float self, Tensor other) -> Tensor"""
1252
1253
self_tensor = op.Constant(value=ir.tensor(self, dtype=other.dtype))
1254
return aten_bitwise_and(self_tensor, other)
0 commit comments