(mod, opt)
| 3657 | if is_sagemaker_mp_enabled(): |
| 3658 | |
| 3659 | def opt_load_hook(mod, opt): |
| 3660 | opt.load_state_dict(smp.load(os.path.join(checkpoint, OPTIMIZER_NAME), partial=True)) |
| 3661 | |
| 3662 | self.model_wrapped.register_post_step_hook(opt_load_hook) |
| 3663 | else: |
nothing calls this directly
no test coverage detected