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/20 00:02:40 UTC

[tvm] branch nightly-docker-update updated (5809e0ddc7 -> 8d88dd9d7f)

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 5809e0ddc7 [ci][docker] Nightly Docker image update
     add 60cf692a63 [Frontend][TFLite] fix detection_postprocess's non_max_suppression_attrs["force_suppress"] (#12593)
     add 2af9b90ec1 [TIR] Implement API for padded layout transformations (#12720)
     add e30ac71bde [Arith][TIR] IntSetAnalyzer, delay intersection of IntSet until use (#12821)
     add da7f65d9d1 [Hexagon] Create test examples to show parallelization (#12654)
     add f19046caba [MetaSchedule] Support padding for irregular shapes for CUDA tensor core (#12759)
     add 79c48f3887 [TIR][Bugfix] Correct handling of buffer argument when scheduling (#12816)
     add f9b692765a [BugFix][LLVM] Fix the bug that the generated systemlib cannot register ```__tvm_module_ctx``` symbol sometimes (#12817)
     add 8d88dd9d7f [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   (5809e0ddc7)
            \
             N -- N -- N   refs/heads/nightly-docker-update (8d88dd9d7f)

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/tir/schedule/schedule.h                |  17 +-
 python/tvm/relay/frontend/tflite.py                |   2 +-
 python/tvm/tir/function.py                         |  46 +-
 python/tvm/tir/schedule/_type_checker.py           |   2 +-
 python/tvm/tir/schedule/analysis.py                |   7 +-
 python/tvm/tir/schedule/schedule.py                |  48 +-
 python/tvm/tir/schedule/transform.py               |   8 +-
 python/tvm/tir/tensor_intrin/cuda.py               |   2 +-
 src/arith/int_set.cc                               | 126 ++-
 src/meta_schedule/postproc/rewrite_layout.cc       |   3 +-
 .../multi_level_tiling_tensor_core.cc              |   5 +-
 src/target/llvm/codegen_cpu.cc                     |   2 +-
 src/tir/ir/index_map.cc                            |   2 +-
 src/tir/schedule/analysis.h                        |   8 +-
 src/tir/schedule/analysis/analysis.cc              |  53 +-
 src/tir/schedule/concrete_schedule.cc              |   6 +-
 src/tir/schedule/concrete_schedule.h               |   2 +-
 src/tir/schedule/instruction_traits.h              |   4 +-
 src/tir/schedule/primitive.h                       |   4 +-
 .../schedule/primitive/layout_transformation.cc    | 910 ++++++++++++++++++++-
 src/tir/schedule/schedule.cc                       |   6 +-
 src/tir/schedule/traced_schedule.cc                |  15 +-
 src/tir/schedule/traced_schedule.h                 |   2 +-
 src/tir/schedule/transform.cc                      |  10 +-
 src/tir/schedule/transform.h                       |   3 +-
 .../contrib/test_hexagon/test_parallel_hvx.py      | 230 ++++++
 .../contrib/test_hexagon/test_parallel_scalar.py   | 159 ++++
 tests/python/frontend/tflite/test_forward.py       |  37 +-
 .../test_meta_schedule_schedule_rule_mlt_tc.py     | 149 +++-
 .../python/unittest/test_tir_schedule_analysis.py  |  29 +-
 .../test_tir_schedule_set_axis_separator.py        |  41 +-
 .../unittest/test_tir_schedule_transform_layout.py | 410 ++++++++++
 34 files changed, 2171 insertions(+), 217 deletions(-)
 create mode 100644 tests/python/contrib/test_hexagon/test_parallel_hvx.py
 create mode 100644 tests/python/contrib/test_hexagon/test_parallel_scalar.py