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 9351d51 commit b5ca729Copy full SHA for b5ca729
onnxscript/function_libs/torch_lib/ops/core.py
@@ -5056,7 +5056,7 @@ def aten_logical_or(self: TTensor, other: TTensor) -> BOOL:
5056
return op.Or(op.Cast(self, to=BOOL.dtype), op.Cast(other, to=BOOL.dtype))
5057
5058
5059
-@torch_op(("aten::logical_xor"), trace_only=True)
+@torch_op("aten::logical_xor", trace_only=True)
5060
def aten_logical_xor(self: TTensor, other: TTensor) -> BOOL:
5061
"""logical_xor(Tensor self, Tensor other) -> Tensor"""
5062
0 commit comments