This is an automated email from the ASF dual-hosted git repository.

leandron pushed a change to branch ci-docker-staging
in repository https://gitbox.apache.org/repos/asf/tvm.git


 discard 2006d44798 [ACL] Adjust mobilenet test for Keras 2.9
 discard f66b0e6984 Apply transformers fix.
 discard 4b66fb99f6 Apply ONNX fix
 discard 341d8dbac7 [CI] Update Docker image tags to 20220822-105603-52f5c155f
 discard c8ea79be02 Add #12130 PR for testing.
 discard 8cb946ed6f Update TensorFlow to release 2.9
     add 7c318d7196 [ETHOSN] Remove support for older versions of the driver 
stack (#12347)
     add 8146a9bf2c [TIR] Support AllocateConst nodes in TensorIR scheduling 
flow (#12489)
     add 48a8cbd57d [ONNX] Fix test to disable default ONNX frontend constant 
folding (#12532)
     add 389675668a [CI] Set test dependency on "transformers" package with 
pytest.importorskip (#12528)
     add 40fd43e24b [MicroTVM] expose project options in autotuning (#12479)
     add 3f56851264 [TIR][Schedule] Support for specific consumer block 
targeting in cache_read (#12505)
     add c1bd0227be [FIX] Fix bug in resize2d unittest func name (#12498)
     add 4d7e7a8b57 [ci] xfail failing ethosu codegen tests (#12508)
     new 5ea15c2339 Update TensorFlow to release 2.9
     new 16de572c13 Add #12130 PR for testing.
     new 02cb556f74 [CI] Update Docker image tags to 20220822-105603-52f5c155f
     new 5f179ce001 [ACL] Adjust mobilenet test for Keras 2.9

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   (2006d44798)
            \
             N -- N -- N   refs/heads/ci-docker-staging (5f179ce001)

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.

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 include/tvm/meta_schedule/apply_history_best.h     |  4 +-
 include/tvm/meta_schedule/extracted_task.h         | 10 ++-
 include/tvm/tir/schedule/schedule.h                |  4 +-
 python/tvm/meta_schedule/apply_history_best.py     |  2 +-
 python/tvm/meta_schedule/relay_integration.py      |  2 +-
 python/tvm/meta_schedule/testing/utils.py          | 13 ++--
 python/tvm/micro/testing/evaluation.py             | 19 ++++--
 python/tvm/relay/op/contrib/ethosn.py              | 23 ++++++-
 python/tvm/testing/utils.py                        | 24 +++++++
 python/tvm/tir/schedule/schedule.py                | 17 ++++-
 src/meta_schedule/extracted_task.cc                | 27 +++++---
 src/printer/tvmscript_printer.cc                   | 19 ++++++
 src/relay/backend/contrib/ethosn/codegen.cc        |  5 +-
 src/relay/backend/contrib/ethosn/codegen_ethosn.h  |  1 -
 src/relay/backend/contrib/ethosn/ethosn_api.cc     |  1 -
 .../backend/contrib/ethosn/ethosn_api_version.h    | 58 ----------------
 src/relay/backend/task_extraction.cc               | 10 +--
 src/relay/backend/te_compiler_cache.cc             | 26 +++++--
 src/relay/backend/te_compiler_cache.h              |  7 +-
 src/runtime/contrib/ethosn/ethosn_device.cc        | 32 ---------
 src/runtime/contrib/ethosn/ethosn_device.h         |  7 --
 src/runtime/contrib/ethosn/ethosn_runtime.cc       | 12 ----
 src/runtime/contrib/ethosn/ethosn_runtime.h        |  3 -
 src/te/operation/create_primfunc.cc                | 12 ++++
 src/te/operation/create_primfunc.h                 |  8 +++
 src/tir/analysis/estimate_flops.cc                 |  1 +
 src/tir/schedule/concrete_schedule.cc              | 11 ++-
 src/tir/schedule/concrete_schedule.h               |  4 +-
 src/tir/schedule/primitive.h                       |  3 +-
 src/tir/schedule/primitive/cache_read_write.cc     | 61 ++++++++++++-----
 src/tir/schedule/trace.cc                          |  3 +
 src/tir/schedule/traced_schedule.cc                |  8 ++-
 src/tir/schedule/traced_schedule.h                 |  4 +-
 src/tir/schedule/transform.cc                      | 19 +++++-
 src/tir/transforms/bind_params.cc                  | 79 +++++++++++++---------
 src/tir/transforms/inject_software_pipeline.cc     |  5 +-
 src/tir/transforms/ir_utils.h                      | 10 +++
 .../plan_update_buffer_allocation_location.cc      | 36 +++++++---
 tests/python/contrib/test_ethosn/infrastructure.py | 32 ---------
 tests/python/contrib/test_ethosn/test_conv2d.py    |  2 +-
 .../contrib/test_ethosn/test_fullyconnected.py     |  2 +-
 tests/python/contrib/test_ethosn/test_networks.py  | 50 ++------------
 tests/python/contrib/test_ethosn/test_split.py     | 14 ++--
 .../python/contrib/test_ethosn/test_topologies.py  | 19 +++---
 tests/python/contrib/test_ethosu/test_codegen.py   | 20 +++++-
 tests/python/relay/dyn/test_dynamic_op_level5.py   |  4 +-
 tests/python/unittest/test_link_params.py          | 64 +++++++++++++++++-
 .../unittest/test_tir_schedule_cache_read_write.py | 42 ++++++++++++
 48 files changed, 495 insertions(+), 344 deletions(-)
 delete mode 100644 src/relay/backend/contrib/ethosn/ethosn_api_version.h

Reply via email to