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 981009d457 [Fix] PagedKVCache fetching compute stream when copy stream
is needed (#16714)
add c00cc031de [Target] Automatically detect system triple when not
specified by the user (#16513)
add 695f958bc9 [TIR] Improve well-formed check's handling of match buffer
(#16655)
add af0c038f2e [SVE] Add codegen support for scalable buffer accesses
(#16696)
add 071fb8a429 [RUNTIME] Ensure NDArray.CopyTo(Device) always sync (#16716)
add 0978ab656c [RUNTIME][METAL] Provide richer runtime when error happens
(#16713)
add 939b8b9ce7 [Web] Seperate parallel shard download and iterative shard
loading (#16650)
No new revisions were added by this update.
Summary of changes:
include/tvm/runtime/data_type.h | 16 ++-
include/tvm/runtime/device_api.h | 2 +
include/tvm/runtime/ndarray.h | 12 +-
python/tvm/relay/op/strategy/arm_cpu.py | 18 ++-
python/tvm/testing/utils.py | 7 +
python/tvm/topi/arm_cpu/injective.py | 4 +-
src/runtime/metal/metal_common.h | 27 ++--
src/runtime/metal/metal_device_api.mm | 4 +-
src/runtime/metal/metal_module.mm | 16 ++-
src/runtime/ndarray.cc | 11 ++
src/target/llvm/codegen_llvm.cc | 66 ++++-----
src/target/llvm/codegen_llvm.h | 1 -
src/target/parsers/cpu.cc | 18 +++
src/tir/analysis/verify_well_formed.cc | 1 +
src/tir/ir/data_type_rewriter.cc | 2 +-
src/tir/ir/expr.cc | 7 +-
src/tir/ir/tir_visitor_with_path.cc | 78 +++++------
src/tir/ir/tir_visitor_with_path.h | 43 ++++++
src/tir/transforms/storage_rewrite.cc | 7 +
tests/cpp/target_test.cc | 17 ++-
tests/cpp/tir_scalable_datatype.cc | 16 +++
.../test_auto_scheduler_search_task.py | 19 ++-
.../autotvm/test_autotvm_graph_tuner_core.py | 7 +
.../python/codegen/test_target_codegen_aarch64.py | 41 ++++++
tests/python/frontend/tflite/test_forward.py | 59 ++++++--
tests/python/integration/test_legacy_tuning.py | 2 +-
.../relay/aot/test_aot_create_function_metadata.py | 38 ++++--
.../relay/strategy/test_select_implementation.py | 10 +-
tests/python/relay/test_any.py | 9 ++
tests/python/relay/test_autotvm_task_extraction.py | 1 +
tests/python/relay/test_custom_datatypes.py | 3 +
tests/python/relay/test_op_qnn_conv2d.py | 7 +
tests/python/relay/test_op_qnn_leaky_relu.py | 2 +-
tests/python/relay/test_pass_alter_op_layout.py | 27 +++-
tests/python/relay/test_roofline.py | 4 +-
.../runtime/test_runtime_module_based_interface.py | 12 +-
tests/python/target/test_arm_target.py | 125 +++++++++++++++++
.../test_tir_analysis_verify_well_formed.py | 149 +++++++++++++++++++++
tests/python/topi/test_topi_bitserial_dense.py | 5 +-
web/src/artifact_cache.ts | 5 +
web/src/runtime.ts | 133 +++++++++++++-----
41 files changed, 841 insertions(+), 190 deletions(-)