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/21 03:47:16 UTC

[tvm] branch last-successful updated (534378b935 -> fa5045bf69)

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 534378b935 [Containers] Add Array::Map (#12692)
     add 52dbf102cd Fix caffe, boost install in Python venvs by creating python3.X link (#12828)
     add fa5045bf69 [Metaschedule] MultiLevelTiling for wide vector architectures (#12845)

No new revisions were added by this update.

Summary of changes:
 docker/install/ubuntu_install_boost.sh             |   3 +
 docker/install/ubuntu_install_caffe.sh             |   4 +-
 docker/install/ubuntu_install_python.sh            |   7 ++
 include/tvm/meta_schedule/schedule_rule.h          |  15 +++
 python/tvm/meta_schedule/schedule_rule/__init__.py |   1 +
 .../schedule_rule/multi_level_tiling.py            |  37 +++++++
 .../schedule_rule/multi_level_tiling.cc            |  35 ++++--
 .../schedule_rule/multi_level_tiling.h             |   3 +
 .../multi_level_tiling_wide_vector.cc              | 120 +++++++++++++++++++++
 .../test_meta_schedule_schedule_rule_mlt.py        | 108 ++++++++++++++++++-
 10 files changed, 319 insertions(+), 14 deletions(-)
 create mode 100644 src/meta_schedule/schedule_rule/multi_level_tiling_wide_vector.cc