mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-21 05:34:18 +08:00
Summary: This PR is created to replace https://github.com/pytorch/pytorch/pull/53180 PR stack, which has all the review discussions. Reason for needing a replacement is due to a messy Sandcastle issue. Pull Request resolved: https://github.com/pytorch/pytorch/pull/64234 Reviewed By: gmagogsfm Differential Revision: D30656444 Pulled By: ansley fbshipit-source-id: 77536c8bcc88162e2c72636026ca3c16891d669a
10 lines
473 B
Plaintext
10 lines
473 B
Plaintext
foo(Tensor x, (Tensor, Tensor) y) -> ((Tensor, Tensor))
|
|
foo(Tensor x, (Tensor, Tensor) y) -> ((Tensor, Tensor))
|
|
foo(str x, (Tensor, Tensor) y) -> ((str, str))
|
|
foo(int x, (Tensor, Tensor) y) -> ((int, int))
|
|
foo(bool x, (Tensor, Tensor) y) -> ((bool, bool))
|
|
foo(float[3] x, (Tensor, Tensor) y) -> ((float[], float[]))
|
|
foo(int[2] x, (Tensor, Tensor) y) -> ((int[], int[]))
|
|
foo(int[] x, (Tensor, Tensor) y) -> ((int[], int[]))
|
|
foo(int? x, (Tensor, Tensor) y) -> ((int?, int?))
|