MCPcopy Index your code
hub / github.com/apache/tvm / __call__

Method __call__

python/tvm/runtime/executable.py:44–46  ·  view source on GitHub ↗

Call the executable.

(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

42 return self.jit().get_function(name, query_imports=True)
43
44 def __call__(self, *args, **kwargs) -> Any:
45 """Call the executable."""
46 return self.jit().main(*args, **kwargs)
47
48 def jit(
49 self,

Callers

nothing calls this directly

Calls 2

jitMethod · 0.95
mainMethod · 0.45

Tested by

no test coverage detected