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 4251103 [Bugfix] Add nullptr checking for `AttrStmt` with
`coproc_uop_scope` attr key (#9123)
add 9e47b43 [Meta Schedule][M3b] Database (#9061)
No new revisions were added by this update.
Summary of changes:
include/tvm/meta_schedule/database.h | 279 +++++++++++++++++++++
include/tvm/runtime/container/string.h | 7 +
python/tvm/meta_schedule/__init__.py | 4 +-
.../database/__init__.py} | 11 +-
python/tvm/meta_schedule/database/database.py | 240 ++++++++++++++++++
python/tvm/meta_schedule/database/json_database.py | 61 +++++
python/tvm/meta_schedule/utils.py | 28 ++-
src/meta_schedule/database/database.cc | 179 +++++++++++++
src/meta_schedule/database/json_database.cc | 161 ++++++++++++
src/meta_schedule/utils.h | 106 +++++++-
.../python/unittest/test_meta_schedule_database.py | 274 ++++++++++++++++++++
11 files changed, 1340 insertions(+), 10 deletions(-)
create mode 100644 include/tvm/meta_schedule/database.h
copy python/tvm/{relay/_make.py => meta_schedule/database/__init__.py} (79%)
create mode 100644 python/tvm/meta_schedule/database/database.py
create mode 100644 python/tvm/meta_schedule/database/json_database.py
create mode 100644 src/meta_schedule/database/database.cc
create mode 100644 src/meta_schedule/database/json_database.cc
create mode 100644 tests/python/unittest/test_meta_schedule_database.py