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 74f2736cd8 [ci][docker] Nightly Docker image update
     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 6f831137c9 [microTVM] Refactor pytest fixtures (#12207)
     add df29e82629 [TIR][CUDA] Fix sub-warp reduction using "max" (#12275)
     add 46a8498ba9 [MetaSchedule] Enhance Conv2d NCHW Winograd Schedule Rules 
(#12127)
     add 2e02cf7cbe [LLVM] Create LLVM scope object for use with LLVM libraries 
(#12140)
     add c515241026 fix type bug about topi test unitest (#12285)
     add 3adfbf522c [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   (74f2736cd8)
            \
             N -- N -- N   refs/heads/nightly-docker-update (3adfbf522c)

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                                        | 1646 +++++++++++++++++---
 ci/jenkins/Deploy.groovy.j2                        |    8 +-
 ci/jenkins/DockerBuild.groovy.j2                   |    2 +-
 ci/jenkins/Jenkinsfile.j2                          |   22 +-
 ci/jenkins/Prepare.groovy.j2                       |    1 +
 ci/jenkins/macros.j2                               |   32 +-
 include/tvm/node/reflection.h                      |    6 +
 include/tvm/node/structural_equal.h                |  157 +-
 python/tvm/ir/base.py                              |   34 +-
 python/tvm/micro/testing/evaluation.py             |    5 +-
 .../tvm/micro/testing/pytest_plugin.py             |   69 +-
 python/tvm/runtime/__init__.py                     |    1 +
 python/tvm/runtime/object_path.py                  |   16 +
 python/tvm/topi/cuda/conv2d_winograd.py            |   10 +-
 src/meta_schedule/schedule_rule/winograd.cc        |  101 ++
 src/node/reflection.cc                             |   44 +
 src/node/structural_equal.cc                       |  237 ++-
 src/node/structural_hash.cc                        |  162 +-
 src/target/llvm/codegen_amdgpu.cc                  |   30 +-
 src/target/llvm/codegen_arm.cc                     |    5 +-
 src/target/llvm/codegen_blob.cc                    |   24 +-
 src/target/llvm/codegen_blob.h                     |   15 +-
 src/target/llvm/codegen_cpu.cc                     |   94 +-
 src/target/llvm/codegen_cpu.h                      |   10 +-
 src/target/llvm/codegen_hexagon.cc                 |   51 +-
 src/target/llvm/codegen_llvm.cc                    |  142 +-
 src/target/llvm/codegen_llvm.h                     |   29 +-
 src/target/llvm/codegen_nvptx.cc                   |   33 +-
 src/target/llvm/codegen_x86_64.cc                  |    8 +-
 src/target/llvm/llvm_common.cc                     |  211 ---
 src/target/llvm/llvm_common.h                      |   89 --
 src/target/llvm/llvm_instance.cc                   |  365 +++++
 src/target/llvm/llvm_instance.h                    |  266 ++++
 src/target/llvm/llvm_module.cc                     |  672 ++++----
 src/target/llvm/llvm_module.h                      |    1 -
 src/tir/analysis/deep_equal.cc                     |   13 +-
 src/tir/transforms/lower_thread_allreduce.cc       |   14 +-
 tests/micro/.gitignore                             |    2 +
 tests/micro/arduino/conftest.py                    |   45 +-
 .../micro/arduino/test_arduino_error_detection.py  |    9 +-
 tests/micro/arduino/test_arduino_rpc_server.py     |   29 +-
 tests/micro/arduino/test_arduino_workflow.py       |   13 +-
 tests/micro/arduino/test_utils.py                  |    4 +-
 tests/micro/common/conftest.py                     |   31 +-
 tests/micro/common/test_autotune.py                |    2 +-
 tests/micro/zephyr/conftest.py                     |   73 +-
 tests/micro/zephyr/test_zephyr.py                  |   56 +-
 tests/micro/zephyr/test_zephyr_aot_exec.py         |   16 +-
 .../zephyr/test_zephyr_aot_exec_standalone.py      |   20 +-
 tests/micro/zephyr/test_zephyr_armv7m.py           |   16 +-
 tests/python/topi/python/test_topi_image.py        |    2 +-
 .../unittest/test_container_structural_equal.py    |  155 ++
 .../unittest/test_meta_schedule_space_cuda.py      |  164 ++
 .../python/unittest/test_subwarp_reduction_cuda.py |   40 +-
 .../unittest/test_tir_structural_equal_hash.py     |  188 ++-
 tests/scripts/task_python_microtvm.sh              |   14 +-
 56 files changed, 4042 insertions(+), 1462 deletions(-)
 copy tests/micro/zephyr/conftest.py => 
python/tvm/micro/testing/pytest_plugin.py (53%)
 delete mode 100644 src/target/llvm/llvm_common.cc
 delete mode 100644 src/target/llvm/llvm_common.h
 create mode 100644 src/target/llvm/llvm_instance.cc
 create mode 100644 src/target/llvm/llvm_instance.h
 create mode 100644 tests/micro/.gitignore
 create mode 100644 tests/python/unittest/test_container_structural_equal.py

Reply via email to