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/07/30 00:00:42 UTC

[tvm] branch nightly-docker-update updated (e5c7e22e03 -> 03cdd1b4ea)

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

github-bot pushed a change to branch nightly-docker-update
in repository https://gitbox.apache.org/repos/asf/tvm.git


 discard e5c7e22e03 [ci][docker] Nightly Docker image update
     add 9a4d80c5fe Removing header arm_math.h which has disappeared after CMSIS upgrade (#12217)
     add 578ef035b2 Fix comments. (#12220)
     add aeda760e5e [TIR] Disallow unused rhs vars in GetAutoTensorizeMapping (#12225)
     add d183a4f306 [microTVM][Zephyr][projectAPI] Minimize project build commands (#12209)
     add d19570fb23 [UX] highlight tvm script (#12197)
     add c6d733a7eb [TOPI][HEXAGON] Implement depthwise conv2d slice op. (#12218)
     add e7e29b450b [ci] Fix build android rpc failure (#12216)
     add 2b3e1eb3f5 [ci] Reinstall junintparser after zephyr deps (#12226)
     add 03cdd1b4ea [ci][docker] Nightly Docker image update

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (e5c7e22e03)
            \
             N -- N -- N   refs/heads/nightly-docker-update (03cdd1b4ea)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/workflows/main.yml                         |  11 +-
 Jenkinsfile                                        |  16 +-
 .../template_project/CMakeLists.txt.template       |   2 +-
 .../zephyr/template_project/microtvm_api_server.py |  94 +++++++-----
 ci/jenkins/Jenkinsfile.j2                          |  16 +-
 docker/install/ubuntu_install_python_package.sh    |   1 +
 docker/install/ubuntu_install_zephyr.sh            |   4 +
 gallery/how_to/work_with_microtvm/micro_tvmc.sh    |  14 +-
 python/tvm/ir/module.py                            |  15 ++
 python/tvm/meta_schedule/tune.py                   |   2 +-
 python/tvm/script/highlight.py                     | 136 +++++++++++++++++
 python/tvm/tir/function.py                         |  13 ++
 .../arm_cpu/mprofile/dsp/micro_kernel/common.py    |   1 -
 python/tvm/topi/hexagon/slice_ops/__init__.py      |   1 +
 python/tvm/topi/hexagon/slice_ops/dwconv2d.py      | 162 +++++++++++++++++++++
 .../space_generator/post_order_apply.cc            |   2 +-
 src/tir/schedule/analysis/analysis.cc              |   5 +
 tests/micro/common/test_tvmc.py                    |  44 +++---
 ...test_conv2d_slice.py => test_dwconv2d_slice.py} | 143 ++++++++----------
 .../python/unittest/test_tir_schedule_analysis.py  |  24 +++
 .../unittest/test_tvmscript_printer_highlight.py   |  47 ++++++
 21 files changed, 580 insertions(+), 173 deletions(-)
 create mode 100644 python/tvm/script/highlight.py
 create mode 100644 python/tvm/topi/hexagon/slice_ops/dwconv2d.py
 copy tests/python/contrib/test_hexagon/topi/{test_conv2d_slice.py => test_dwconv2d_slice.py} (72%)
 mode change 100755 => 100644
 create mode 100644 tests/python/unittest/test_tvmscript_printer_highlight.py