2019-06-16 21:24:02 +00:00
|
|
|
foo(ClassType<TestModule> self, Tensor x, (Tensor, Tensor) y) -> (Tensor, Tensor)
|
|
|
|
|
foo(ClassType<TestModule> self, Tensor x, (Tensor, Tensor) y) -> (Tensor, Tensor)
|
2019-07-25 18:22:22 +00:00
|
|
|
foo(ClassType<TestModule> self, str x, (Tensor, Tensor) y) -> (str, str)
|
2019-06-16 21:24:02 +00:00
|
|
|
foo(ClassType<TestModule> self, int x, (Tensor, Tensor) y) -> (int, int)
|
|
|
|
|
foo(ClassType<TestModule> self, bool x, (Tensor, Tensor) y) -> (bool, bool)
|
2019-07-25 22:13:37 +00:00
|
|
|
foo(ClassType<TestModule> self, float[3] x, (Tensor, Tensor) y) -> (float[], float[])
|
|
|
|
|
foo(ClassType<TestModule> self, int[2] x, (Tensor, Tensor) y) -> (int[], int[])
|
2019-06-16 21:24:02 +00:00
|
|
|
foo(ClassType<TestModule> self, int[] x, (Tensor, Tensor) y) -> (int[], int[])
|
|
|
|
|
foo(ClassType<TestModule> self, int? x, (Tensor, Tensor) y) -> (int?, int?)
|