You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by le...@apache.org on 2021/10/13 02:32:17 UTC

[tvm] branch main updated (3ee8efa -> 8a3fcc4)

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

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


    from 3ee8efa  [TIR] Minor refactor to tir.transform.StorageFlatten (#9260)
     add 8a3fcc4  [TVMC] Compose target options from target registry (#9218)

No new revisions were added by this update.

Summary of changes:
 include/tvm/target/target_kind.h                |  6 ++
 python/tvm/driver/tvmc/autotuner.py             | 17 +++---
 python/tvm/driver/tvmc/common.py                | 45 ++++++++++++---
 python/tvm/driver/tvmc/compiler.py              | 15 ++---
 python/tvm/driver/tvmc/target.py                | 74 +++++++++++++++++++++++++
 python/tvm/target/target.py                     |  5 ++
 src/target/target_kind.cc                       | 10 ++++
 tests/cpp/target_test.cc                        | 12 +++-
 tests/python/driver/tvmc/test_compiler.py       |  4 +-
 tests/python/driver/tvmc/test_mlf.py            |  4 +-
 tests/python/driver/tvmc/test_target_options.py | 71 ++++++++++++++++++++++++
 11 files changed, 237 insertions(+), 26 deletions(-)
 create mode 100644 python/tvm/driver/tvmc/target.py
 create mode 100644 tests/python/driver/tvmc/test_target_options.py