(self, destination=None, prefix='', keep_vars=False)
| 65 | return fp16_to_fp32(self.module(*(fp32_to_fp16(inputs)), **kwargs)) |
| 66 | |
| 67 | def state_dict(self, destination=None, prefix='', keep_vars=False): |
| 68 | return self.module.state_dict(destination, prefix, keep_vars) |
| 69 | |
| 70 | def load_state_dict(self, state_dict, strict=True): |
| 71 | self.module.load_state_dict(state_dict, strict=strict) |
no outgoing calls
no test coverage detected