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 486c49895d [TIR] [Hexagon] Add get_vtcm_allocation_sizes with lowering
(#14720)
add 1a70083711 [microNPU][ETHOSU] Softmax int8 legalization support
(#14629)
add d32dea800b [METAL] Update metal runtime to directly store kernel map
(#14727)
No new revisions were added by this update.
Summary of changes:
python/tvm/autotvm/task/topi_integration.py | 4 +
.../tvm/relay/backend/contrib/ethosu/__init__.py | 1 +
.../tvm/relay/backend/contrib/ethosu/legalize.py | 2 +
.../backend/contrib/ethosu/softmax_rewriter.py | 516 +++++++++++++++++++++
.../backend/contrib/ethosu/te/unary_elementwise.py | 3 +-
.../tvm/relay/backend/contrib/ethosu/tir/passes.py | 4 +-
.../backend/contrib/ethosu/tir_to_cs_translator.py | 16 +-
python/tvm/relay/op/contrib/ethosu.py | 62 +++
src/runtime/metal/metal_module.h | 11 +-
src/runtime/metal/metal_module.mm | 108 +++--
src/target/opt/build_metal_off.cc | 7 +-
src/target/source/codegen_metal.cc | 31 +-
tests/python/contrib/test_ethosu/test_codegen.py | 18 +
tests/python/contrib/test_ethosu/test_legalize.py | 120 +++++
14 files changed, 817 insertions(+), 86 deletions(-)
create mode 100644 python/tvm/relay/backend/contrib/ethosu/softmax_rewriter.py