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 d9386a31e4 [ci][docker] Nightly Docker image update
add fae4c5f1b3 [TIR] Fix an error when the result of compute_at has unit
loop (#13481)
add 2105b937cd [OpenCL][Adreno] Remove PrimFunc parameters annotation
(#13483)
add f5a102c83c [CMSIS-NN] Support for int16 in fully connected layer
(#13484)
add 101e3a4ade [TIR][Transform] Optional data-flow analysis in RemoveNoOp
(#13217)
add fc606c09b2 [TIR][TVMScript] Cleaner printing of And/Or chains (#13432)
add 9098b497bb [TIR] Correct type annotation for `rfactor` (#13485)
add 3c480fa3cb [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 (d9386a31e4)
\
N -- N -- N refs/heads/nightly-docker-update (3c480fa3cb)
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 | 20 +-
ci/jenkins/Jenkinsfile.j2 | 20 +-
python/tvm/relay/op/contrib/cmsisnn.py | 33 +-
python/tvm/tir/schedule/schedule.py | 2 +-
src/arith/rewrite_simplify.cc | 16 +-
src/printer/tvmscript_printer.cc | 6 +-
src/relay/backend/contrib/cmsisnn/relay_to_tir.cc | 35 +-
.../backend/contrib/cmsisnn/tir_to_runtime.cc | 3 +-
src/relay/transforms/annotate_texture_storage.cc | 12 -
src/tir/analysis/control_flow_graph.cc | 117 +++--
src/tir/analysis/control_flow_graph.h | 12 +-
src/tir/schedule/primitive/compute_at.cc | 2 +-
src/tir/transforms/remove_no_op.cc | 230 +++++++--
.../contrib/test_cmsisnn/test_fully_connected.py | 25 +-
.../opencl_texture/test_conv2d_nchw_texture.py | 14 +-
.../python/unittest/test_arith_rewrite_simplify.py | 9 +
.../unittest/test_tir_schedule_compute_at.py | 52 ++
.../unittest/test_tir_schedule_transform_layout.py | 12 +-
.../unittest/test_tir_transform_remove_no_op.py | 521 +++++++++++++++++++++
.../python/unittest/test_tir_transform_simplify.py | 1 +
tests/python/unittest/test_tvmscript_roundtrip.py | 32 ++
21 files changed, 1004 insertions(+), 170 deletions(-)