Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/relay/backend/build_module.cc
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ class RelayBuildModule : public runtime::ModuleNode {
ret_.mod = tvm::codegen::CSourceModuleCreate(";", "", Array<String>{});
}
} else {
ret_.mod = tvm::build(lowered_funcs, target_host_);
ret_.mod = tvm::build(lowered_funcs, target_host);
}

auto ext_mods = executor_codegen_->GetExternalModules();
Expand Down
2 changes: 1 addition & 1 deletion tests/python/driver/tvmc/test_compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ def test_compile_tflite_module_with_external_codegen_cmsisnn(
for name in mlf_package.getnames()
if re.match(r"\./codegen/host/src/\D+\d+\.c", name)
]
assert len(c_source_files) == 4
assert len(c_source_files) == 3


@pytest.mark.skipif(
Expand Down