(self, *inputs)
| 95 | self.network = convert_network(network, dtype=torch.half) |
| 96 | |
| 97 | def forward(self, *inputs): |
| 98 | inputs = tuple(t.half() for t in inputs) |
| 99 | return self.network(*inputs) |
| 100 | |
| 101 | |
| 102 | def backwards_debug_hook(grad): |
nothing calls this directly
no outgoing calls
no test coverage detected