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 5cf1a924c6 [ci][docker] Nightly Docker image update
add 1985c0153b [Relay][Layout] Add FInferCorrectLayout for L2 norm layout
transform. (#12497)
add eb31123b7d fix temp array object reference in
manifest_shared_memory_local_stage (#12516)
add 3b3443bd12 [TIR][Schedule][UX] Beautify TIR Trace Printing (#12507)
add 125c9caa02 [MetaSchedule] Implement ScheduleFn as a C++ class (#12513)
add 8ee4b604bc [MetaSchedule] Migrate MemoryDatabase to C++ (#12514)
add 92355f2ed5 [COMMUNITY] An Wang -> Reviewer (#12517)
add ec6dfdf3fa [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 (5cf1a924c6)
\
N -- N -- N refs/heads/nightly-docker-update (ec6dfdf3fa)
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:
CONTRIBUTORS.md | 1 +
Jenkinsfile | 18 ++--
ci/jenkins/Jenkinsfile.j2 | 18 ++--
include/tvm/meta_schedule/database.h | 2 +
include/tvm/meta_schedule/space_generator.h | 9 +-
.../tvm/meta_schedule/database/memory_database.py | 55 ++--------
.../tvm/meta_schedule/space_generator/__init__.py | 4 +-
.../meta_schedule/space_generator/schedule_fn.py | 88 ++++------------
.../space_generator/space_generator.py | 11 +-
.../tvm/meta_schedule/testing/space_generation.py | 2 +-
python/tvm/meta_schedule/tune_context.py | 6 +-
python/tvm/script/highlight.py | 28 +++---
python/tvm/tir/schedule/trace.py | 14 +++
src/meta_schedule/database/memory_database.cc | 111 +++++++++++++++++++++
.../space_generator/post_order_apply.cc | 4 +-
src/meta_schedule/space_generator/schedule_fn.cc | 90 +++++++++++++++++
src/relay/op/nn/nn.cc | 38 ++++++-
src/tir/schedule/trace.cc | 10 +-
.../manifest_shared_memory_local_stage.cc | 4 +-
tests/python/relay/test_pass_convert_op_layout.py | 39 ++++++++
.../test_meta_schedule_post_order_apply.py | 28 +++---
tests/python/unittest/test_tir_schedule_trace.py | 92 +++++++++++------
22 files changed, 475 insertions(+), 197 deletions(-)
create mode 100644 src/meta_schedule/database/memory_database.cc
create mode 100644 src/meta_schedule/space_generator/schedule_fn.cc