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

[tvm] branch last-successful updated (91bd9a3fec -> 2aa0d1fbfc)

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 91bd9a3fec [Hybrid] Fix handling AST subcription for Python3.9 (#12769)
     add f7f2cda675 [AOT] Add AOTLowerMain pass to lower a Relay main into TIR (#12550)
     add 2aa0d1fbfc [OpenCLML] More ops and network coverage (#12762)

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 +
 python/tvm/relay/op/contrib/clml.py                |  35 +-
 src/relay/backend/aot/aot_lower_main.cc            | 861 +++++++++++++++++++++
 src/relay/backend/aot/aot_lower_main.h             |  58 ++
 src/relay/backend/contrib/clml/codegen.cc          |  37 +
 src/relay/backend/utils.cc                         |  28 +-
 src/relay/backend/utils.h                          |  74 ++
 src/runtime/contrib/clml/clml_runtime.cc           | 315 ++++++--
 tests/cpp/relay/backend/aot/aot_lower_main_test.cc |  63 ++
 tests/python/contrib/test_clml/infrastructure.py   |  28 +-
 tests/python/contrib/test_clml/test_network.py     | 139 +++-
 tests/python/contrib/test_clml/test_ops.py         |  83 +-
 tests/python/relay/aot/test_pass_aot_lower_main.py | 429 ++++++++++
 16 files changed, 2057 insertions(+), 136 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