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/09/08 07:27:19 UTC

[tvm] branch last-successful updated (abb2aa062f -> 62bdc91b1a)

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 abb2aa062f [TIR] Add unroll_loop_with_partition_hint_no_interval attr in LoopPartitionConfig     to unroll loop (#12631)
     add 6be04d72c2 [OpenCLML] CLML Profiling fixes corresponding to OpenCL Timer recent … (#12711)
     add 62bdc91b1a Add Arm DSP implementation of Depthwise Conv2D (#12448)

No new revisions were added by this update.

Summary of changes:
 python/tvm/relay/op/strategy/arm_cpu.py            |  22 ++
 python/tvm/topi/arm_cpu/depthwise_conv2d.py        |  19 ++
 .../topi/arm_cpu/mprofile/dsp/depthwise_conv2d.py  | 245 +++++++++++++++++++++
 .../dsp/micro_kernel/quad_channel_convolve.py      | 180 +++++++++++++++
 src/runtime/contrib/clml/clml_runtime.cc           | 161 +++++++-------
 tests/python/contrib/test_clml/infrastructure.py   |   6 +-
 tests/python/contrib/test_clml/test_network.py     |   4 +-
 tests/python/contrib/test_clml/test_ops.py         |   2 +-
 .../strategy/arm_cpu/test_depthwise_conv2d.py      |  25 +++
 9 files changed, 571 insertions(+), 93 deletions(-)
 create mode 100644 python/tvm/topi/arm_cpu/mprofile/dsp/depthwise_conv2d.py
 create mode 100644 python/tvm/topi/arm_cpu/mprofile/dsp/micro_kernel/quad_channel_convolve.py