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

Function load_static_library

python/tvm/runtime/module.py:470–474  ·  view source on GitHub ↗

Load the .o library at path which implements functions with func_names. Unlike the generic load_module the result will remain as a static_library and will not be relinked on-the-fly into a .so library.

(path, func_names)

Source from the content-addressed store, hash-verified

468
469
470def load_static_library(path, func_names):
471 """Load the .o library at path which implements functions with func_names.
472 Unlike the generic load_module the result will remain as a static_library
473 and will not be relinked on-the-fly into a .so library."""
474 return _ffi_api.ModuleLoadStaticLibrary(path, func_names)
475
476
477def enabled(target):

Callers 1

_loadMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…