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/06/25 00:00:29 UTC

[tvm] branch nightly-docker-update updated (6316040e97 -> 02a67184a3)

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 6316040e97 [ci][docker] Nightly Docker image update
     add 4cb18b43d1 add glu (#11865)
     add d2cbdf381b [MetaSchedule] Introduce ArgInfo::FromEntryFunc (#11866)
     add 3e1a888ffe [Minor][MetaSchedule] Suppress warning for using `None` (#11868)
     add 6097af8aed [Target] Add a few AWS C5 instances in target tag system (#11869)
     add b99d93afec [fix] quantize op consistent with python description (#11872)
     add 8c3d922b7e [TIR][Pass] Remove-Weight-Layout-Rewrite-Block (#11870)
     add ed3294fb3f [Arith] Update BufferDomainTouched to support vector access. (#11722)
     add f1d30a27b2 [Hexagon] Softmax slice op initial version (#11559)
     add aa66e9fd84 update (#11838)
     add 2c3b56c9d3 [ci] Add manual workflow to upload files to CI bucket (#11856)
     add fb5e9c9cad [CI][Lint] Disable no-else-return check in pylint (#11327)
     add 77d73b5b28 [Relay] [Pytorch] Add aten::maximum and aten::minimum (#11864)
     add 503f1a65d4 add instance infer layout (#11871)
     add bca278a829 [Arith] Fix DetectIterMap floordiv when IterSum only contains base expr (#11887)
     add b1fed2d17d [PROFILING] Catch any errors while setting locale for printing (#11860)
     add d439f6c4f1 Delete `from __future__ import annotations` since it requires Python 3.7+ (#11889)
     add ed638ef6db [TIR][Arith] Avoid assigning range of possible values to integers (#11859)
     add 2d9de96a5c [docs] Update tlcpack-sphinx-addon (#11891)
     add 9aaae28bbc [TIR] HoistExpression, generalization of HoistIfThenElse (#11592)
     add 12dad9a4a1 [Relay][Frontend][Onnx] Add support for onnx sequence operators. (#11894)
     add 02a67184a3 [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   (6316040e97)
            \
             N -- N -- N   refs/heads/nightly-docker-update (02a67184a3)

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/upload_ci_resource.yml           |  58 ++
 apps/microtvm/reference-vm/arduino/Vagrantfile     |   2 +-
 apps/microtvm/reference-vm/zephyr/Vagrantfile      |   2 +-
 docker/install/ubuntu_install_python_package.sh    |   2 +-
 docs/contribute/code_guide.rst                     |  35 ++
 include/tvm/meta_schedule/apply_history_best.h     |   8 +-
 include/tvm/meta_schedule/arg_info.h               |   8 +
 include/tvm/tir/stmt.h                             |  10 +-
 include/tvm/tir/transform.h                        |  19 +
 jenkins/Jenkinsfile.j2                             |  14 +-
 jenkins/README.md                                  |  13 +
 python/tvm/meta_schedule/apply_history_best.py     |   6 +-
 python/tvm/meta_schedule/arg_info.py               |  19 +
 python/tvm/meta_schedule/builder/local_builder.py  |   8 +-
 python/tvm/meta_schedule/profiler.py               |   1 -
 python/tvm/relay/backend/te_compiler.py            |  15 +-
 python/tvm/relay/build_module.py                   |  12 +-
 python/tvm/relay/frontend/onnx.py                  |  59 ++
 python/tvm/relay/frontend/pytorch.py               |  22 +
 python/tvm/tir/transform/transform.py              |  83 ++-
 python/tvm/topi/hexagon/slice_ops/__init__.py      |   1 +
 python/tvm/topi/hexagon/slice_ops/softmax_slice.py |  76 +++
 python/tvm/topi/hexagon/utils.py                   |  31 ++
 src/arith/const_int_bound.cc                       |  41 +-
 src/arith/domain_touched.cc                        |  18 +-
 src/arith/iter_affine_map.cc                       |   6 +-
 src/arith/rewrite_simplify.cc                      |   8 +-
 src/meta_schedule/apply_history_best.cc            |   7 +-
 src/meta_schedule/arg_info.cc                      |   9 +
 src/meta_schedule/database/database.cc             |   8 +-
 .../feature_extractor/per_store_feature.cc         |   1 +
 .../search_strategy/evolutionary_search.cc         |  24 +-
 src/meta_schedule/search_strategy/replay_func.cc   |   6 +-
 src/meta_schedule/search_strategy/replay_trace.cc  |   9 +-
 .../space_generator/post_order_apply.cc            |   7 +-
 src/meta_schedule/utils.h                          |   1 +
 src/relay/backend/te_compiler_cache.cc             |  27 +-
 src/relay/op/nn/nn.cc                              |  75 +--
 src/relay/qnn/op/quantize.cc                       |   5 +-
 src/runtime/profiling.cc                           |  18 +-
 src/target/tag.cc                                  |  17 +
 src/te/operation/create_primfunc.cc                |   8 +-
 src/tir/transforms/hoist_expression.cc             | 608 +++++++++++++++++++++
 src/tir/transforms/hoist_if_then_else.cc           | 438 ---------------
 .../remove_weight_layout_rewrite_block.cc          | 121 ++++
 src/tir/transforms/simplify.cc                     |  36 ++
 tests/lint/pylintrc                                |  27 +-
 .../contrib/test_hexagon/test_softmax_slice.py     | 140 +++++
 tests/python/driver/tvmc/test_pass_config.py       |   4 +-
 tests/python/frontend/onnx/test_forward.py         |  80 +++
 tests/python/frontend/pytorch/test_forward.py      |  24 +
 tests/python/relay/test_pass_convert_op_layout.py  |  47 ++
 tests/python/unittest/test_arith_domain_touched.py |  63 ++-
 .../python/unittest/test_arith_iter_affine_map.py  |   5 +
 ...e_postproc_rewrite_parallel_vectorize_unroll.py |   6 -
 tests/python/unittest/test_te_create_primfunc.py   |   2 +-
 .../test_tir_transform_hoist_expression.py         | 476 ++++++++++++++++
 .../python/unittest/test_tir_transform_hoist_if.py |  61 ++-
 ...transform_remove_weight_layout_rewrite_block.py |  91 +++
 ...test_tir_transform_renormalize_split_pattern.py |  53 +-
 .../python/unittest/test_tir_transform_simplify.py |  83 +++
 61 files changed, 2525 insertions(+), 639 deletions(-)
 create mode 100644 .github/workflows/upload_ci_resource.yml
 create mode 100644 python/tvm/topi/hexagon/slice_ops/softmax_slice.py
 create mode 100644 src/tir/transforms/hoist_expression.cc
 delete mode 100644 src/tir/transforms/hoist_if_then_else.cc
 create mode 100644 src/tir/transforms/remove_weight_layout_rewrite_block.cc
 create mode 100644 tests/python/contrib/test_hexagon/test_softmax_slice.py
 create mode 100644 tests/python/unittest/test_tir_transform_hoist_expression.py
 create mode 100644 tests/python/unittest/test_tir_transform_remove_weight_layout_rewrite_block.py