(self, state_dict, strict=True)
| 79 | return self.module.state_dict(destination, prefix, keep_vars) |
| 80 | |
| 81 | def load_state_dict(self, state_dict, strict=True): |
| 82 | return self.module.load_state_dict(state_dict, strict=strict) |
| 83 | |
| 84 | |
| 85 | # TODO: Update overflow check + downscale to use Carl's fused kernel. |
no outgoing calls
no test coverage detected