(self, path: Path)
| 71 | return _call |
| 72 | |
| 73 | def _load(self, path: Path) -> Module: |
| 74 | return load_static_library(str(path), func_names=list(self._symbols.keys())) |
| 75 | |
| 76 | def load(self) -> Module: |
| 77 | """Loads the external module into a TVM runtime module.""" |
no test coverage detected