This is an automated email from the ASF dual-hosted git repository.
tqchen pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tvm.git.
from 18592c8 [Relay][Frontend][TFlite] Add parses support for UNPACK
tflite operator (#4447)
add 203d2c9 [REFACTOR][RUNTIME] Add LibraryModule that merges systemlib
and dso. (#4481)
No new revisions were added by this update.
Summary of changes:
apps/android_deploy/app/src/main/jni/tvm_runtime.h | 6 +-
apps/android_rpc/app/src/main/jni/tvm_runtime.h | 6 +-
apps/howto_deploy/run_example.sh | 6 +-
apps/howto_deploy/tvm_runtime_pack.cc | 6 +-
apps/ios_rpc/tvmrpc/TVMRuntime.mm | 6 +-
golang/src/tvm_runtime_pack.cc | 6 +-
include/tvm/runtime/module.h | 1 +
src/codegen/llvm/llvm_module.cc | 4 +-
src/runtime/{dso_module.cc => dso_library.cc} | 73 +++------
src/runtime/library_module.cc | 165 +++++++++++++++++++++
src/runtime/{module_util.h => library_module.h} | 69 +++++----
src/runtime/module_util.cc | 77 ----------
src/runtime/stackvm/stackvm_module.cc | 1 -
src/runtime/system_lib_module.cc | 110 --------------
src/runtime/system_library.cc | 83 +++++++++++
web/web_runtime.cc | 6 +-
16 files changed, 333 insertions(+), 292 deletions(-)
rename src/runtime/{dso_module.cc => dso_library.cc} (59%)
create mode 100644 src/runtime/library_module.cc
rename src/runtime/{module_util.h => library_module.h} (55%)
delete mode 100644 src/runtime/module_util.cc
delete mode 100644 src/runtime/system_lib_module.cc
create mode 100644 src/runtime/system_library.cc