This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch nightly-docker-update
in repository https://gitbox.apache.org/repos/asf/tvm.git
discard 095f5be88c [ci][docker] Nightly Docker image update
add 4e260d183f [BugFix][Pattern] Fixed a bug in PatternGrouper (#12901)
add de6d806775 [CMSIS-NN] Support for int16 conv2d (#12950)
add 1ea1a0bc88 [Hexagon] 3-stage pipeline; multi queue async DMA for cache
read / write (#12954)
add 61a7632b55 [microTVM] Use default Project Options in template projects
and add Makefile for Arduino template project (#12818)
add 3a125375a3 [Hexagon] Don't print simulator protocol messages (#12958)
add a661864f85 [skip ci] Modify issue templates to align with Issue
Tracking RFC (#12898)
add af01526ae2 [skip ci] Edits to the Bug & Flaky test Issue templates to
reduce word count (#12985)
add 438fdd2477 [ci][docker] Nightly Docker image update
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (095f5be88c)
\
N -- N -- N refs/heads/nightly-docker-update (438fdd2477)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/ISSUE_TEMPLATE/bug-report.md | 11 +-
.github/ISSUE_TEMPLATE/ci-image.md | 29 ---
.github/ISSUE_TEMPLATE/ci-problem.md | 13 +-
.github/ISSUE_TEMPLATE/documentation.md | 11 +-
.github/ISSUE_TEMPLATE/feature-tracking.md | 11 +-
.github/ISSUE_TEMPLATE/flaky-test.md | 10 +-
Jenkinsfile | 20 +-
.../arduino/template_project/Makefile.template | 64 +++++
.../template_project/microtvm_api_server.py | 271 ++++++++++++++-------
.../reference-vm/base-box/base_box_test.sh | 6 +-
.../zephyr/template_project/microtvm_api_server.py | 80 ++----
ci/jenkins/Jenkinsfile.j2 | 20 +-
cmake/modules/Arduino.cmake | 1 +
gallery/how_to/work_with_microtvm/micro_aot.py | 2 +-
.../how_to/work_with_microtvm/micro_autotune.py | 6 +-
.../work_with_microtvm/micro_reference_vm.py | 4 +-
gallery/how_to/work_with_microtvm/micro_tflite.py | 2 +-
gallery/how_to/work_with_microtvm/micro_train.py | 2 +-
python/tvm/micro/project_api/server.py | 84 +++++++
python/tvm/micro/testing/evaluation.py | 4 +-
python/tvm/relay/op/contrib/cmsisnn.py | 47 +++-
src/relay/backend/contrib/cmsisnn/buffer_size.cc | 80 +++++-
src/relay/backend/contrib/cmsisnn/buffer_size.h | 36 ++-
src/relay/backend/contrib/cmsisnn/relay_to_tir.cc | 52 ++--
.../contrib/cmsisnn/scalar_to_tensor_constant.cc | 6 +-
.../backend/contrib/cmsisnn/tir_to_runtime.cc | 4 +-
src/relay/ir/dataflow_matcher.cc | 5 +
src/runtime/hexagon/hexagon_device_api.cc | 6 +-
src/runtime/hexagon/hexagon_user_dma.cc | 24 +-
src/runtime/hexagon/hexagon_user_dma.h | 15 +-
src/runtime/hexagon/ring_buffer.h | 41 +++-
src/runtime/hexagon/rpc/simulator/session.cc | 1 -
.../cpp-runtime/hexagon/hexagon_user_dma_tests.cc | 104 +++++---
tests/cpp-runtime/hexagon/ring_buffer_tests.cc | 30 ++-
.../backend/contrib/cmsisnn/buffer_size_test.cc | 86 +++++--
tests/lint/check_file_type.py | 2 +
tests/micro/arduino/README.md | 4 +-
tests/micro/arduino/test_arduino_rpc_server.py | 2 +-
tests/micro/arduino/test_utils.py | 2 +-
tests/micro/common/test_tvmc.py | 14 +-
.../test_arduino_microtvm_api_server.py | 26 +-
tests/micro/project_api/test_project_api.py | 92 +++++++
tests/micro/zephyr/README.md | 6 +-
tests/micro/zephyr/test_utils.py | 2 +-
tests/micro/zephyr/test_zephyr.py | 6 +-
tests/micro/zephyr/test_zephyr_aot_exec.py | 2 +-
tests/python/contrib/test_cmsisnn/test_conv2d.py | 142 +++++++----
tests/python/contrib/test_cmsisnn/utils.py | 65 +++--
.../test_hexagon/test_software_pipeline_async.py | 43 +++-
tests/python/relay/test_dataflow_pattern.py | 30 +++
tests/python/relay/test_pass_merge_composite.py | 14 +-
tests/python/unittest/test_micro_project_api.py | 35 +++
tests/scripts/task_python_microtvm.sh | 4 +-
53 files changed, 1208 insertions(+), 471 deletions(-)
delete mode 100644 .github/ISSUE_TEMPLATE/ci-image.md
create mode 100644 apps/microtvm/arduino/template_project/Makefile.template
rename {apps/microtvm/arduino/template_project/tests =>
tests/micro/project_api}/test_arduino_microtvm_api_server.py (89%)
create mode 100644 tests/micro/project_api/test_project_api.py