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 76efece [QNN] Channel wise quantization - Quantize & Requantize
(#4629)
add 77c4774 [RUNTIME][DSO] Improve TVMBackendPackedCFunc to allow return
val (#4637)
No new revisions were added by this update.
Summary of changes:
apps/{extension => dso_plugin_module}/.gitignore | 0
apps/{extension => dso_plugin_module}/Makefile | 3 +-
apps/{howto_deploy => dso_plugin_module}/README.md | 30 +++--
apps/dso_plugin_module/plugin_module.cc | 82 +++++++++++++
apps/dso_plugin_module/test_plugin_module.py | 47 ++++++++
apps/extension/Makefile | 1 +
include/tvm/ir_pass.h | 3 +-
include/tvm/runtime/c_backend_api.h | 18 ++-
include/tvm/runtime/module.h | 2 +-
include/tvm/runtime/packed_func.h | 129 +++++++++++++++++++++
src/codegen/codegen_source_base.cc | 4 +-
src/codegen/llvm/llvm_module.cc | 4 +-
src/pass/make_api.cc | 11 ++
src/runtime/library_module.cc | 19 ++-
src/runtime/library_module.h | 11 +-
src/runtime/runtime_base.h | 4 +-
tests/python/unittest/test_pass_makeapi.py | 2 +-
tests/scripts/task_python_integration.sh | 9 ++
18 files changed, 343 insertions(+), 36 deletions(-)
copy apps/{extension => dso_plugin_module}/.gitignore (100%)
copy apps/{extension => dso_plugin_module}/Makefile (93%)
copy apps/{howto_deploy => dso_plugin_module}/README.md (50%)
create mode 100644 apps/dso_plugin_module/plugin_module.cc
create mode 100644 apps/dso_plugin_module/test_plugin_module.py