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 fa08b6b0ba [ci][docker] Nightly Docker image update
     add c7d7164c42 [QNN] support zero points as variable scalar for 
QnnBatchMatMul op (#13469)
     add bf16b42edb [Hexagon] Add HVX quant conv2d implementation (#13256)
     add afbfb7aa7e [TIR][Analysis][Hexagon] Add vtcm memory capacity 
verification for Hexagon target (#13349)
     add f647b701b1 [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   (fa08b6b0ba)
            \
             N -- N -- N   refs/heads/nightly-docker-update (f647b701b1)

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                                        |  18 +-
 ci/jenkins/Jenkinsfile.j2                          |  18 +-
 cmake/modules/Hexagon.cmake                        |   9 +
 include/tvm/tir/analysis.h                         |  16 ++
 python/tvm/autotvm/measure/measure_methods.py      |  33 ++-
 python/tvm/target/target.py                        |   8 +
 python/tvm/tir/analysis/analysis.py                |  16 ++
 python/tvm/tir/transform/transform.py              |  11 +
 src/auto_scheduler/feature.cc                      |   7 +
 src/auto_scheduler/search_policy/utils.h           |   5 +
 src/driver/driver_api.cc                           |  17 +-
 src/relay/qnn/op/batch_matmul.cc                   |  78 +++--
 {include/tvm => src}/runtime/hexagon/ops/conv2d.h  | 145 +++++++++-
 src/runtime/hexagon/ops/conv2d_fp16_hvx.cc         |  57 ++--
 src/runtime/hexagon/ops/conv2d_quant_hvx.cc        | 319 +++++++++++++++++++++
 src/runtime/hexagon/ops/conv_utils.cc              | 170 +++++------
 src/target/target_kind.cc                          |   1 +
 src/tir/analysis/calculate_allocated_memory.cc     | 117 ++++++++
 .../cpp-runtime/hexagon/hexagon_conv_utils_test.h  | 102 +++++++
 .../hexagon/hexagon_fp16_utils_tests.cc            |  96 ++-----
 ...utils_tests.cc => hexagon_quant_utils_tests.cc} | 175 ++++-------
 .../python/contrib/test_hexagon/infrastructure.py  |   6 +-
 tests/python/contrib/test_hexagon/test_vtcm.py     |  55 +++-
 .../test_hexagon/topi/test_conv2d_quant_intrin.py  | 261 +++++++++++++++++
 ...test_tir_analysis_calculate_allocated_memory.py | 101 +++++++
 25 files changed, 1446 insertions(+), 395 deletions(-)
 rename {include/tvm => src}/runtime/hexagon/ops/conv2d.h (54%)
 create mode 100644 src/runtime/hexagon/ops/conv2d_quant_hvx.cc
 create mode 100644 src/tir/analysis/calculate_allocated_memory.cc
 create mode 100644 tests/cpp-runtime/hexagon/hexagon_conv_utils_test.h
 copy tests/cpp-runtime/hexagon/{hexagon_fp16_utils_tests.cc => 
hexagon_quant_utils_tests.cc} (58%)
 create mode 100644 
tests/python/contrib/test_hexagon/topi/test_conv2d_quant_intrin.py
 create mode 100644 
tests/python/unittest/test_tir_analysis_calculate_allocated_memory.py

Reply via email to