mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +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
536 B
Plaintext
10 lines
536 B
Plaintext
foo( self, Tensor x, (Tensor, Tensor) y) -> ((Tensor, Tensor))
|
|
foo( self, Tensor x, (Tensor, Tensor) y) -> ((Tensor, Tensor))
|
|
foo( self, str x, (Tensor, Tensor) y) -> ((str, str))
|
|
foo( self, int x, (Tensor, Tensor) y) -> ((int, int))
|
|
foo( self, bool x, (Tensor, Tensor) y) -> ((bool, bool))
|
|
foo( self, float[3] x, (Tensor, Tensor) y) -> ((float[], float[]))
|
|
foo( self, int[2] x, (Tensor, Tensor) y) -> ((int[], int[]))
|
|
foo( self, int[] x, (Tensor, Tensor) y) -> ((int[], int[]))
|
|
foo( self, int? x, (Tensor, Tensor) y) -> ((int?, int?))
|