(self, network)
| 91 | """ |
| 92 | |
| 93 | def __init__(self, network): |
| 94 | super(FP16Model, self).__init__() |
| 95 | self.network = convert_network(network, dtype=torch.half) |
| 96 | |
| 97 | def forward(self, *inputs): |
| 98 | inputs = tuple(t.half() for t in inputs) |
nothing calls this directly
no test coverage detected