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 cd269101b7 [ci] Use S3 for artifacts (#11349)
add 5e29dddd02 [microTVM][ARM] Add Relay tests for conv2d registered
schedules (#11250)
No new revisions were added by this update.
Summary of changes:
python/tvm/autotvm/__init__.py | 1 +
python/tvm/autotvm/task/__init__.py | 1 +
python/tvm/autotvm/task/dispatcher.py | 53 +++
python/tvm/micro/testing/aot_test_utils.py | 105 +++++
python/tvm/micro/{testing.py => testing/utils.py} | 0
.../aot_test_utils.py => python/tvm/testing/aot.py | 450 +++++++++------------
tests/micro/zephyr/test_utils.py | 2 +-
tests/micro/zephyr/test_zephyr.py | 2 +-
tests/micro/zephyr/test_zephyr_aot.py | 1 -
.../python/contrib/test_cmsisnn/test_binary_ops.py | 6 +-
tests/python/contrib/test_cmsisnn/test_conv2d.py | 10 +-
.../contrib/test_cmsisnn/test_fully_connected.py | 9 +-
.../contrib/test_cmsisnn/test_invalid_graphs.py | 7 +-
tests/python/contrib/test_cmsisnn/test_networks.py | 10 +-
tests/python/contrib/test_cmsisnn/test_pooling.py | 11 +-
tests/python/contrib/test_cmsisnn/test_softmax.py | 9 +-
tests/python/contrib/test_ethosu/infra.py | 2 +-
tests/python/contrib/test_ethosu/test_codegen.py | 2 +-
tests/python/contrib/test_ethosu/test_networks.py | 2 +-
tests/python/integration/test_arm_mprofile_dsp.py | 8 +-
tests/python/relay/aot/test_c_device_api.py | 8 +-
tests/python/relay/aot/test_cpp_aot.py | 3 +-
tests/python/relay/aot/test_crt_aot.py | 6 +-
tests/python/relay/aot/test_crt_aot_usmp.py | 5 +-
.../relay/strategy/arm_cpu/test_conv2d_nchw.py | 110 +++++
.../relay/strategy/arm_cpu/test_conv2d_nhwc.py | 154 +++++++
.../strategy/arm_cpu/test_depthwise_conv2d.py | 153 +++++++
.../relay/strategy/arm_cpu/test_group_conv2d.py | 151 +++++++
tests/python/relay/utils/external_codegen.py | 3 +-
tests/python/unittest/test_crt.py | 2 +-
tests/scripts/task_python_microtvm.sh | 2 +
31 files changed, 961 insertions(+), 327 deletions(-)
create mode 100644 python/tvm/micro/testing/aot_test_utils.py
rename python/tvm/micro/{testing.py => testing/utils.py} (100%)
rename tests/python/relay/aot/aot_test_utils.py => python/tvm/testing/aot.py
(72%)
create mode 100644 tests/python/relay/strategy/arm_cpu/test_conv2d_nchw.py
create mode 100644 tests/python/relay/strategy/arm_cpu/test_conv2d_nhwc.py
create mode 100644 tests/python/relay/strategy/arm_cpu/test_depthwise_conv2d.py
create mode 100644 tests/python/relay/strategy/arm_cpu/test_group_conv2d.py