(self, x)
| 967 | self.linear = torch.nn.Linear(3, 3) |
| 968 | |
| 969 | def forward(self, x): |
| 970 | x = self.linear(x) |
| 971 | return x |
| 972 | |
| 973 | inp = torch.randn(2, 3, device="cuda") |
| 974 | m = M().to(device="cuda") |
nothing calls this directly
no outgoing calls
no test coverage detected