(self, x, y)
| 31 | # Sample module |
| 32 | class M(torch.nn.Module): |
| 33 | def forward(self, x, y): |
| 34 | return x + y, torch.add(x, y), x.add(y) |
| 35 | |
| 36 | # Symbolically trace an instance of the module |
| 37 | traced = symbolic_trace(M()) |
nothing calls this directly
no outgoing calls
no test coverage detected