()
| 385 | |
| 386 | |
| 387 | def _clear_torch_proxy_modules(): |
| 388 | for name, module in list(sys.modules.items()): |
| 389 | if _is_torch_module(name) and isinstance(module, ProxyModule): |
| 390 | del sys.modules[name] |
| 391 | |
| 392 | |
| 393 | def _swap_torch_modules_to_cache(): |
no test coverage detected