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/09/02 00:00:37 UTC

[tvm] branch nightly-docker-update updated (9b421ded74 -> a08926a7cd)

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 9b421ded74 [ci][docker] Nightly Docker image update
     add c6516a534f [TIR] Allow string/buffer arguments to Schedule cache_read/write (#12661)
     add aa6c7123d0 [ETHOSN] Fix tests pylint errors (#12649)
     add 38ba8c0bb6 [Relay] Extract intermediate node by its expression ID (#12646)
     add 038f15b5e2 [Hexagon] Implement fixed_point_multiply op through intrinsics. (#12659)
     add 32f9a5f4d4 [MetaSchedule] Fix autoinline for single const consumer block (#12668)
     add effcd2251b Add methods to get and set late-bound constants. (#12664)
     add e814f798ed [Adreno] Change compute/schedule for ToMixedPrecision pass (#12537)
     add 54786bbff3 [hexagon][tests] re-enable maxpool hardware test (#12676)
     add 50dad0d9a3 [HEXAGON][TOPI]Slice Op Argmax uint8 (#12472)
     add eecb7fd494 [MetaSchedule] Introduce `Union` and `OrderedUnion` in Database (#12628)
     add a08926a7cd [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   (9b421ded74)
            \
             N -- N -- N   refs/heads/nightly-docker-update (a08926a7cd)

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:
 Jenkinsfile                                        |  20 +--
 ci/jenkins/Jenkinsfile.j2                          |  20 +--
 include/tvm/meta_schedule/database.h               |  16 +++
 include/tvm/runtime/vm/executable.h                |  13 ++
 python/tvm/meta_schedule/database/__init__.py      |   2 +
 .../database/ordered_union_database.py             | 112 ++++++++++++++++
 .../tvm/meta_schedule/database/union_database.py   | 112 ++++++++++++++++
 python/tvm/relay/analysis/analysis.py              |  38 ++++++
 python/tvm/relay/op/strategy/adreno.py             | 142 ++++++---------------
 python/tvm/runtime/vm.py                           |  10 ++
 python/tvm/tir/schedule/schedule.py                |  42 +++++-
 python/tvm/topi/adreno/conv2d_alter_op.py          |  48 ++++---
 python/tvm/topi/adreno/conv2d_nchw.py              | 117 ++++++++---------
 python/tvm/topi/adreno/conv2d_nchw_winograd.py     |  45 +------
 python/tvm/topi/adreno/conv2d_nhwc.py              | 111 ++++++++--------
 python/tvm/topi/adreno/conv2d_nhwc_winograd.py     |  45 +------
 python/tvm/topi/adreno/conv2d_winograd_common.py   |  19 ++-
 python/tvm/topi/adreno/depthwise_conv2d_nchw.py    |  42 +-----
 python/tvm/topi/adreno/depthwise_conv2d_nhwc.py    |  38 +-----
 python/tvm/topi/hexagon/__init__.py                |   1 +
 python/tvm/topi/hexagon/injective.py               |   7 +-
 python/tvm/topi/hexagon/slice_ops/argmax.py        |   7 +
 python/tvm/topi/hexagon/tensor_intrin.py           |  71 +++++++++++
 src/meta_schedule/database/json_database.cc        |  22 ----
 .../database/ordered_union_database.cc             |  86 +++++++++++++
 src/meta_schedule/database/union_database.cc       |  88 +++++++++++++
 src/meta_schedule/schedule_rule/auto_inline.cc     |   5 +-
 src/meta_schedule/utils.h                          |  22 ++++
 src/relay/analysis/extract_intermediate_expr.cc    |  88 +++++++++++++
 src/runtime/vm/executable.cc                       |  24 +++-
 tests/lint/pylint.sh                               |   1 +
 tests/python/contrib/test_ethosn/infrastructure.py |  50 ++++----
 .../python/contrib/test_ethosn/test_concatenate.py |  10 +-
 .../test_ethosn/test_constant_duplication.py       |  10 +-
 tests/python/contrib/test_ethosn/test_conv2d.py    |  18 ++-
 .../contrib/test_ethosn/test_depth_to_space.py     |   4 +
 .../contrib/test_ethosn/test_fullyconnected.py     |  25 ++--
 .../python/contrib/test_ethosn/test_leaky_relu.py  |   2 +
 tests/python/contrib/test_ethosn/test_mean.py      |   2 +
 tests/python/contrib/test_ethosn/test_multiply.py  |   3 +
 tests/python/contrib/test_ethosn/test_networks.py  |  13 +-
 .../contrib/test_ethosn/test_partition_params.py   |  24 ++--
 tests/python/contrib/test_ethosn/test_pooling.py   |   8 +-
 tests/python/contrib/test_ethosn/test_relu.py      |   4 +
 .../python/contrib/test_ethosn/test_requantize.py  |   5 +
 tests/python/contrib/test_ethosn/test_resize.py    |   4 +
 tests/python/contrib/test_ethosn/test_sigmoid.py   |  11 +-
 tests/python/contrib/test_ethosn/test_split.py     |   9 +-
 tests/python/contrib/test_ethosn/test_tanh.py      |   4 +
 .../python/contrib/test_ethosn/test_topologies.py  |  33 +++--
 .../test_hexagon/test_fixed_point_multiply.py      | 140 ++++++++++++++++++++
 .../contrib/test_hexagon/topi/test_argmax_slice.py |  14 +-
 .../test_hexagon/topi/test_max_pool2d_slice.py     |   3 -
 .../test_analysis_extract_intermediate_expr.py     | 130 +++++++++++++++++++
 tests/python/relay/test_conv2d_nchw_texture.py     |   4 +-
 tests/python/relay/test_conv2d_nhwc_texture.py     |   2 +-
 tests/python/relay/test_vm.py                      |  80 ++++++++++++
 tests/python/unittest/test_link_params.py          |   9 +-
 .../python/unittest/test_meta_schedule_database.py |  37 ++++++
 ...test_meta_schedule_schedule_rule_auto_inline.py |  28 ++++
 .../unittest/test_tir_schedule_cache_read_write.py |   8 +-
 61 files changed, 1560 insertions(+), 548 deletions(-)
 create mode 100644 python/tvm/meta_schedule/database/ordered_union_database.py
 create mode 100644 python/tvm/meta_schedule/database/union_database.py
 create mode 100644 python/tvm/topi/hexagon/tensor_intrin.py
 create mode 100644 src/meta_schedule/database/ordered_union_database.cc
 create mode 100644 src/meta_schedule/database/union_database.cc
 create mode 100644 src/relay/analysis/extract_intermediate_expr.cc
 create mode 100644 tests/python/contrib/test_hexagon/test_fixed_point_multiply.py
 create mode 100644 tests/python/relay/test_analysis_extract_intermediate_expr.py