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 19:22:01 UTC

[tvm] branch last-successful updated (529da9bd56 -> a34731b7fc)

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

No new revisions were added by this update.

Summary of changes:
 Jenkinsfile                                        |   8 +-
 jenkins/Jenkinsfile.j2                             |   6 +-
 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 +
 src/target/target_kind.cc                          |   1 +
 tests/python/relay/test_op_level1.py               |  38 +++++
 tests/python/relay/test_op_level10.py              |  35 +++++
 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 -
 .../python/unittest/test_tir_schedule_tensorize.py |  50 ++++++
 22 files changed, 365 insertions(+), 280 deletions(-)
 create mode 100644 python/tvm/tir/tensor_intrin/dot_product_common.py
 create mode 100644 python/tvm/tir/tensor_intrin/rocm.py