You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by tq...@apache.org on 2021/05/25 22:50:46 UTC

[tvm] branch main updated (dc5fc68 -> 03c8a6f)

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

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


    from dc5fc68  [METAL] Split kernels and compile them separately (#7980)
     add 03c8a6f  [TensorIR][M2a] Structural Error Reporting (#8121)

No new revisions were added by this update.

Summary of changes:
 include/tvm/tir/schedule/schedule.h              | 14 ++++-
 python/tvm/tir/__init__.py                       |  2 +-
 python/tvm/tir/schedule/__init__.py              |  2 +-
 python/tvm/tir/schedule/schedule.py              | 22 ++++++++
 src/tir/schedule/concrete_schedule.cc            | 71 ++++++++++++++++++++++--
 src/tir/schedule/concrete_schedule.h             |  3 +
 src/tir/schedule/error.cc                        | 55 ++++++++++++++++++
 src/tir/schedule/error.h                         | 60 ++++++++++++++++++++
 src/tir/schedule/schedule.cc                     |  5 +-
 src/tir/schedule/utils.h                         |  1 +
 tests/python/unittest/test_tir_schedule_error.py | 70 +++++++++++++++++++++++
 11 files changed, 296 insertions(+), 9 deletions(-)
 create mode 100644 src/tir/schedule/error.cc
 create mode 100644 src/tir/schedule/error.h
 create mode 100644 tests/python/unittest/test_tir_schedule_error.py