(self, x, y)
| 549 | |
| 550 | class Foo(torch.nn.Module): |
| 551 | def forward(self, x, y): |
| 552 | w = x + y |
| 553 | return w + torch.ones(4) |
| 554 | |
| 555 | dx, dy, d1 = torch.export.dims("dx", "dy", "d1") |
| 556 | try: |
nothing calls this directly
no outgoing calls
no test coverage detected