| 578 | }; |
| 579 | |
| 580 | ~PyCompiledFun() { |
| 581 | nb::gil_scoped_acquire gil; |
| 582 | |
| 583 | mx::detail::compile_erase(fun_id); |
| 584 | fun.reset(); |
| 585 | captured_inputs.reset(); |
| 586 | captured_outputs.reset(); |
| 587 | } |
| 588 | }; |
| 589 | |
| 590 | class PyCheckpointedFun { |
nothing calls this directly
no test coverage detected