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 9f8fe3c503 [topi] Add `arm_cpu` specific pooling schedules (#14855)
add e4a120955b [RELAY] Fix bug in MergeCompilerRegions pass (#15211)
add 81d7f79f03 Revert "[topi] Add `arm_cpu` specific pooling schedules"
(#15286)
add 592b3583dc [Exec] Add a script to test GPU memory bandwidth (#15287)
add fddbec7079 [TIR] Implement TIR macros (#15260)
add 33232deefb [FRONTEND][TFLITE][BugFix] Fix variable typo in batchmatmul
converting func (#15259)
add 1234f88b60 [BugFix][Relay][GraphExecutor] Fix set_input_zero_copy()
precision bug (#15291)
No new revisions were added by this update.
Summary of changes:
python/tvm/exec/gpu_memory_bandwidth.py | 192 +++++++++++++++++++++
python/tvm/relay/frontend/tflite.py | 12 +-
python/tvm/relay/op/strategy/arm_cpu.py | 17 +-
python/tvm/script/parser/_core.py | 2 +-
python/tvm/script/parser/core/entry.py | 31 ++--
python/tvm/script/parser/tir/__init__.py | 4 +-
python/tvm/script/parser/tir/entry.py | 99 ++++++++++-
python/tvm/script/parser/tir/parser.py | 60 ++++++-
python/tvm/topi/arm_cpu/mprofile/dsp/__init__.py | 2 -
python/tvm/topi/arm_cpu/mprofile/dsp/pool.py | 30 ++--
python/tvm/topi/arm_cpu/pooling.py | 91 +---------
src/relay/transforms/merge_compiler_regions.cc | 36 +++-
src/runtime/graph_executor/graph_executor.cc | 25 ++-
src/runtime/graph_executor/graph_executor.h | 6 +-
tests/python/frontend/tflite/test_forward.py | 18 ++
.../relay/test_pass_merge_compiler_regions.py | 62 +++++++
tests/python/topi/python/test_topi_pooling.py | 1 -
tests/python/unittest/test_set_input_zero_copy.py | 137 +++++++++++++++
tests/python/unittest/test_tvmscript_parser_tir.py | 107 ++++++++++++
19 files changed, 787 insertions(+), 145 deletions(-)
create mode 100644 python/tvm/exec/gpu_memory_bandwidth.py
create mode 100644 tests/python/unittest/test_set_input_zero_copy.py