You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by ju...@apache.org on 2022/09/01 23:44:50 UTC

[tvm] branch main updated (50dad0d9a3 -> eecb7fd494)

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

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


    from 50dad0d9a3 [HEXAGON][TOPI]Slice Op Argmax uint8 (#12472)
     add eecb7fd494 [MetaSchedule] Introduce `Union` and `OrderedUnion` in Database (#12628)

No new revisions were added by this update.

Summary of changes:
 include/tvm/meta_schedule/database.h               |  16 +++
 python/tvm/meta_schedule/database/__init__.py      |   2 +
 .../database/ordered_union_database.py             | 112 +++++++++++++++++++++
 .../tvm/meta_schedule/database/union_database.py   | 112 +++++++++++++++++++++
 src/meta_schedule/database/json_database.cc        |  22 ----
 .../database/ordered_union_database.cc             |  86 ++++++++++++++++
 src/meta_schedule/database/union_database.cc       |  88 ++++++++++++++++
 src/meta_schedule/utils.h                          |  22 ++++
 tests/python/unittest/test_link_params.py          |   9 +-
 .../python/unittest/test_meta_schedule_database.py |  37 +++++++
 10 files changed, 477 insertions(+), 29 deletions(-)
 create mode 100644 python/tvm/meta_schedule/database/ordered_union_database.py
 create mode 100644 python/tvm/meta_schedule/database/union_database.py
 create mode 100644 src/meta_schedule/database/ordered_union_database.cc
 create mode 100644 src/meta_schedule/database/union_database.cc