From e299926f72e71d08e23c65d00478a23ca91b310a Mon Sep 17 00:00:00 2001 From: Shiva Kaul Date: Fri, 15 Aug 2025 14:34:42 +0000 Subject: [PATCH] [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 --- torch/onnx/ops/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torch/onnx/ops/__init__.py b/torch/onnx/ops/__init__.py index c0c87d5ccaad..d10ba1ac7a3c 100644 --- a/torch/onnx/ops/__init__.py +++ b/torch/onnx/ops/__init__.py @@ -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"),