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/11/05 06:39:21 UTC

[tvm] branch last-successful updated (be44e9c811 -> 1e793641d8)

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 be44e9c811 [Tensorize] Add logs to comparator to make debugging tensorize failures easier (#13285)
     add 62fadacd12 [Hexagon] Lint tests part 2 (#13271)
     add 56878fab7c [TE] Make `elem_offset` of the buffers created by `te.extern` a variable to avoid crash (#13297)
     add 1e793641d8 [TIR] Added unit test for dynamic parameter in layout transform (#13298)

No new revisions were added by this update.

Summary of changes:
 python/tvm/te/operation.py                         |  10 +-
 tests/lint/pylint.sh                               |   3 +-
 .../test_hexagon/metaschedule_e2e/export_models.py |  21 +-
 .../metaschedule_e2e/test_resnet50_fp16.py         |  32 ++-
 .../metaschedule_e2e/test_resnet50_int8.py         |  89 ++++---
 tests/python/contrib/test_hexagon/topi/__init__.py |   2 +-
 .../test_hexagon/topi/slice_op}/__init__.py        |   2 +-
 .../topi/{ => slice_op}/test_argmax_slice.py       |   2 +-
 .../topi/{ => slice_op}/test_avg_pool2d_slice.py   |   5 +-
 .../topi/{ => slice_op}/test_cast_slice.py         |   2 +-
 .../{test_clip.py => slice_op/test_clip_slice.py}  |   4 +-
 .../topi/{ => slice_op}/test_conv2d_slice.py       |   2 +-
 .../{ => slice_op}/test_depthwise_conv2d_slice.py  |   4 +-
 .../topi/{ => slice_op}/test_dequantize_slice.py   |   2 +-
 .../topi/{ => slice_op}/test_max_pool2d_slice.py   |   6 +-
 .../topi/{ => slice_op}/test_relu_slice.py         |   3 +-
 .../topi/{ => slice_op}/test_softmax_slice.py      |   2 +-
 .../topi/{ => slice_op}/test_tanh_slice.py         |   3 +-
 .../topi/test_add_subtract_multiply.py             | 272 ++++++++++----------
 .../contrib/test_hexagon/topi/test_batch_matmul.py |  54 ++--
 .../test_hexagon/topi/test_conv2d_fp16_intrin.py   | 197 ++++++++-------
 .../contrib/test_hexagon/topi/test_conv2d_nchw.py  | 133 +++++-----
 .../contrib/test_hexagon/topi/test_conv2d_nhwc.py  |  49 ++--
 .../test_hexagon/topi/test_conv2d_transpose.py     |  83 ++-----
 .../python/contrib/test_hexagon/topi/test_dense.py | 178 +++++++-------
 .../test_hexagon/topi/test_depth_to_space.py       |  49 ++--
 .../test_hexagon/topi/test_depthwise_conv2d.py     | 273 +++++++++++----------
 tests/python/contrib/test_hexagon/topi/test_pad.py |  11 +-
 .../contrib/test_hexagon/topi/test_pooling.py      |  39 ++-
 .../contrib/test_hexagon/topi/test_quantize.py     |  60 ++---
 .../contrib/test_hexagon/topi/test_reduce.py       | 209 ++++++++--------
 .../contrib/test_hexagon/topi/test_reshape.py      |  76 +++---
 .../contrib/test_hexagon/topi/test_resize2d.py     | 144 +++++------
 .../contrib/test_hexagon/topi/test_softmax.py      | 121 ++++-----
 tests/python/relay/test_op_level1.py               |  26 ++
 tests/python/unittest/test_te_create_primfunc.py   |  15 +-
 .../unittest/test_tir_schedule_transform_layout.py |  48 ++++
 37 files changed, 1201 insertions(+), 1030 deletions(-)
 copy {vta/python/vta/exec => tests/python/contrib/test_hexagon/topi/slice_op}/__init__.py (95%)
 rename tests/python/contrib/test_hexagon/topi/{ => slice_op}/test_argmax_slice.py (97%)
 rename tests/python/contrib/test_hexagon/topi/{ => slice_op}/test_avg_pool2d_slice.py (99%)
 rename tests/python/contrib/test_hexagon/topi/{ => slice_op}/test_cast_slice.py (98%)
 rename tests/python/contrib/test_hexagon/topi/{test_clip.py => slice_op/test_clip_slice.py} (97%)
 mode change 100755 => 100644
 rename tests/python/contrib/test_hexagon/topi/{ => slice_op}/test_conv2d_slice.py (99%)
 mode change 100755 => 100644
 rename tests/python/contrib/test_hexagon/topi/{ => slice_op}/test_depthwise_conv2d_slice.py (99%)
 rename tests/python/contrib/test_hexagon/topi/{ => slice_op}/test_dequantize_slice.py (99%)
 rename tests/python/contrib/test_hexagon/topi/{ => slice_op}/test_max_pool2d_slice.py (98%)
 rename tests/python/contrib/test_hexagon/topi/{ => slice_op}/test_relu_slice.py (97%)
 rename tests/python/contrib/test_hexagon/topi/{ => slice_op}/test_softmax_slice.py (98%)
 rename tests/python/contrib/test_hexagon/topi/{ => slice_op}/test_tanh_slice.py (97%)
 mode change 100755 => 100644 tests/python/contrib/test_hexagon/topi/test_add_subtract_multiply.py
 mode change 100755 => 100644 tests/python/contrib/test_hexagon/topi/test_quantize.py
 mode change 100755 => 100644 tests/python/contrib/test_hexagon/topi/test_resize2d.py