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/27 00:00:48 UTC

[tvm] branch nightly-docker-update updated (198494c6dd -> 5e8426fb1c)

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 198494c6dd [ci][docker] Nightly Docker image update
     add 3224817d08 [TOPI][Bugfix] Make semantics of empty `axis` in `squeeze` consistent with Relay (#12596)
     add 4f431c87c2 [TIR] Expose Memory Copy-Related PTX Builtins (#12611)
     add e02f2f9fdd [TIR][Schedule] enhance compute_at and reverse_compute_at primitive to choose possible position (#12450)
     add d171b4af09 [SimplifyExpr] Add simplify for dq->arg funcs (#12580)
     add d87fa854b8 [Hexagon] Initial support for meta schedule tuning (#12587)
     add 49b3c72935 [TIR] More hygenic TVM_SREF macros (#12607)
     add 2e83e03b2c [CI] Update Hexagon image to install boost (#12613)
     add 23e794422a Replace '> >' in templates with >>, NFC (#12615)
     add 7f1856d34f [Hexagon] Asynchronous DMA support (#12411)
     add 5e8426fb1c [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   (198494c6dd)
            \
             N -- N -- N   refs/heads/nightly-docker-update (5e8426fb1c)

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                                        |  22 +--
 apps/hexagon_api/CMakeLists.txt                    |   2 +
 ci/jenkins/Jenkinsfile.j2                          |  20 +-
 docs/arch/convert_layout.rst                       |  10 +-
 docs/arch/inferbound.rst                           |   4 +-
 docs/dev/how_to/relay_bring_your_own_codegen.rst   |   2 +-
 include/tvm/auto_scheduler/feature.h               |   8 +-
 include/tvm/relay/attrs/image.h                    |  14 +-
 include/tvm/runtime/module.h                       |   2 +-
 include/tvm/support/span.h                         |   2 +-
 include/tvm/te/operation.h                         |   2 +-
 include/tvm/tir/schedule/schedule.h                |  14 +-
 include/tvm/topi/detail/extern.h                   |   2 +-
 include/tvm/topi/transform.h                       |   6 +-
 .../src/main/native/org_apache_tvm_native_c_api.cc |   4 +-
 python/tvm/contrib/hexagon/meta_schedule.py        | 166 ++++++++++++++++
 python/tvm/contrib/hexagon/session.py              |   8 +-
 python/tvm/contrib/hexagon/tools.py                |   7 +
 python/tvm/meta_schedule/default_config.py         |   6 +-
 python/tvm/target/target.py                        |   5 +
 python/tvm/tir/__init__.py                         |   1 +
 python/tvm/tir/op.py                               | 111 +++++++++++
 python/tvm/tir/schedule/schedule.py                |  16 ++
 python/tvm/tir/tensor_intrin/__init__.py           |   2 +-
 .../tvm/tir/tensor_intrin/{x86.py => hexagon.py}   |  52 +++--
 src/arith/analyzer.cc                              |   2 +-
 src/autotvm/touch_extractor.cc                     |  14 +-
 src/contrib/ethosu/cascader/propagator.cc          |   8 +-
 src/contrib/ethosu/cascader/propagator.h           |   6 +-
 src/ir/span.cc                                     |   2 +-
 src/meta_schedule/mutator/mutate_parallel.cc       |   4 +-
 src/meta_schedule/mutator/mutate_thread_binding.cc |   8 +-
 src/meta_schedule/mutator/mutate_tile_size.cc      |   4 +-
 src/meta_schedule/mutator/mutate_unroll.cc         |   4 +-
 .../postproc/rewrite_parallel_vectorize_unroll.cc  |   4 +-
 src/meta_schedule/schedule_rule/auto_bind.cc       |   2 +-
 src/meta_schedule/schedule_rule/auto_inline.cc     |   2 +-
 .../schedule_rule/multi_level_tiling.cc            |   2 +-
 .../multi_level_tiling_tensor_core.cc              |   4 +-
 .../schedule_rule/random_compute_location.cc       |   2 +-
 src/meta_schedule/utils.h                          |   2 +-
 src/node/reflection.cc                             |   2 +-
 src/printer/meta_data.h                            |   2 +-
 src/relay/analysis/dependency_graph.cc             |   4 +-
 src/relay/ir/transform.cc                          |   2 +-
 src/relay/transforms/convert_sparse_dense.cc       |   8 +-
 src/relay/transforms/fuse_ops.cc                   |   2 +-
 src/relay/transforms/let_list.h                    |   2 +-
 src/relay/transforms/partial_eval.cc               |   2 +-
 src/relay/transforms/simplify_expr.cc              |  48 +++++
 src/relay/transforms/type_infer.cc                 |   4 +-
 src/runtime/contrib/ethosn/ethosn_device.cc        |   6 +-
 src/runtime/graph_executor/graph_executor.cc       |   4 +-
 src/runtime/hexagon/hexagon_device_api.cc          |   3 +-
 src/runtime/hexagon/hexagon_user_dma.cc            | 112 ++++++-----
 src/runtime/hexagon/hexagon_user_dma.h             |  97 ++++++++++
 src/runtime/hexagon/hexagon_user_dma_descriptors.h |   2 -
 .../hexagon/hexagon_user_dma_instructions.h        |   8 +-
 src/runtime/hexagon/ring_buffer.h                  |  94 +++++++++
 src/runtime/metal/metal_common.h                   |   4 +-
 src/runtime/thread_pool.cc                         |   2 +-
 src/runtime/threading_backend.cc                   |   2 +-
 src/runtime/vm/pooled_allocator.h                  |   2 +-
 src/target/source/codegen_vhls.cc                  |   2 +-
 src/target/target_kind.cc                          |   1 +
 src/te/operation/compute_op.cc                     |   8 +-
 src/te/operation/compute_op.h                      |   4 +-
 src/te/operation/tensor_compute_op.cc              |  13 +-
 src/te/operation/tensorize.cc                      |  29 ++-
 src/te/schedule/graph.h                            |   6 +-
 src/te/schedule/schedule_dataflow_rewrite.cc       |   2 +-
 src/tir/ir/buffer.cc                               |   8 +-
 src/tir/schedule/analysis/analysis.cc              |  48 ++---
 src/tir/schedule/block_scope.cc                    |   2 +-
 src/tir/schedule/concrete_schedule.cc              |  12 +-
 src/tir/schedule/concrete_schedule.h               |  13 +-
 src/tir/schedule/primitive.h                       |  13 +-
 src/tir/schedule/primitive/block_annotate.cc       |   6 +-
 src/tir/schedule/primitive/blockize_tensorize.cc   |   2 +-
 src/tir/schedule/primitive/cache_read_write.cc     |  14 +-
 src/tir/schedule/primitive/compute_at.cc           |  79 +++++---
 src/tir/schedule/primitive/compute_inline.cc       |   8 +-
 src/tir/schedule/primitive/decompose_padding.cc    |   2 +-
 src/tir/schedule/primitive/for_kind.cc             |   4 +-
 src/tir/schedule/primitive/get_block_loop.cc       |   2 +-
 .../schedule/primitive/layout_transformation.cc    |  10 +-
 src/tir/schedule/primitive/loop_transformation.cc  |  10 +-
 src/tir/schedule/primitive/reduction.cc            |  12 +-
 src/tir/schedule/primitive/sampling.cc             |   2 +-
 src/tir/schedule/state.cc                          |  14 +-
 src/tir/schedule/traced_schedule.cc                |  19 +-
 src/tir/schedule/traced_schedule.h                 |   7 +-
 src/tir/schedule/transform.cc                      |   6 +-
 src/tir/schedule/utils.h                           |  51 +++--
 src/tir/transforms/coproc_sync.cc                  |  34 ++--
 src/tir/transforms/inject_double_buffer.cc         |   4 +-
 src/tir/transforms/inject_virtual_thread.cc        |   2 +-
 src/tir/transforms/ir_utils.h                      |   2 +-
 src/tir/transforms/make_packed_api.cc              |   6 +-
 src/tir/transforms/storage_access.h                |   2 +-
 src/tir/transforms/storage_rewrite.cc              |   4 +-
 .../cpp-runtime/hexagon/hexagon_user_dma_tests.cc  | 178 +++++++++++++++++
 tests/cpp-runtime/hexagon/ring_buffer_tests.cc     | 190 +++++++++++++++++++
 .../contrib/test_hexagon/test_meta_schedule.py     | 211 +++++++++++++++++++++
 tests/python/relay/test_pass_simplify_expr.py      |  48 +++++
 tests/python/topi/python/test_topi_transform.py    |   5 +-
 ...chedule_schedule_rule_cross_thread_reduction.py |  16 +-
 ...ta_schedule_schedule_rule_multi_level_tiling.py |  86 ++++-----
 ...hedule_schedule_rule_random_compute_location.py |   2 +-
 tests/python/unittest/test_tir_op_types.py         |  54 +++---
 .../unittest/test_tir_schedule_compute_at.py       | 152 +++++++++++++++
 111 files changed, 1888 insertions(+), 487 deletions(-)
 create mode 100644 python/tvm/contrib/hexagon/meta_schedule.py
 copy python/tvm/tir/tensor_intrin/{x86.py => hexagon.py} (55%)
 create mode 100644 src/runtime/hexagon/hexagon_user_dma.h
 create mode 100644 src/runtime/hexagon/ring_buffer.h
 create mode 100644 tests/cpp-runtime/hexagon/hexagon_user_dma_tests.cc
 create mode 100644 tests/cpp-runtime/hexagon/ring_buffer_tests.cc
 create mode 100644 tests/python/contrib/test_hexagon/test_meta_schedule.py