(self, x, y)
| 23 | super().__init__() |
| 24 | |
| 25 | def forward(self, x, y): |
| 26 | y = torch.cat([x, y]) |
| 27 | return y |
| 28 | |
| 29 | # Symbolically trace an instance of `M` |
| 30 | traced = symbolic_trace(M()) |
nothing calls this directly
no outgoing calls
no test coverage detected