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/16 00:01:23 UTC

[tvm] branch nightly-docker-update updated (9632eec971 -> 4145042f1e)

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 9632eec971 [ci][docker] Nightly Docker image update
     add 397cf8781e [Arith][Refactor] Return Optional<PrimExpr> from TryConstFold (#12784)
     add 1f8b5dec29 [TIR, Schedule] Add schedule primitive PadEinsum (#12750)
     add 9b1042585e [Arith] Simplify nested if_then_else (#12749)
     add f5517d4a08 [Docker][CI][RISC-V] Build riscv-isa-sim (spike) in ci_riscv Docker image to enable RISC-V unit testing (#12534)
     add c9002509f6 [Target] Print deprecation warning before canonicalisation in build module (#12747)
     add c00ce572c2 [ci] Add retries to docker push (#12773)
     add 111a88d04e [ci][docker] Always build cmake from source (#12774)
     add 5b43c62ee6 [ci] Remove author check from ping bot (#12788)
     add afad20d8d9 Fix typo in doc of logging (#12798)
     add 6a051843a9 [TVMScript] IRBuilder methods for `For` (#12786)
     add 9a3b3dd1ce [TVMScript] Fix parse minimal i32 literal for tir script (#12772)
     add 4145042f1e [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   (9632eec971)
            \
             N -- N -- N   refs/heads/nightly-docker-update (4145042f1e)

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                                        | 1575 +++-----------------
 ci/jenkins/Build.groovy.j2                         |   18 +-
 ci/jenkins/Deploy.groovy.j2                        |    6 +-
 ci/jenkins/DockerBuild.groovy.j2                   |    6 +-
 ci/jenkins/Jenkinsfile.j2                          |   20 +-
 ci/jenkins/Prepare.groovy.j2                       |    6 +-
 ci/jenkins/Test.groovy.j2                          |    2 +-
 ci/jenkins/macros.j2                               |   34 +-
 ci/scripts/ping_reviewers.py                       |   19 +-
 ci/scripts/{git_change_docker.sh => retry.sh}      |   31 +-
 docker/Dockerfile.ci_arm                           |    6 +-
 docker/Dockerfile.ci_cortexm                       |   12 +-
 docker/Dockerfile.ci_cpu                           |    6 +-
 docker/Dockerfile.ci_hexagon                       |    3 +
 docker/Dockerfile.ci_i386                          |    6 +-
 docker/Dockerfile.ci_minimal                       |    3 +
 docker/Dockerfile.ci_riscv                         |   30 +-
 docker/Dockerfile.ci_wasm                          |    3 +
 .../install/ubuntu_download_csinn2_compute_lib.sh  |   20 +-
 ...sis.sh => ubuntu_download_xuantie_gcc_linux.sh} |   31 +-
 ...is.sh => ubuntu_download_xuantie_gcc_newlib.sh} |   31 +-
 ...ll_cmsis.sh => ubuntu_download_xuantie_qemu.sh} |   30 +-
 docker/install/ubuntu_install_arduino.sh           |    1 -
 docker/install/ubuntu_install_core.sh              |    6 +-
 docker/install/ubuntu_install_spike_sim.sh         |   81 +
 docker/install/ubuntu_install_zephyr.sh            |    5 -
 include/tvm/runtime/logging.h                      |    4 +-
 include/tvm/script/ir_builder/tir/frame.h          |   51 +
 include/tvm/script/ir_builder/tir/ir.h             |   53 +
 include/tvm/tir/schedule/schedule.h                |   20 +
 python/tvm/driver/build_module.py                  |    4 +-
 python/tvm/script/ir_builder/tir/frame.py          |    9 +
 python/tvm/script/ir_builder/tir/ir.py             |  172 +++
 python/tvm/script/parser.py                        |    7 +
 python/tvm/tir/schedule/schedule.py                |  122 ++
 src/arith/canonical_simplify.cc                    |   21 +-
 src/arith/const_fold.h                             |   91 +-
 src/arith/int_set.cc                               |   10 +-
 src/arith/iter_affine_map.cc                       |   15 +-
 src/arith/pattern_match.h                          |    3 +-
 src/arith/rewrite_simplify.cc                      |   62 +-
 src/script/ir_builder/tir/frame.cc                 |    6 +
 src/script/ir_builder/tir/ir.cc                    |   76 +
 src/tir/op/op.cc                                   |   57 +-
 src/tir/schedule/analysis.h                        |   27 +
 src/tir/schedule/analysis/analysis.cc              |   29 +
 src/tir/schedule/concrete_schedule.cc              |    6 +
 src/tir/schedule/concrete_schedule.h               |    1 +
 src/tir/schedule/primitive.h                       |   11 +-
 .../schedule/primitive/layout_transformation.cc    |   36 +-
 src/tir/schedule/primitive/pad_einsum.cc           |  474 ++++++
 src/tir/schedule/schedule.cc                       |    3 +-
 src/tir/schedule/traced_schedule.cc                |   12 +-
 src/tir/schedule/traced_schedule.h                 |    3 +-
 src/tir/schedule/transform.cc                      |    8 +
 src/tir/schedule/transform.h                       |    7 +-
 tests/python/ci/test_ci.py                         |   20 -
 .../python/unittest/test_arith_rewrite_simplify.py |   10 +
 .../unittest/test_tir_schedule_pad_einsum.py       |  122 ++
 .../unittest/test_tvmscript_ir_builder_tir.py      |   55 +
 tests/python/unittest/test_tvmscript_roundtrip.py  |   10 +
 61 files changed, 1830 insertions(+), 1778 deletions(-)
 copy ci/scripts/{git_change_docker.sh => retry.sh} (64%)
 mode change 100755 => 100644
 copy docker/install/{ubuntu_install_cmsis.sh => ubuntu_download_xuantie_gcc_linux.sh} (60%)
 copy docker/install/{ubuntu_install_cmsis.sh => ubuntu_download_xuantie_gcc_newlib.sh} (60%)
 copy docker/install/{ubuntu_install_cmsis.sh => ubuntu_download_xuantie_qemu.sh} (60%)
 create mode 100755 docker/install/ubuntu_install_spike_sim.sh
 create mode 100644 src/tir/schedule/primitive/pad_einsum.cc
 create mode 100644 tests/python/unittest/test_tir_schedule_pad_einsum.py