This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch last-successful
in repository https://gitbox.apache.org/repos/asf/tvm.git.
from 7cfaa88 [Hexagon] Enable running CI tests via simulator (#10473)
add 085d36c [MetaSchedule] Refactor testing workloads (#10497)
No new revisions were added by this update.
Summary of changes:
python/tvm/auto_scheduler/relay_integration.py | 12 +-
python/tvm/meta_schedule/integration.py | 15 +-
python/tvm/meta_schedule/testing/__init__.py | 3 -
python/tvm/meta_schedule/testing/byoc_trt.py | 53 ---
.../meta_schedule/testing/conv2d_winograd_cpu.py | 2 +-
.../meta_schedule/testing/custom_builder_runner.py | 140 +++++++
python/tvm/meta_schedule/testing/relay_workload.py | 435 +++++++++++++++------
python/tvm/relay/build_module.py | 31 +-
python/tvm/topi/nn/conv2d.py | 8 +-
src/meta_schedule/integration.cc | 22 +-
src/meta_schedule/schedule_rule/winograd.cc | 2 +-
.../unittest/test_meta_schedule_byoc_tensorrt.py | 187 +++------
.../unittest/test_meta_schedule_integration.py | 97 +++--
tests/python/unittest/test_meta_schedule_runner.py | 20 +-
.../unittest/test_meta_schedule_tune_relay.py | 95 ++---
15 files changed, 683 insertions(+), 439 deletions(-)
delete mode 100644 python/tvm/meta_schedule/testing/byoc_trt.py
create mode 100644 python/tvm/meta_schedule/testing/custom_builder_runner.py