(self, input)
| 4438 | def test_empty(): |
| 4439 | class Empty(Module): |
| 4440 | def forward(self, input): |
| 4441 | return torch.empty((10, 10), dtype=torch.float32) |
| 4442 | |
| 4443 | graph_model = fx.symbolic_trace(Empty()) |
| 4444 | mod = from_fx(graph_model, [([10, 10], "float32")]) |