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 4ef9011fe6 [Relax] [ONNX] Add support for HardSigmoid (#17089)
add c0abab769f [TIR][DLight] Enable SimdGroup op for Metal (#17112)
No new revisions were added by this update.
Summary of changes:
include/tvm/tir/builtin.h | 44 ++-
python/tvm/dlight/gpu/matmul.py | 145 ++++++++++
python/tvm/script/ir_builder/tir/ir.py | 8 +
python/tvm/tir/__init__.py | 6 +
python/tvm/tir/op.py | 191 ++++++++++++-
python/tvm/tir/tensor_intrin/metal.py | 350 +++++++++++++++++++++++
src/runtime/thread_storage_scope.h | 7 +
src/target/source/codegen_metal.cc | 82 +++++-
src/target/source/codegen_metal.h | 3 +
src/tir/op/builtin.cc | 12 +
tests/python/dlight/test_gpu_matmul_tensorize.py | 283 +++++++++++++++++-
11 files changed, 1124 insertions(+), 7 deletions(-)
create mode 100644 python/tvm/tir/tensor_intrin/metal.py