This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch last-successful
in repository https://gitbox.apache.org/repos/asf/tvm.git
from f6ddd52dc0 [microNPU] Expose compute cycle annotations to TIR lowering
(#11288)
add a9ece3d48b [hexagon][testing] refactor benchmark-table code (#11400)
add db5f4fe65c [Runtime] Add 'static_library' runtime::Module (#11442)
No new revisions were added by this update.
Summary of changes:
include/tvm/runtime/module.h | 28 ++++
python/tvm/contrib/cc.py | 3 +
python/tvm/contrib/nvcc.py | 2 +
python/tvm/runtime/__init__.py | 2 +-
python/tvm/runtime/module.py | 52 ++++++-
src/printer/model_library_format_printer.cc | 2 +-
src/relay/backend/contrib/ethosu/source_module.cc | 11 +-
src/relay/backend/te_compiler.cc | 29 ++--
src/relay/backend/vm/compiler.h | 2 +-
src/runtime/aot_executor/aot_executor_factory.h | 2 +-
src/runtime/const_loader_module.cc | 2 +-
src/runtime/contrib/json/json_runtime.h | 2 +-
src/runtime/contrib/tensorrt/tensorrt_runtime.cc | 2 +-
.../graph_executor/graph_executor_factory.h | 2 +-
src/runtime/metadata.cc | 2 +-
src/runtime/module.cc | 18 ++-
src/runtime/stackvm/stackvm_module.cc | 2 +-
src/runtime/static_library.cc | 106 +++++++++++++++
.../{stackvm/stackvm_module.h => static_library.h} | 31 +++--
src/support/ffi_testing.cc | 2 +-
src/target/codegen.cc | 12 +-
src/target/llvm/llvm_module.cc | 8 +-
src/target/metadata_module.cc | 6 +-
src/target/source/interface_c.cc | 2 +-
src/target/source/source_module.cc | 20 ++-
.../contrib/test_hexagon/benchmark_hexagon.py | 149 ++++++---------------
.../python/contrib/test_hexagon/benchmark_util.py | 141 +++++++++++++++++++
.../python/unittest/test_runtime_module_export.py | 48 +++++--
28 files changed, 503 insertions(+), 185 deletions(-)
create mode 100644 src/runtime/static_library.cc
copy src/runtime/{stackvm/stackvm_module.h => static_library.h} (60%)
create mode 100644 tests/python/contrib/test_hexagon/benchmark_util.py