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 44f88d2228 [ci][docker] Nightly Docker image update
     add 3131cdc56a [Target] Replace utility functions with target.features 
(#12455)
     add 7827fffe5c [Relay][Frontend][ONNX] Add GridSample operator (#13163)
     add 5400b942d2 [ONNX] Add converter for FastGelu from Microsoft 
onnxruntime contrib opset (#13119)
     add 3e02ac5d2e [Adreno] Fix mem_scope annotations for prim funcs having 
several heads (#13153)
     add 03d989f441 [Adreno] Adapt reduction schedule for adreno (#13100)
     add c302b3dce3 [AOT] Add CreateFunctionMetadata analysis pass (#13095)
     add f6b8ca8418 [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   (44f88d2228)
            \
             N -- N -- N   refs/heads/nightly-docker-update (f6b8ca8418)

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 +-
 include/tvm/tir/analysis.h                         |   7 +
 python/tvm/ir/memory_pools.py                      |  52 ++++
 python/tvm/relay/backend/aot.py                    |  26 ++
 python/tvm/relay/frontend/onnx.py                  |  56 +++-
 python/tvm/relay/op/image/image.py                 |   2 +-
 python/tvm/relay/op/strategy/adreno.py             |   7 +
 python/tvm/relay/op/strategy/arm_cpu.py            |  11 +-
 python/tvm/relay/qnn/op/legalizations.py           |  21 +-
 python/tvm/topi/adreno/__init__.py                 |   1 +
 python/tvm/topi/adreno/reduction.py                |  69 +++++
 python/tvm/topi/adreno/utils.py                    |  31 +--
 python/tvm/topi/arm_cpu/arm_utils.py               |  58 +---
 python/tvm/topi/arm_cpu/conv2d_gemm.py             |  23 +-
 python/tvm/topi/arm_cpu/conv2d_int8.py             |  12 +-
 python/tvm/topi/arm_cpu/depthwise_conv2d.py        |   5 +-
 python/tvm/topi/cuda/reduction.py                  |  20 +-
 python/tvm/topi/image/grid_sample.py               |  18 +-
 src/relay/backend/aot/create_function_metadata.cc  | 125 +++++++++
 src/relay/backend/aot/create_function_metadata.h   |  49 ++++
 src/relay/op/image/grid_sample.cc                  |   2 +-
 src/relay/transforms/annotate_texture_storage.cc   |  10 +-
 src/target/parsers/cpu.cc                          |   5 +
 src/tir/usmp/utils.cc                              |   6 +-
 .../contrib/test_arm_compute_lib/test_network.py   |  25 +-
 tests/python/frontend/onnx/test_forward.py         |  74 +++--
 .../relay/aot/test_aot_create_function_metadata.py | 302 +++++++++++++++++++++
 .../opencl_texture/test_conv2d_nchw_texture.py     | 193 +++++++++++++
 .../relay/opencl_texture/test_reduction_texture.py |  51 ++++
 tests/python/relay/test_op_level2.py               |   4 +-
 tests/python/target/test_arm_target.py             |  37 ++-
 tests/python/topi/python/test_topi_conv2d_int8.py  |   5 +-
 33 files changed, 1144 insertions(+), 203 deletions(-)
 create mode 100644 python/tvm/topi/adreno/reduction.py
 create mode 100644 src/relay/backend/aot/create_function_metadata.cc
 create mode 100644 src/relay/backend/aot/create_function_metadata.h
 create mode 100644 tests/python/relay/aot/test_aot_create_function_metadata.py
 create mode 100644 tests/python/relay/opencl_texture/test_reduction_texture.py

Reply via email to