Loads the external module into a TVM runtime module.
(self)
| 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.""" |
| 78 | raise NotImplementedError |
| 79 | |
| 80 | |
| 81 | class ObjectModule(ExternModule): # pylint: disable=too-few-public-methods |
no outgoing calls