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/04/14 13:43:13 UTC

[tvm] branch last-successful updated (1bfb9cac93 -> 324bf4cac5)

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

github-bot pushed a change to branch last-successful
in repository https://gitbox.apache.org/repos/asf/tvm.git


    from 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)

No new revisions were added by this update.

Summary of changes:
 .asf.yaml                                          |   1 +
 apps/hexagon_launcher/CMakeLists.txt               |  78 +++++
 python/tvm/contrib/hexagon/build.py                | 114 ++++---
 python/tvm/relay/op/contrib/arm_compute_lib.py     |  37 ++-
 python/tvm/relay/op/contrib/cudnn.py               |  79 ++++-
 .../backend/contrib/arm_compute_lib/codegen.cc     |  26 ++
 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 +
 .../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 +-
 18 files changed, 1001 insertions(+), 81 deletions(-)
 create mode 100644 apps/hexagon_launcher/CMakeLists.txt
 create mode 100644 tests/python/contrib/test_arm_compute_lib/test_concatenate.py
 create mode 100644 tests/python/contrib/test_hexagon/benchmark_hexagon.py