(self, x, y)
| 68 | self.lin = torch.nn.Linear(100, 10) |
| 69 | |
| 70 | def forward(self, x, y): |
| 71 | return torch.nn.functional.relu(self.lin(x + y), inplace=True) |
| 72 | |
| 73 | mod = MyModule() |
| 74 | exported_mod = export(mod, (torch.randn(8, 100), torch.randn(8, 100))) |
nothing calls this directly
no outgoing calls
no test coverage detected