You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by zh...@apache.org on 2021/03/25 03:01:30 UTC

[tvm] branch main updated (3ba5868 -> 7130e80)

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

zhaowu pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git.


    from 3ba5868  [TensorIR] Fix parser autocompletion mode (#7737)
     add 7130e80  Better grouped convolution for CPU targets (#6137)

No new revisions were added by this update.

Summary of changes:
 python/tvm/relay/op/strategy/arm_cpu.py |   7 +-
 python/tvm/relay/op/strategy/x86.py     |   8 +-
 python/tvm/topi/arm_cpu/__init__.py     |   1 +
 python/tvm/topi/arm_cpu/group_conv2d.py | 370 +++++++++++++++++++++++++++++++
 python/tvm/topi/x86/__init__.py         |   1 +
 python/tvm/topi/x86/group_conv2d.py     | 371 ++++++++++++++++++++++++++++++++
 6 files changed, 749 insertions(+), 9 deletions(-)
 create mode 100644 python/tvm/topi/arm_cpu/group_conv2d.py
 create mode 100644 python/tvm/topi/x86/group_conv2d.py