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/07/07 00:00:38 UTC

[tvm] branch nightly-docker-update updated (24646659f2 -> 1703bca51d)

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 24646659f2 [ci][docker] Nightly Docker image update
     add 5bc6684c9d add aten::randn (#11994)
     add ffd8c9377f [TIR] Make conversion from Integer to int64_t explicit (#12010)
     add 111169c7df Fix infercorrect layout in Layoutrewrite and improve naming. (#12007)
     add c57320bd9d [CI] Allow command-line argument or TVM_BUILD_PATH for C++ unittests (#12011)
     add c98626cbfa [USMP] HillClimb stability patch (#10547)
     add 95f578912f [Topi] [Hexagon] Conv2d slice op initial version (#11489)
     add cfe8318990 [microNPU] Calculate memory pressure for microNPU external functions (#11209)
     add 1703bca51d [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   (24646659f2)
            \
             N -- N -- N   refs/heads/nightly-docker-update (1703bca51d)

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                                        |  16 +-
 ci/jenkins/Jenkinsfile.j2                          |  16 +-
 include/tvm/ir/attrs.h                             |   2 +-
 include/tvm/ir/expr.h                              |   2 +-
 include/tvm/relay/feature.h                        |   2 +-
 include/tvm/topi/cuda/injective.h                  |   2 +-
 include/tvm/topi/cuda/pooling.h                    |   2 +-
 include/tvm/topi/cuda/reduction.h                  |   2 +-
 include/tvm/topi/detail/strided_slice.h            |  16 +-
 include/tvm/topi/transform.h                       |   4 +-
 python/tvm/contrib/ethosu/cascader/scheduler.py    |   8 +-
 python/tvm/relay/backend/contrib/ethosu/codegen.py |  59 +++-
 python/tvm/relay/frontend/pytorch.py               |   9 +
 python/tvm/tir/usmp/utils.py                       |   9 +
 python/tvm/topi/hexagon/slice_ops/__init__.py      |   1 +
 python/tvm/topi/hexagon/slice_ops/conv2d.py        | 242 +++++++++++++++
 python/tvm/topi/hexagon/utils.py                   |  14 +
 src/auto_scheduler/transform_step.cc               |  36 +--
 src/contrib/ethosu/cascader/parts/ethosu.cc        |   5 +-
 src/meta_schedule/arg_info.cc                      |   5 +-
 src/meta_schedule/database/json_database.cc        |   2 +-
 .../postproc/rewrite_unbound_block.cc              |   2 +-
 src/meta_schedule/postproc/verify_gpu_code.cc      |   2 +-
 src/meta_schedule/schedule_rule/auto_bind.cc       |   2 +-
 .../schedule_rule/multi_level_tiling.cc            |   4 +-
 src/meta_schedule/utils.h                          |   2 +-
 src/parser/parser.cc                               |   2 +-
 src/parser/token.h                                 |   4 +-
 src/relay/analysis/extract_fake_quantized_ops.cc   |   2 +-
 src/relay/analysis/extract_operators.cc            |   2 +-
 src/relay/backend/build_module.cc                  |   4 +-
 src/relay/backend/contrib/ethosu/source_module.cc  |   2 +-
 src/relay/backend/contrib/tensorrt/codegen.cc      |   4 +-
 src/relay/backend/utils.cc                         |   4 +-
 src/relay/ir/expr.cc                               |   2 +-
 src/relay/op/tensor/transform.cc                   |  66 ++--
 src/relay/op/vision/yolo.cc                        |   2 +-
 src/relay/qnn/op/requantize.cc                     |   2 +-
 src/relay/transforms/fuse_ops.cc                   |   3 +-
 src/relay/transforms/simplify_expr.cc              |   9 +-
 src/relay/transforms/transform_layout.h            |  82 +++--
 src/target/build_common.h                          |   2 +-
 src/target/llvm/llvm_common.cc                     |   2 +-
 src/target/metadata.h                              |   2 +-
 src/target/metadata_module.cc                      |   2 +-
 src/target/source/codegen_metal.cc                 |   2 +-
 src/target/source/interface_c.cc                   |   4 +-
 src/target/source/source_module.cc                 |   8 +-
 src/target/spirv/build_vulkan.cc                   |   5 +-
 src/target/spirv/spirv_support.cc                  |  18 +-
 src/target/target.cc                               |   2 +-
 src/tir/analysis/calculate_workspace.cc            |   3 +-
 src/tir/contrib/ethosu/passes.cc                   |   2 +-
 src/tir/schedule/primitive/cache_read_write.cc     |   2 +-
 .../schedule/primitive/layout_transformation.cc    |   4 +-
 src/tir/schedule/primitive/sampling.cc             |   2 +-
 src/tir/schedule/transform.cc                      |   2 +-
 src/tir/transforms/inject_software_pipeline.cc     |   2 +-
 src/tir/transforms/lower_thread_allreduce.cc       |   3 +-
 src/tir/transforms/lower_warp_memory.cc            |   2 +-
 src/tir/usmp/algo/greedy.cc                        |   7 +-
 src/tir/usmp/algo/hill_climb.cc                    |  63 ++--
 src/tir/usmp/analysis/extract_buffer_info.cc       |  12 +-
 .../convert_pool_allocations_to_offsets.cc         |   4 +-
 src/tir/usmp/utils.cc                              |   4 +-
 tests/cpp/container_test.cc                        |  14 +-
 .../cascader/test_calculate_memory_pressure.py     | 186 +++++++++++
 .../test_ethosu/cascader/test_memory_reduction.py  | 163 +++++++++-
 .../contrib/test_hexagon/topi/test_conv2d_slice.py | 339 +++++++++++++++++++++
 tests/python/frontend/pytorch/test_forward.py      |  12 +
 tests/python/relay/aot/test_crt_aot_usmp.py        |  50 ++-
 tests/python/relay/test_pass_alter_op_layout.py    |  12 +
 .../unittest/test_tir_usmp_algo_hill_climb.py      |  12 +-
 tests/scripts/ci.py                                |  15 +-
 tests/scripts/task_cpp_unittest.sh                 |  17 +-
 75 files changed, 1375 insertions(+), 260 deletions(-)
 create mode 100644 python/tvm/topi/hexagon/slice_ops/conv2d.py
 create mode 100644 tests/python/contrib/test_ethosu/cascader/test_calculate_memory_pressure.py
 create mode 100755 tests/python/contrib/test_hexagon/topi/test_conv2d_slice.py