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 908741e743 [ci][docker] Nightly Docker image update
add 9e88723385 [TIR] Improved error messages for PrimExpr operator
overloads (#12638)
add 5287d8f11e [ci] Move non-task CI scripts into ci/ folder (#12609)
add 58ee935a53 [TVMScript] support float inf, -inf and nan in TVMScript
parser and printer (#12618)
add b44f1343a1 [microTVM][ARM-DSP] Fix pool schedule (#12653)
add d421e32f1a [microTVM]Fix test util functions (#12641)
add 1c32798a2c [Hexagon] Expose gtest output through runtime exception
(#12502)
add 775520c8f3 [microTVM][Zephyr] Add missing CMSIS-NN source files to
cmake file (#12642)
add caf326fab2 [ci] Add mechanism for trust on certain CI scripts (#12604)
add 57717313f1 [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 (908741e743)
\
N -- N -- N refs/heads/nightly-docker-update (57717313f1)
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/ISSUE_TEMPLATE/flaky-test.md | 2 +-
.github/workflows/cc_bot.yml | 2 +-
.github/workflows/docs_bot.yml | 2 +-
.github/workflows/nightly_docker_update.yml | 2 +-
.github/workflows/ping_reviewers.yml | 2 +-
.github/workflows/tag_teams.yml | 2 +-
.github/workflows/tests_bot.yml | 2 +-
.github/workflows/tvmbot.yml | 2 +-
.../workflows/update_last_successful_branch.yml | 2 +-
Jenkinsfile | 59 +++++++++++++++-------
.../template_project/CMakeLists.txt.template | 6 ++-
ci/README.md | 1 +
ci/jenkins/Jenkinsfile.j2 | 20 ++++----
ci/jenkins/Prepare.groovy.j2 | 37 +++++++++++---
{tests => ci}/scripts/cmd_utils.py | 0
{tests => ci}/scripts/determine_docker_images.py | 0
{tests => ci}/scripts/git_change_docker.sh | 0
{tests => ci}/scripts/git_change_docs.sh | 0
{tests => ci}/scripts/git_skip_ci.py | 0
{tests => ci}/scripts/git_skip_ci_globs.py | 0
{tests => ci}/scripts/git_utils.py | 0
{tests => ci}/scripts/github_cc_reviewers.py | 0
{tests => ci}/scripts/github_docs_comment.py | 0
.../scripts/github_skipped_tests_comment.py | 0
{tests => ci}/scripts/github_tag_teams.py | 0
{tests => ci}/scripts/github_tvmbot.py | 0
{tests => ci}/scripts/http_utils.py | 0
{tests => ci}/scripts/open_docker_update_pr.py | 0
{tests => ci}/scripts/ping_reviewers.py | 0
{tests => ci}/scripts/pytest_ids.py | 0
{tests => ci}/scripts/pytest_wrapper.py | 0
{tests => ci}/scripts/should_rebuild_docker.py | 0
{tests => ci}/scripts/should_run_slow_tests.py | 0
{tests => ci}/scripts/update_branch.py | 0
docker/bash.sh | 2 +-
python/tvm/micro/testing/evaluation.py | 4 +-
python/tvm/micro/testing/utils.py | 6 +--
python/tvm/script/tir/__init__.pyi | 18 +++++--
python/tvm/script/tir/intrin.py | 4 ++
python/tvm/topi/arm_cpu/mprofile/dsp/pool.py | 3 +-
src/printer/tvmscript_printer.cc | 37 +++++++++++---
src/tir/op/op.cc | 58 ++++++++++++++-------
tests/python/ci/test_ci.py | 22 ++++----
tests/python/ci/test_tvmbot.py | 2 +-
.../contrib/test_hexagon/test_run_unit_tests.py | 7 +--
tests/python/unittest/test_tvmscript_roundtrip.py | 22 ++++++++
tests/scripts/setup-pytest-env.sh | 2 +-
tests/scripts/task_build.py | 5 ++
tests/scripts/task_python_frontend.sh | 2 +-
49 files changed, 239 insertions(+), 96 deletions(-)
rename {tests => ci}/scripts/cmd_utils.py (100%)
rename {tests => ci}/scripts/determine_docker_images.py (100%)
rename {tests => ci}/scripts/git_change_docker.sh (100%)
rename {tests => ci}/scripts/git_change_docs.sh (100%)
rename {tests => ci}/scripts/git_skip_ci.py (100%)
rename {tests => ci}/scripts/git_skip_ci_globs.py (100%)
rename {tests => ci}/scripts/git_utils.py (100%)
rename {tests => ci}/scripts/github_cc_reviewers.py (100%)
rename {tests => ci}/scripts/github_docs_comment.py (100%)
rename {tests => ci}/scripts/github_skipped_tests_comment.py (100%)
rename {tests => ci}/scripts/github_tag_teams.py (100%)
rename {tests => ci}/scripts/github_tvmbot.py (100%)
rename {tests => ci}/scripts/http_utils.py (100%)
rename {tests => ci}/scripts/open_docker_update_pr.py (100%)
rename {tests => ci}/scripts/ping_reviewers.py (100%)
rename {tests => ci}/scripts/pytest_ids.py (100%)
rename {tests => ci}/scripts/pytest_wrapper.py (100%)
rename {tests => ci}/scripts/should_rebuild_docker.py (100%)
rename {tests => ci}/scripts/should_run_slow_tests.py (100%)
rename {tests => ci}/scripts/update_branch.py (100%)