[ONNX] Fix doc typo for symbolic_multi_out (#160702)

Pull Request resolved: https://github.com/pytorch/pytorch/pull/160702
Approved by: https://github.com/justinchuby
This commit is contained in:
Shiva Kaul
2025-08-15 14:34:42 +00:00
committed by PyTorch MergeBot
parent bbd11c4f23
commit e299926f72

View File

@ -208,7 +208,7 @@ def symbolic_multi_out(
# Create a symbolic ONNX operator with the name "CustomOp" in the "custom_domain" domain.
# The output tensors will have the specified dtypes and shapes
(out1, out2) = torch.onnx.ops.symbolic(
(out1, out2) = torch.onnx.ops.symbolic_multi_out(
"custom_domain::CustomOp",
(x,),
dict(attr_key="attr_value"),