You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by ar...@apache.org on 2021/06/04 20:54:22 UTC

[tvm] branch main updated (3e34e11 -> a769ece)

This is an automated email from the ASF dual-hosted git repository.

areusch pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git.


    from 3e34e11  [CMake] Add compile-time check that libtvm_runtime.so has no undefined symbols. (#8178)
     add a769ece  [AOT] Initial implementation of --unpacked-api (#8023)

No new revisions were added by this update.

Summary of changes:
 include/tvm/tir/transform.h                        |  11 ++
 python/tvm/tir/transform/transform.py              |  11 ++
 src/driver/driver_api.cc                           |   9 +-
 src/relay/backend/aot_executor_codegen.cc          |  84 +++++++----
 src/target/source/source_module.cc                 |  50 ++++++-
 src/target/target_kind.cc                          |   2 +
 src/tir/transforms/make_unpacked_api.cc            | 135 ++++++++++++++++++
 tests/python/relay/aot/aot_test_utils.py           |  10 +-
 tests/python/relay/aot/test_crt_aot.py             |  74 ++++++----
 .../test_tir_transform_make_unpacked_api.py        | 155 +++++++++++++++++++++
 10 files changed, 478 insertions(+), 63 deletions(-)
 create mode 100644 src/tir/transforms/make_unpacked_api.cc
 create mode 100644 tests/python/unittest/test_tir_transform_make_unpacked_api.py