mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 00:21:07 +01:00
Summary: old: prim::PythonOp(...) -> new: prim::PythonOp(...) -> ... Pull Request resolved: https://github.com/pytorch/pytorch/pull/23204 ghstack-source-id: 87208343 Reviewed By: zrphercule Differential Revision: D16433592 fbshipit-source-id: 36cbb329188f112e09c3b1708a8090781b830dfe
9 lines
724 B
Plaintext
9 lines
724 B
Plaintext
foo(ClassType<TestModule> self, Tensor x, (Tensor, Tensor) y) -> ((Tensor, Tensor))
|
|
foo(ClassType<TestModule> self, Tensor x, (Tensor, Tensor) y) -> ((Tensor, Tensor))
|
|
foo(ClassType<TestModule> self, str x, (Tensor, Tensor) y) -> ((str, str))
|
|
foo(ClassType<TestModule> self, int x, (Tensor, Tensor) y) -> ((int, int))
|
|
foo(ClassType<TestModule> self, bool x, (Tensor, Tensor) y) -> ((bool, bool))
|
|
foo(ClassType<TestModule> self, float[3] x, (Tensor, Tensor) y) -> ((float[], float[]))
|
|
foo(ClassType<TestModule> self, int[2] x, (Tensor, Tensor) y) -> ((int[], int[]))
|
|
foo(ClassType<TestModule> self, int[] x, (Tensor, Tensor) y) -> ((int[], int[]))
|
|
foo(ClassType<TestModule> self, int? x, (Tensor, Tensor) y) -> ((int?, int?)) |