You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by me...@apache.org on 2022/08/03 17:10:57 UTC

[tvm] branch micro_rename_qemu updated (f2fb18b5a2 -> 548f51ff97)

This is an automated email from the ASF dual-hosted git repository.

mehrdadh pushed a change to branch micro_rename_qemu
in repository https://gitbox.apache.org/repos/asf/tvm.git


    omit f2fb18b5a2 fake name for ci_cortexm
    omit e3e7aa77f3 Jenkins
    omit 2eeb16a428 more ci
    omit 1d1aedb4aa jenkins
    omit ea4bc5e627 RVM files
    omit d0b9cd2db7 demo
    omit 5ea429e5c3 ci script
    omit 52afaf1926 rename files
     add f0650986ad Revert "[CI] Fix build android rpc failure in CI" (#12277)
     add 1ca07438e0 [release] Add script to gather PRs for a release (#11987)
     add aa0d2bb098 [microTVM]Fix dense_dsp schedule in autotuning (#12271)
     add fefc27f261 [ci] Specify permissions for tvm bot (#11937)
     add 85624ff667 [ci][docker] Fix deploy to tlcpackstaging on Docker Hub (#12282)
     add 39ffe0a5ce [TVMScript] Add object path tracing to StructuralEqual (#12101)
     add 49587cfcea [ci] Add retries to S3 uploads/downloads (#12221)
     add 4a6012f732 rename files
     add 9e773264c2 ci script
     add b734e1a6a4 demo
     add 38a5f59aca RVM files
     add 8097750ae6 jenkins
     add d4ddf1e90b more ci
     add fded5cefa1 Jenkins
     add 1967bab9e6 fake name for ci_cortexm
     add 548f51ff97 rebased with main

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   (f2fb18b5a2)
            \
             N -- N -- N   refs/heads/micro_rename_qemu (548f51ff97)

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/main.yml                         |   15 +-
 .github/workflows/tvmbot.yml                       |    8 +
 Jenkinsfile                                        | 1630 +++++++++++++++++---
 ci/jenkins/Deploy.groovy.j2                        |    8 +-
 ci/jenkins/DockerBuild.groovy.j2                   |    2 +-
 ci/jenkins/Jenkinsfile.j2                          |    6 +
 ci/jenkins/Prepare.groovy.j2                       |    1 +
 ci/jenkins/macros.j2                               |   32 +-
 docs/contribute/release_process.rst                |   44 +-
 include/tvm/node/reflection.h                      |    6 +
 include/tvm/node/structural_equal.h                |  157 +-
 python/tvm/ir/base.py                              |   34 +-
 python/tvm/relay/op/strategy/arm_cpu.py            |   10 +-
 python/tvm/runtime/__init__.py                     |    1 +
 python/tvm/runtime/object_path.py                  |   16 +
 python/tvm/topi/arm_cpu/dense.py                   |   12 +-
 src/node/reflection.cc                             |   44 +
 src/node/structural_equal.cc                       |  237 ++-
 src/node/structural_hash.cc                        |  162 +-
 src/tir/analysis/deep_equal.cc                     |   13 +-
 .../unittest/test_container_structural_equal.py    |  155 ++
 .../unittest/test_tir_structural_equal_hash.py     |  188 ++-
 tests/scripts/git_utils.py                         |    9 +-
 tests/scripts/github_tvmbot.py                     |   54 +-
 tests/scripts/release/.gitignore                   |    5 +
 tests/scripts/release/README.md                    |   43 +
 tests/scripts/release/gather_prs.py                |  216 +++
 tests/scripts/release/list_rfcs.py                 |   75 +
 tests/scripts/release/make_notes.py                |  133 ++
 29 files changed, 2982 insertions(+), 334 deletions(-)
 create mode 100644 tests/python/unittest/test_container_structural_equal.py
 create mode 100644 tests/scripts/release/.gitignore
 create mode 100644 tests/scripts/release/README.md
 create mode 100644 tests/scripts/release/gather_prs.py
 create mode 100644 tests/scripts/release/list_rfcs.py
 create mode 100644 tests/scripts/release/make_notes.py