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/03 00:00:26 UTC

[tvm] branch nightly-docker-update updated (abe5f780af -> 74f2736cd8)

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


    omit abe5f780af [ci][docker] Nightly Docker image update
     add b723d22b36 [docs] Update installation instructions (#12269)
     add bca0385862 [UnitTest][TIR] Testing utility for before/after transform tests (#12264)
     add 7b72c4e0a5 Hide registration errors in `test_myfloat` (#12268)
     add bc91978362 [Arith] Handle bitwise_and with power of 2 in modular set (#12272)
     add 0261b8ed8b [MetaSchedule][Minor] Fix Median Number (#12273)
     add 4a6d655561 [Pylint] Making hexagon tests pylint compliant Part 2 of N (#12176)
     add d3d1038e15 [ci][docker] Update GPU image (#12265)
     add ab1d95b984 [TensorFlow] Disable failing tests on AArch64 (#12257)
     add d10a7d186e [ONNX] Disable failing tests on AArch64 (#12256)
     add 19644bce3b [Pytorch] Disable failing tests on AArch64 (#12255)
     add a9df801543 [ETHOSN] Upgrade NPU driver stack to v22.05 (#11759)
     add 759a648cd5 [TVMC] Only load extra targets when there are workspace pools (#12253)
     add b05dca1f19 [Adreno] Add markup pass of relay tensors for static texture planning (#11878)
     add 2bfd52f885 [Docker] Update onnxoptimizer to 0.2.7 (#12278)
     add a5ff7c05de [CI] Shard Qemu python tests (#12258)
     add 1da66d7df2 [MetaSchedule] Check auto tensorization applicability in MultiLevelTilingWithIntrin (#12263)
     add b8893b557a [Relay][Op] Trilu operator implementation (#12124)
     add f0650986ad Revert "[CI] Fix build android rpc failure in CI" (#12277)
     add 1ca07438e0 [release] Add script to gather PRs for a release (#11987)
     add aa0d2bb098 [microTVM]Fix dense_dsp schedule in autotuning (#12271)
     add fefc27f261 [ci] Specify permissions for tvm bot (#11937)
     add 74f2736cd8 [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   (abe5f780af)
            \
             N -- N -- N   refs/heads/nightly-docker-update (74f2736cd8)

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/workflows/main.yml                         |  15 +-
 .github/workflows/tvmbot.yml                       |   8 +
 Jenkinsfile                                        | 297 ++++++++---
 ci/jenkins/Jenkinsfile.j2                          |  16 +-
 ci/jenkins/Test.groovy.j2                          |  44 +-
 .../install/ubuntu_install_ethosn_driver_stack.sh  |   2 +-
 docker/install/ubuntu_install_onnx.sh              |   2 +-
 docs/contribute/release_process.rst                |  44 +-
 docs/install/docker.rst                            |  21 +-
 docs/install/index.rst                             |  23 +-
 docs/install/tlcpack.rst                           |  24 -
 include/tvm/relay/attrs/transform.h                |   9 +
 include/tvm/relay/transform.h                      |   5 +
 python/tvm/driver/tvmc/workspace_pools.py          |  20 +-
 python/tvm/meta_schedule/testing/tlcbench.py       |   3 +-
 python/tvm/relay/frontend/onnx.py                  |  15 +
 python/tvm/relay/frontend/pytorch.py               |  35 +-
 python/tvm/relay/op/_transform.py                  |   4 +
 python/tvm/relay/op/contrib/ethosn.py              |   7 +
 python/tvm/relay/op/op_attrs.py                    |   5 +
 python/tvm/relay/op/strategy/arm_cpu.py            |  10 +-
 python/tvm/relay/op/strategy/generic.py            |  28 +
 python/tvm/relay/op/transform.py                   |  43 ++
 python/tvm/testing/utils.py                        | 206 ++++++++
 python/tvm/topi/adreno/conv2d_nchw.py              |  19 +-
 python/tvm/topi/adreno/conv2d_nhwc.py              |  16 +-
 python/tvm/topi/arm_cpu/dense.py                   |  12 +-
 python/tvm/topi/transform.py                       |  58 +++
 src/arith/modular_set.cc                           |  13 +
 .../multi_level_tiling_with_intrin.cc              |  28 +-
 src/meta_schedule/utils.h                          |   2 +-
 src/relay/backend/build_module.cc                  |   1 +
 src/relay/backend/contrib/ethosn/codegen.cc        |   2 -
 src/relay/backend/contrib/ethosn/codegen_ethosn.h  |   2 -
 .../backend/contrib/ethosn/ethosn_api_version.h    |   3 +
 src/relay/op/tensor/transform.cc                   |  50 ++
 src/relay/transforms/annotate_texture_storage.cc   | 523 +++++++++++++++++++
 src/runtime/contrib/ethosn/ethosn_device.cc        |  11 +-
 src/tir/schedule/analysis.h                        |  10 +
 src/tir/schedule/analysis/analysis.cc              |  30 +-
 src/tir/schedule/ir_comparator.cc                  |  11 +-
 tests/lint/pylint.sh                               |   8 +
 tests/python/contrib/test_ethosn/infrastructure.py |  30 +-
 tests/python/contrib/test_ethosn/test_conv2d.py    |   7 +-
 .../contrib/test_ethosn/test_fullyconnected.py     |   7 +-
 tests/python/contrib/test_ethosn/test_networks.py  |  74 +--
 tests/python/contrib/test_ethosn/test_split.py     |   8 +
 .../python/contrib/test_ethosn/test_topologies.py  |  34 +-
 tests/python/contrib/test_hexagon/test_autotvm.py  |  38 +-
 .../contrib/test_hexagon/test_cache_read_write.py  | 100 ++--
 tests/python/contrib/test_hexagon/test_launcher.py | 161 +++---
 .../contrib/test_hexagon/test_maxpool2d_blocked.py |  86 ++--
 tests/python/contrib/test_hexagon/test_models.py   |  15 +-
 .../contrib/test_hexagon/test_run_unit_tests.py    |  11 +-
 .../contrib/test_hexagon/test_thread_pool.py       |  13 +-
 tests/python/contrib/test_hexagon/test_usmp.py     |  22 +-
 tests/python/driver/tvmc/test_workspace_pools.py   |  16 +
 tests/python/frontend/onnx/test_forward.py         |  20 +-
 tests/python/frontend/pytorch/test_forward.py      |  15 +
 tests/python/frontend/tensorflow/test_forward.py   |   6 +-
 .../test_meta_schedule_auto_tensorize.py           |  29 +-
 tests/python/relay/test_conv2d_nchw_texture.py     | 569 ++++++++++++++++++++-
 tests/python/relay/test_conv2d_nhwc_texture.py     |   7 +-
 .../relay/test_depthwise_conv2d_nchw_texture.py    |   4 +-
 .../relay/test_depthwise_conv2d_nhwc_texture.py    |   2 +-
 tests/python/relay/test_op_level3.py               |  29 ++
 tests/python/relay/utils/adreno_utils.py           |  15 +
 tests/python/topi/python/test_topi_transform.py    |  39 ++
 tests/python/unittest/test_arith_modular_set.py    |  32 +-
 tests/python/unittest/test_custom_datatypes.py     |   7 +-
 ...ta_schedule_schedule_rule_multi_level_tiling.py |  22 +-
 .../python/unittest/test_tir_transform_simplify.py |  38 +-
 .../unittest/test_tvm_testing_before_after.py      |  83 +++
 tests/scripts/git_utils.py                         |   9 +-
 tests/scripts/github_tvmbot.py                     |  54 +-
 tests/scripts/release/.gitignore                   |   5 +
 tests/scripts/release/README.md                    |  43 ++
 tests/scripts/release/gather_prs.py                | 216 ++++++++
 tests/scripts/release/list_rfcs.py                 |  75 +++
 tests/scripts/release/make_notes.py                | 133 +++++
 80 files changed, 3194 insertions(+), 565 deletions(-)
 delete mode 100644 docs/install/tlcpack.rst
 create mode 100644 src/relay/transforms/annotate_texture_storage.cc
 mode change 100644 => 100755 tests/python/frontend/pytorch/test_forward.py
 mode change 100644 => 100755 tests/python/frontend/tensorflow/test_forward.py
 create mode 100644 tests/python/unittest/test_tvm_testing_before_after.py
 create mode 100644 tests/scripts/release/.gitignore
 create mode 100644 tests/scripts/release/README.md
 create mode 100644 tests/scripts/release/gather_prs.py
 create mode 100644 tests/scripts/release/list_rfcs.py
 create mode 100644 tests/scripts/release/make_notes.py