You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by lu...@apache.org on 2022/09/14 09:25:53 UTC

[tvm] branch main updated (91bd9a3fec -> f7f2cda675)

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

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


    from 91bd9a3fec [Hybrid] Fix handling AST subcription for Python3.9 (#12769)
     add f7f2cda675 [AOT] Add AOTLowerMain pass to lower a Relay main into TIR (#12550)

No new revisions were added by this update.

Summary of changes:
 CMakeLists.txt                                     |   1 +
 .../{arith/_ffi_api.py => relay/backend/_aot.py}   |   6 +-
 .../generic/extern.py => relay/backend/aot.py}     |  29 +-
 python/tvm/relay/backend/utils.py                  |   7 +
 src/relay/backend/aot/aot_lower_main.cc            | 861 +++++++++++++++++++++
 src/relay/backend/aot/aot_lower_main.h             |  58 ++
 src/relay/backend/utils.cc                         |  28 +-
 src/relay/backend/utils.h                          |  74 ++
 tests/cpp/relay/backend/aot/aot_lower_main_test.cc |  63 ++
 tests/python/relay/aot/test_pass_aot_lower_main.py | 429 ++++++++++
 10 files changed, 1528 insertions(+), 28 deletions(-)
 copy python/tvm/{arith/_ffi_api.py => relay/backend/_aot.py} (90%)
 copy python/tvm/{topi/generic/extern.py => relay/backend/aot.py} (62%)
 create mode 100644 src/relay/backend/aot/aot_lower_main.cc
 create mode 100644 src/relay/backend/aot/aot_lower_main.h
 create mode 100644 tests/cpp/relay/backend/aot/aot_lower_main_test.cc
 create mode 100644 tests/python/relay/aot/test_pass_aot_lower_main.py