()
| 56 | from torch.utils._debug_mode import DebugMode |
| 57 | |
| 58 | def run_once(): |
| 59 | x = torch.randn(8, 8) |
| 60 | y = torch.randn(8, 8) |
| 61 | return torch.mm(torch.relu(x), y) |
| 62 | |
| 63 | with DebugMode() as debug_mode: |
| 64 | out = run_once() |
no outgoing calls
no test coverage detected