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


    omit 95fe45ff78 [ci][docker] Nightly Docker image update
     add fa17da22c7 [Hexagon] Support template-free meta schedule tuning 
(#12854)
     add f121e5e355 [Hexagon] [runtime] VTCM Allocator (#12947)
     add f3d3ecebe1 [Hexagon] vrmpy tensorization for e2e compilation of int8 
models (#12911)
     add 095f5be88c [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   (95fe45ff78)
            \
             N -- N -- N   refs/heads/nightly-docker-update (095f5be88c)

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:
 Jenkinsfile                                        |  20 +-
 ci/jenkins/Jenkinsfile.j2                          |  20 +-
 python/tvm/meta_schedule/default_config.py         |  57 +++++-
 python/tvm/meta_schedule/tune.py                   |  29 ++-
 python/tvm/relay/op/strategy/hexagon.py            |  37 +++-
 python/tvm/topi/generic/conv2d.py                  |  11 +-
 python/tvm/topi/hexagon/__init__.py                |   2 +
 python/tvm/topi/hexagon/conv2d.py                  |  49 ++++-
 python/tvm/topi/hexagon/conv2d_alter_op.py         | 111 +++++++++++
 python/tvm/topi/hexagon/dense.py                   |  73 ++++++-
 python/tvm/topi/hexagon/dense_alter_op.py          | 147 ++++++++++++++
 python/tvm/topi/hexagon/injective.py               |   3 +-
 python/tvm/topi/hexagon/tensor_intrin.py           |  86 +++++++++
 src/runtime/hexagon/hexagon_buffer.cc              |  41 ++--
 src/runtime/hexagon/hexagon_device_api.cc          |   1 -
 src/runtime/hexagon/hexagon_device_api.h           |  23 ++-
 src/runtime/hexagon/hexagon_vtcm_pool.cc           | 152 +++++++++++++++
 src/runtime/hexagon/hexagon_vtcm_pool.h            | 100 ++++++++++
 .../hexagon/hexagon_device_api_tests.cc            |  12 +-
 .../cpp-runtime/hexagon/hexagon_vtcm_pool_tests.cc | 124 ++++++++++++
 tests/python/contrib/test_hexagon/test_launcher.py | 149 ++++++++++++++-
 .../contrib/test_hexagon/test_meta_schedule.py     | 212 ++++++++++++++++++++-
 .../test_hexagon/topi/test_conv2d_fp16_intrin.py   |   2 +-
 23 files changed, 1393 insertions(+), 68 deletions(-)
 create mode 100644 python/tvm/topi/hexagon/conv2d_alter_op.py
 create mode 100644 python/tvm/topi/hexagon/dense_alter_op.py
 create mode 100644 src/runtime/hexagon/hexagon_vtcm_pool.cc
 create mode 100644 src/runtime/hexagon/hexagon_vtcm_pool.h
 create mode 100644 tests/cpp-runtime/hexagon/hexagon_vtcm_pool_tests.cc

Reply via email to