You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by wu...@apache.org on 2022/04/08 01:34:45 UTC

[tvm] branch main updated (19784c8c83 -> fc0473885f)

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

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


    from 19784c8c83 [TVMScript] Fixing T.buffer with typed positional arguments other than int32 (#10892)
     add fc0473885f [TIR] VNNI and ARM dot product intrinsic for tensorization (#10925)

No new revisions were added by this update.

Summary of changes:
 python/tvm/script/tir/__init__.pyi                 |   4 +-
 python/tvm/script/tir/special_stmt.py              |   9 +-
 .../_ctypes => tir/tensor_intrin}/__init__.py      |   5 +-
 python/tvm/tir/tensor_intrin/arm_cpu.py            | 142 +++++++++++++++++++++
 python/tvm/tir/tensor_intrin/x86.py                |  75 +++++++++++
 .../unittest/test_meta_schedule_tune_relay.py      |  57 +--------
 .../python/unittest/test_tir_schedule_tensorize.py |  66 +++++++++-
 7 files changed, 295 insertions(+), 63 deletions(-)
 copy python/tvm/{_ffi/_ctypes => tir/tensor_intrin}/__init__.py (87%)
 create mode 100644 python/tvm/tir/tensor_intrin/arm_cpu.py
 create mode 100644 python/tvm/tir/tensor_intrin/x86.py