You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by gi...@apache.org on 2022/08/24 00:00:44 UTC

[tvm] branch nightly-docker-update updated (7320d09f95 -> 62b98aee6a)

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 7320d09f95 [ci][docker] Nightly Docker image update
     add 8e95bba697 Remove mutable defaults in mlp_model (#12546)
     add 3bd168194f check for CMSIS_PATH in project generation (#12547)
     add 5cef6bf559 [microTVM] Rework evaluate_model_accuracy into a more generic helper function (#12539)
     add 58f2139ffd [microTVM] Replace static fixtures with parameterization (#12530)
     add e252d7f3ab [docs] Add CI contribution instructions (#12551)
     add d26bf809e4 [ACL] Adjust mobilenet test for Keras 2.9 (#12541)
     add 3983a472c6 [COMMUNITY] @konturn -> Reviewer (#12543)
     add 383bd41931 Fix TFLite 2.9 tests (#12130)
     add 52779f1273 [CMSIS-NN] Pad fusion with QNN Conv2D (#12353)
     add d271678388 [CI][AArch64] Skip libgomp failures in integration tests (#12554)
     add ff46fa15e0 [ETHOSN] Fix requantize output conversion (#12540)
     add dd7ae2d3e5 [Relay] Add Rsqrt to SimplifyExpr (#12363)
     add da5836f230 [AutoTVM] Add support for text buffers to ApplyHistoryBest (#12521)
     add 1d71c1b4aa [skip ci][ci] Mark more ethosu tests with xfail (#12560)
     add 99b9b74b12 [CI] Remove Vela from ci_cpu (#12533)
     add 4d104e5ec6 [ETHOSN] Add support for special indices of Reshape (#12556)
     add 8c23469e20 [MicroTVM] add heap-size to project options (#12390)
     add 13ebbfb37f Replace std::result_of (deprecated in C++17) with std::invoke_result, NFC (#12562)
     add 8174d082e8 Add using directives for otherwise hidden virtual functions, NFC (#12561)
     add 62b98aee6a [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   (7320d09f95)
            \
             N -- N -- N   refs/heads/nightly-docker-update (62b98aee6a)

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:
 CONTRIBUTORS.md                                    |   1 +
 Jenkinsfile                                        |  20 +-
 .../template_project/CMakeLists.txt.template       |   3 +-
 apps/microtvm/zephyr/template_project/boards.json  |   3 +-
 .../zephyr/template_project/microtvm_api_server.py |  51 ++++
 .../zephyr/template_project/src/host_driven/main.c |   2 +-
 ci/jenkins/Jenkinsfile.j2                          |  20 +-
 docker/Dockerfile.ci_cpu                           |   7 -
 docs/contribute/ci.rst                             |  23 ++
 include/tvm/script/printer/traced_object.h         |   2 +-
 python/tvm/autotvm/record.py                       |  31 +-
 python/tvm/autotvm/task/dispatcher.py              |  87 +++---
 python/tvm/meta_schedule/cost_model/mlp_model.py   |  37 ++-
 python/tvm/micro/testing/__init__.py               |   2 +-
 python/tvm/micro/testing/evaluation.py             |  21 +-
 python/tvm/micro/testing/pytest_plugin.py          |  30 +-
 python/tvm/micro/testing/utils.py                  |   5 +
 python/tvm/relay/frontend/keras.py                 |   8 +-
 python/tvm/relay/op/_tensor.py                     |   1 +
 python/tvm/relay/op/contrib/cmsisnn.py             |  50 ++-
 python/tvm/relay/op/contrib/dnnl.py                |   3 +-
 src/relay/backend/annotate_used_memory.cc          |   2 +-
 src/relay/backend/contrib/cmsisnn/fuse_pads.cc     | 209 +++++++++++++
 src/relay/backend/contrib/ethosn/ethosn_api.cc     |  60 ++--
 src/relay/transforms/annotate_texture_storage.cc   |   4 +
 src/relay/transforms/compiler_function_utils.cc    |   2 +
 src/relay/transforms/simplify_expr.cc              |  24 ++
 tests/micro/arduino/test_arduino_workflow.py       |  13 +-
 tests/micro/common/conftest.py                     |  16 -
 tests/micro/common/test_autotune.py                |  14 +-
 .../contrib/test_arm_compute_lib/test_network.py   |  22 +-
 tests/python/contrib/test_cmsisnn/test_conv2d.py   | 277 +++++++++++++++--
 .../python/contrib/test_cmsisnn/test_fuse_pads.py  | 340 +++++++++++++++++++++
 tests/python/contrib/test_cmsisnn/utils.py         |  45 ++-
 .../python/contrib/test_ethosn/test_requantize.py  |  63 ++++
 tests/python/contrib/test_ethosn/test_reshape.py   |  37 +--
 tests/python/contrib/test_ethosu/test_codegen.py   |  17 +-
 tests/python/driver/tvmc/test_autotuner.py         |   9 +
 tests/python/driver/tvmc/test_frontends.py         |   9 +
 tests/python/driver/tvmc/test_model.py             |   4 +
 tests/python/frontend/tflite/test_forward.py       |  33 +-
 tests/python/relay/test_pass_simplify_expr.py      |  19 ++
 tests/python/unittest/test_autotvm_record.py       |  92 +++++-
 43 files changed, 1435 insertions(+), 283 deletions(-)
 create mode 100644 src/relay/backend/contrib/cmsisnn/fuse_pads.cc
 create mode 100644 tests/python/contrib/test_cmsisnn/test_fuse_pads.py