This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch nightly
in repository https://gitbox.apache.org/repos/asf/tvm.git
from cfe1711934 chore: remove repetitive words (#16957)
add b49468ddf1 [SME] Introduce scalable fp32 dense schedule (#16921)
add f044eefd0e [Runtime][Disco] Restore checks for hangup of disco pipe
(#16997)
No new revisions were added by this update.
Summary of changes:
python/tvm/micro/testing/aot_test_utils.py | 10 +
python/tvm/relay/op/strategy/arm_cpu.py | 69 +++-
python/tvm/testing/utils.py | 17 +
python/tvm/tir/tensor_intrin/__init__.py | 1 -
python/tvm/tir/tensor_intrin/arm_cpu.py | 362 ++++++++++++++++++++-
python/tvm/topi/arm_cpu/__init__.py | 5 +-
python/tvm/topi/arm_cpu/arm_utils.py | 26 ++
python/tvm/topi/arm_cpu/dense.py | 10 +-
python/tvm/topi/arm_cpu/dense_alter_op.py | 75 +++++
python/tvm/topi/arm_cpu/matmul.py | 124 +++++++
python/tvm/topi/x86/dense_alter_op.py | 2 +-
src/arith/const_int_bound.cc | 2 +-
src/relay/backend/te_compiler_cache.cc | 4 +-
src/relay/op/nn/nn.cc | 1 +
src/support/pipe.h | 6 +-
src/tir/schedule/ir_comparator.cc | 6 +-
.../python/codegen/test_target_codegen_aarch64.py | 46 ++-
tests/python/integration/test_arm_aprofile.py | 94 ------
...est_meta_schedule_postproc_rewrite_tensorize.py | 2 +-
.../relay/strategy/arm_cpu/scalable_utils.py | 53 +++
.../arm_cpu/{test_dense_dsp.py => test_dense.py} | 91 +++++-
tests/python/relay/strategy/arm_cpu/test_matmul.py | 118 +++++++
.../relay/strategy/test_select_implementation.py | 55 +++-
tests/python/relay/test_pass_alter_op_layout.py | 56 ++++
tests/python/topi/test_topi_matmul.py | 20 +-
25 files changed, 1132 insertions(+), 123 deletions(-)
create mode 100644 python/tvm/topi/arm_cpu/dense_alter_op.py
create mode 100644 python/tvm/topi/arm_cpu/matmul.py
create mode 100644 tests/python/relay/strategy/arm_cpu/scalable_utils.py
rename tests/python/relay/strategy/arm_cpu/{test_dense_dsp.py =>
test_dense.py} (50%)
create mode 100644 tests/python/relay/strategy/arm_cpu/test_matmul.py