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/05/31 22:24:22 UTC

[tvm] branch last-successful updated (3e7916d30a -> 2252f958f7)

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 3e7916d30a [ci][docker] Prune all non-relevant images (#11497)
     add c1b22eefb5 [Arith] Merge surjective/non-surjective iter mapping detections (#11287)
     add ac5d7813df [microNPU] Fix flaky compute cycle annotation test (#11510)
     add 2252f958f7 [microTVM][ARM][Zephyr] Add CMSIS dependencies in Zephyr project build (#11362)

No new revisions were added by this update.

Summary of changes:
 .../zephyr/template_project/microtvm_api_server.py |  45 +-
 include/tvm/arith/iter_affine_map.h                | 114 ++--
 python/tvm/arith/iter_affine_map.py                |  53 +-
 python/tvm/contrib/utils.py                        |  14 +-
 src/arith/int_set.cc                               |   5 +-
 src/arith/iter_affine_map.cc                       | 490 ++++++++-------
 src/arith/pattern_match.h                          |   2 +
 src/arith/rewrite_simplify.cc                      |  72 +--
 src/arith/rewrite_simplify.h                       |   2 +
 src/tir/ir/buffer.cc                               |  17 +-
 src/tir/ir/index_map.cc                            |  23 +-
 src/tir/schedule/analysis/analysis.cc              |   8 +-
 src/tir/schedule/analysis/layout.cc                |  11 +-
 src/tir/schedule/primitive/blockize_tensorize.cc   |   7 +-
 src/tir/schedule/primitive/compute_at.cc           |   2 +-
 src/tir/schedule/primitive/compute_inline.cc       |   5 +-
 .../schedule/primitive/layout_transformation.cc    |   7 +-
 src/tir/schedule/primitive/loop_transformation.cc  |   2 +-
 tests/micro/zephyr/conftest.py                     |  21 +-
 tests/micro/zephyr/test_zephyr.py                  |  70 +++
 tests/micro/zephyr/test_zephyr_aot.py              |   2 +
 tests/micro/zephyr/test_zephyr_armv7m.py           |   1 +
 .../contrib/test_ethosu/cascader/test_scheduler.py |   4 +-
 .../python/unittest/test_arith_iter_affine_map.py  | 674 +++++++++++----------
 .../python/unittest/test_arith_rewrite_simplify.py |  14 +-
 tests/python/unittest/test_tir_buffer.py           |  14 +-
 .../unittest/test_tir_schedule_compute_at.py       |  38 ++
 tests/scripts/task_python_microtvm.sh              |   1 +
 28 files changed, 1017 insertions(+), 701 deletions(-)