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

[tvm] branch nightly-docker-update updated (8d0f52edaa -> ab870a4365)

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 8d0f52edaa [ci][docker] Nightly Docker image update
     add b3edb6e227 [Apps] Pin android_camera TensorFlow/Keras dependency version (#12710)
     add 832cffa1c1 [Hexagon][Runtime] Better support for 2-tier memory (#12574)
     add 744649e53b [TIR][StorageRewrite] Allow in-place buffer reuse of non-flat memory (#12655)
     add d4201a9d8e [COMMUNITY] ekalda -> Committer (#12715)
     add 141b17b23a [Hexagon] Add optimized schedule for nn.pad (#12714)
     add da48e13b66 [TVMC] Run module once by default (#12713)
     add ab870a4365 [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   (8d0f52edaa)
            \
             N -- N -- N   refs/heads/nightly-docker-update (ab870a4365)

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:
 CONTRIBUTORS.md                                    |   1 +
 Jenkinsfile                                        |  16 +--
 apps/android_camera/models/requirements.txt        |   4 +-
 ci/jenkins/Jenkinsfile.j2                          |  16 +--
 python/tvm/driver/tvmc/runner.py                   |  58 +++++++----
 python/tvm/relay/op/nn/_nn.py                      |   2 +-
 python/tvm/relay/op/strategy/generic.py            |   8 ++
 python/tvm/relay/op/strategy/hexagon.py            |   7 ++
 python/tvm/topi/hexagon/__init__.py                |   1 +
 python/tvm/topi/hexagon/{pooling.py => pad.py}     |  22 ++--
 src/runtime/hexagon/hexagon_buffer.cc              |  17 ++-
 src/runtime/hexagon/hexagon_device_api.cc          |  47 ++++++---
 src/tir/transforms/storage_rewrite.cc              |  20 +++-
 .../contrib/test_hexagon/test_memory_alloc.py      |  85 +++++++++++++++
 tests/python/contrib/test_hexagon/topi/test_pad.py |  57 ++++++++++
 tests/python/driver/tvmc/conftest.py               |  16 +++
 tests/python/driver/tvmc/test_model.py             |   4 +-
 tests/python/driver/tvmc/test_runner.py            |  42 ++++++++
 .../unittest/test_tir_transform_storage_rewrite.py | 116 ++++++++++++++++++++-
 19 files changed, 465 insertions(+), 74 deletions(-)
 copy python/tvm/topi/hexagon/{pooling.py => pad.py} (71%)
 create mode 100644 tests/python/contrib/test_hexagon/test_memory_alloc.py
 create mode 100644 tests/python/contrib/test_hexagon/topi/test_pad.py