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 a02e57ccde [ci][docker] Nightly Docker image update
add d4365011f5 [Collage] PruneCandidates and demo_collage_partition.py
(#12105)
add 0d70f690ea [Relay] Allow partial virtual device annotations. (#12107)
add 40f9f23c92 [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 (a02e57ccde)
\
N -- N -- N refs/heads/nightly-docker-update (40f9f23c92)
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:
include/tvm/target/compilation_config.h | 14 +-
python/tvm/relay/collage/__init__.py | 2 +-
python/tvm/relay/collage/collage.py | 8 +-
python/tvm/target/virtual_device.py | 5 +-
src/relay/collage/candidate_partition_index.cc | 6 +-
src/relay/collage/cost_estimator.cc | 75 +-
src/relay/collage/cost_estimator.h | 33 -
.../{cost_estimator.cc => mock_cost_estimator.cc} | 63 +-
src/relay/collage/mock_cost_estimator.h | 84 +
src/relay/collage/prune_candidates.cc | 218 +
src/relay/collage/prune_candidates.h | 72 +
src/target/compilation_config.cc | 31 +-
src/target/virtual_device.cc | 3 +
.../cpp/relay/collage/candidate_partition_test.cc | 5 +-
tests/cpp/target/compilation_config_test.cc | 23 +-
.../relay/collage/demo_collage_partitioner.py | 401 ++
tests/python/relay/collage/menangerie.py | 4288 ++++++++++++++++++++
tests/python/relay/test_pass_collage_partition.py | 86 +-
tests/python/relay/test_pass_plan_devices.py | 17 +-
19 files changed, 5237 insertions(+), 197 deletions(-)
copy src/relay/collage/{cost_estimator.cc => mock_cost_estimator.cc} (67%)
create mode 100644 src/relay/collage/mock_cost_estimator.h
create mode 100644 src/relay/collage/prune_candidates.cc
create mode 100644 src/relay/collage/prune_candidates.h
create mode 100644 tests/python/relay/collage/demo_collage_partitioner.py
create mode 100644 tests/python/relay/collage/menangerie.py