File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -197,7 +197,7 @@ def _get_model_libs(lib_path: Path) -> List[str]:
197
197
"""Get the model lib prefixes in the given static lib path."""
198
198
global_symbol_map = cc .get_global_symbol_section_map (lib_path )
199
199
libs = []
200
- suffix = "___tvm_dev_mblob "
200
+ suffix = "___tvm_ffi_library_bin "
201
201
for name , _ in global_symbol_map .items ():
202
202
if name .endswith (suffix ):
203
203
model_lib = name [: - len (suffix )]
@@ -231,7 +231,7 @@ def _get_model_libs(lib_path: Path) -> List[str]:
231
231
f"model_lib_path_for_prepare_libs={ model_lib_path_for_prepare_libs } "
232
232
)
233
233
234
- model_prefix_pattern = model_lib .replace ("-" , "_" ) + "___tvm_dev_mblob "
234
+ model_prefix_pattern = model_lib .replace ("-" , "_" ) + "___tvm_ffi_library_bin "
235
235
if (
236
236
model_prefix_pattern not in global_symbol_map
237
237
and "_" + model_prefix_pattern not in global_symbol_map
You can’t perform that action at this time.
0 commit comments