You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by me...@apache.org on 2022/04/18 16:57:47 UTC

[tvm] branch ci-docker-staging updated (e4303d6f40 -> 902e40a163)

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

mehrdadh pushed a change to branch ci-docker-staging
in repository https://gitbox.apache.org/repos/asf/tvm.git


 discard e4303d6f40 Validating new gpu image
     add 61a9269d85 [FIX] resolve int64/32 for AttrStmtNode (#10983)
     add b542724873 [Runtime][Vulkan] Add RGP support to TVM for vulkan device (#10953)
     add 01e0e2d0e1 [CI] Update GPU image (#10992)
     add ef163a5791 [Hexagon] Remove HexagonBuffer external constructor and support (#10978)
     add 814e856851 sort axes (#10985)
     add 11b8cd3ca1 [ONNX] Add imports for BERT contrib operators (#10949)
     add dbfab5c10d [Metaschedule] Make custom schedule_rule registration optional (#10975)
     add 1bfb9cac93 [COMMUNITY] @yzh119 -> Reviewer (#10993)
     add ce8f83e3c5 [hexagon] 'add_hvx' test to explore HVX usage. (#10604)
     add e370ed4597 [Hexagon] Less aggressive adb state clean up (#10909)
     add 985fc933f4 [Hexagon] Handle TCP server binding to unknown port (#10945)
     add 52f52c83de [BYOC][ACL] Fix list is not supported as an input node (#10801)
     add 96616b7af8 [Hexagon] Add top-level CMakeLists.txt for apps/hexagon_launcher (#11006)
     add 1cf0c0a5bf [CUDNN] Add partitioning support for fused conv2d+bias+act (#10997)
     add 324bf4cac5 Add driazati to triagers. (#11004)
     add e84b3590dc [Relay] Refactor inline composites transformation (#10995)
     add 529da9bd56 [TensorRT][BYOC] Minor refactoring to handle constants in pattern-based ops for TRT (#10994)
     add 3d63b2d944 [CI] Update CI Images to include `pytest-lazy-fixture` (#10999)
     add a34731b7fc [ROCM] DP4A intrinsic support for TE/TIR (#11009)
     add b94119692e [TIR] Ignore Allocate/AllocateConst in BufferAllocationLocator (#10998)
     add 0e1a2a2ff8 Fix broken CI when git-merge needs to create a commit. (#11007)
     add 902e40a163 Refactor hexagon test scripts

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   (e4303d6f40)
            \
             N -- N -- N   refs/heads/ci-docker-staging (902e40a163)

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:
 .asf.yaml                                          |   1 +
 CONTRIBUTORS.md                                    |   1 +
 Jenkinsfile                                        |  16 +-
 apps/hexagon_launcher/CMakeLists.txt               |  78 +++++
 jenkins/Jenkinsfile.j2                             |  14 +-
 python/tvm/contrib/hexagon/build.py                | 114 ++++---
 python/tvm/relay/frontend/onnx.py                  | 227 +++++++++++++-
 python/tvm/relay/op/contrib/arm_compute_lib.py     |  37 ++-
 python/tvm/relay/op/contrib/cudnn.py               |  79 ++++-
 python/tvm/relay/op/contrib/tensorrt.py            |  38 ++-
 python/tvm/relay/op/strategy/cuda.py               |   8 +-
 python/tvm/relay/op/strategy/rocm.py               | 172 ++---------
 python/tvm/relay/qnn/op/legalizations.py           |  22 +-
 python/tvm/tir/tensor_intrin/__init__.py           |   2 +
 python/tvm/tir/tensor_intrin/dot_product_common.py |  55 ++++
 python/tvm/tir/tensor_intrin/rocm.py               |  47 +++
 python/tvm/topi/cuda/batch_matmul.py               |   7 +-
 python/tvm/topi/cuda/conv2d_alter_op.py            |  12 +-
 python/tvm/topi/cuda/conv2d_int8.py                |   4 +-
 python/tvm/topi/cuda/dense.py                      |   5 +-
 python/tvm/topi/cuda/tensor_intrin.py              |  23 +-
 python/tvm/topi/rocm/dense.py                      |  79 +----
 python/tvm/topi/utils.py                           |   7 +
 .../space_generator/post_order_apply.cc            |  22 +-
 .../backend/contrib/arm_compute_lib/codegen.cc     |  26 ++
 src/relay/transforms/inline_composites.cc          |  79 ++---
 src/runtime/contrib/arm_compute_lib/acl_runtime.cc |  82 ++++-
 src/runtime/contrib/arm_compute_lib/acl_utils.cc   |  16 +-
 src/runtime/contrib/arm_compute_lib/acl_utils.h    |   9 +-
 src/runtime/contrib/cudnn/conv_forward.cc          |  62 ++++
 src/runtime/contrib/cudnn/cudnn_utils.cc           |   4 +
 src/runtime/contrib/cudnn/cudnn_utils.h            |   2 +
 src/runtime/contrib/json/json_runtime.h            |   1 +
 src/runtime/hexagon/hexagon/hexagon_buffer.cc      |  18 --
 src/runtime/hexagon/hexagon/hexagon_buffer.h       |  12 -
 src/runtime/vulkan/vulkan_amdrgp.cc                |  53 ++++
 .../vulkan/{vulkan_module.h => vulkan_amdrgp.h}    |  49 ++-
 src/runtime/vulkan/vulkan_device.cc                |  13 +
 src/runtime/vulkan/vulkan_device.h                 |  12 +
 src/runtime/vulkan/vulkan_device_api.cc            |   3 +
 src/runtime/vulkan/vulkan_instance.cc              |   7 +
 src/runtime/vulkan/vulkan_stream.cc                |  13 +
 src/runtime/vulkan/vulkan_stream.h                 |  16 +
 src/runtime/vulkan/vulkan_wrapped_func.cc          |  18 ++
 src/target/target_kind.cc                          |   1 +
 src/tir/transforms/narrow_datatype.cc              |  12 +-
 .../plan_update_buffer_allocation_location.cc      |  33 +-
 tests/cpp/runtime/hexagon_buffer.cc                |  34 ---
 .../contrib/test_arm_compute_lib/infrastructure.py |  28 +-
 .../test_arm_compute_lib/test_concatenate.py       | 151 ++++++++++
 tests/python/contrib/test_cudnn.py                 |  51 +++-
 .../contrib/test_hexagon/benchmark_hexagon.py      | 335 +++++++++++++++++++++
 tests/python/contrib/test_hexagon/conftest.py      |   6 +-
 .../test_hexagon/test_2d_physical_buffers.py       |   3 -
 .../contrib/test_hexagon/test_cache_read_write.py  |   3 -
 tests/python/contrib/test_hexagon/test_launcher.py |  21 --
 tests/python/frontend/onnx/test_forward.py         | 223 +++++++++++++-
 tests/python/relay/test_op_level1.py               |  38 +++
 tests/python/relay/test_op_level10.py              |  52 ++++
 tests/python/relay/test_op_level2.py               |  50 +++
 tests/python/topi/python/test_topi_conv2d_int8.py  |  13 +-
 tests/python/topi/python/test_topi_dense.py        |   1 -
 .../test_meta_schedule_post_order_apply.py         |   4 +-
 .../python/unittest/test_tir_schedule_tensorize.py |  50 +++
 .../test_tir_transform_extract_constants.py        |   2 +
 tests/scripts/task_python_hexagon.sh               |  28 +-
 tests/scripts/task_python_hexagon_simulator.sh     |  40 ---
 67 files changed, 2140 insertions(+), 604 deletions(-)
 create mode 100644 apps/hexagon_launcher/CMakeLists.txt
 create mode 100644 python/tvm/tir/tensor_intrin/dot_product_common.py
 create mode 100644 python/tvm/tir/tensor_intrin/rocm.py
 create mode 100644 src/runtime/vulkan/vulkan_amdrgp.cc
 copy src/runtime/vulkan/{vulkan_module.h => vulkan_amdrgp.h} (54%)
 create mode 100644 tests/python/contrib/test_arm_compute_lib/test_concatenate.py
 create mode 100644 tests/python/contrib/test_hexagon/benchmark_hexagon.py
 delete mode 100755 tests/scripts/task_python_hexagon_simulator.sh