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 0fc047c98b [Compute-inline] Prefer T.where for reverse compute-inlined
block with predicate (#17128)
add c4e6f96386 [TOPI] Add dense schedule for fp16 and fp32 using gemm
(#17091)
add fd7c81de3b [TIR][Schedule] Remove `@type_check` for
`set_axis_separator` (#17134)
No new revisions were added by this update.
Summary of changes:
.../tvm/relax/transform/legalize_ops/manipulate.py | 1 -
python/tvm/relay/op/strategy/arm_cpu.py | 25 +++
python/tvm/testing/utils.py | 5 +
python/tvm/tir/schedule/schedule.py | 1 -
python/tvm/topi/arm_cpu/dense.py | 21 ++-
python/tvm/topi/arm_cpu/dense_alter_op.py | 34 +++-
python/tvm/topi/arm_cpu/dense_gemm.py | 174 +++++++++++++++++++++
python/tvm/topi/nn/dense.py | 2 +
tests/python/frontend/keras/test_forward.py | 2 +-
tests/python/relay/strategy/arm_cpu/test_dense.py | 50 ++++++
.../relay/strategy/test_select_implementation.py | 12 +-
tests/python/relay/test_any.py | 6 +
tests/python/relay/test_pass_alter_op_layout.py | 35 ++++-
tests/scripts/task_lint.sh | 4 +-
14 files changed, 342 insertions(+), 30 deletions(-)
create mode 100644 python/tvm/topi/arm_cpu/dense_gemm.py