Get the Function from the jitted module.
(self, name: str)
| 38 | self._jitted_mod: Module | None = None |
| 39 | |
| 40 | def __getitem__(self, name: str) -> Function: |
| 41 | """Get the Function from the jitted module.""" |
| 42 | return self.jit().get_function(name, query_imports=True) |
| 43 | |
| 44 | def __call__(self, *args, **kwargs) -> Any: |
| 45 | """Call the executable.""" |
nothing calls this directly
no test coverage detected