| 574 | linear = torch.nn.Linear(2, 2) |
| 575 | |
| 576 | class Module(torch.nn.Module): |
| 577 | def forward(self, x): |
| 578 | x = x + 1 |
| 579 | y = x.t() |
| 580 | y = y.relu() |
| 581 | y = linear(y) |
| 582 | return y |
| 583 | |
| 584 | ep = export(Module(), inp) |
| 585 |
no outgoing calls
searching dependent graphs…