(self, x)
| 148 | |
| 149 | class Toy(torch.nn.Module): |
| 150 | def forward(self, x): |
| 151 | return torch.relu(x).mm(x.T) |
| 152 | |
| 153 | inputs = (torch.randn(4, 4),) |
| 154 | dm_eager, _ = run_model(Toy(), inputs) |
nothing calls this directly
no outgoing calls
no test coverage detected