(name: str, module: str)
| 151 | |
| 152 | |
| 153 | def _is_specific_module_or_its_submodule(name: str, module: str) -> bool: |
| 154 | return name == module or name.startswith(f"{module}.") |
| 155 | |
| 156 | |
| 157 | def _is_torch_module(name: str) -> bool: |
no outgoing calls
no test coverage detected