| 1465 | // before python interpreter exits. |
| 1466 | struct ThreadCleanup { |
| 1467 | ~ThreadCleanup() { |
| 1468 | if (!mx::detail::compile_cache_empty()) { |
| 1469 | nb::gil_scoped_acquire gil; |
| 1470 | mx::detail::compile_clear_cache(); |
| 1471 | } |
| 1472 | } |
| 1473 | }; |
| 1474 | static thread_local auto clear_cache = []() { |
| 1475 | // Ensure it is created |
nothing calls this directly
no test coverage detected