(self, state_dict, strict=True)
| 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) |
| 72 | |
| 73 | # TODO: Update overflow check + downscale to use Carl's fused kernel. |
| 74 | class FP16_Optimizer(object): |
no outgoing calls
no test coverage detected