You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by ma...@apache.org on 2022/01/31 08:42:08 UTC

[tvm] branch ci-docker-staging updated (8ddf403 -> 845b066)

This is an automated email from the ASF dual-hosted git repository.

masahi pushed a change to branch ci-docker-staging
in repository https://gitbox.apache.org/repos/asf/tvm.git.


 discard 8ddf403  remove gcn tutorial workaround
 discard 42e1dc3  validating ci_gpu:20220128-070420-fa317edf7
     add 4d0dac3  [MetaSchedule][M4a] Mutator: Mutate-Tile-Size (#10092)
     add 21154c2  [TE] Fix Const Int bound analysis to handle uints for division (#10102)
     add 0fb5ae2  [Op][Topi] Gather, GatherND, Take can accept unsigned integers as indices (#10080)
     add ba65197  [MetaSchedule][M4b] Testcases for TensorRT builder/runner (#10055)
     add 538347e  [MetaSchedule] postproc: rewrite_cooperative_fetch (#10081)
     add 1f9c76b  [Op][Topi] 5 ops can accept unsigned integers as indices (#10098)
     add 779dc51  [MetaSchedule][M4a] User-API: Tune-TE/TIR/Relay (#10079)
     add c2146d9  validating ci_gpu:20220128-070420-fa317edf7
     add b717c0e  remove gcn tutorial workaround
     add 845b066  update ci-gpu image to v0.81

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   (8ddf403)
            \
             N -- N -- N   refs/heads/ci-docker-staging (845b066)

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                                        |   2 +-
 include/tvm/meta_schedule/mutator.h                |   2 +-
 include/tvm/topi/transform.h                       |   4 +-
 python/tvm/meta_schedule/__init__.py               |  13 +-
 python/tvm/meta_schedule/integration.py            |   2 +-
 python/tvm/meta_schedule/mutator/__init__.py       |   1 +
 .../{mutate_unroll.py => mutate_tile_size.py}      |  10 +-
 python/tvm/meta_schedule/postproc/__init__.py      |   1 +
 ...ction_block.py => rewrite_cooperative_fetch.py} |  13 +-
 python/tvm/meta_schedule/testing/__init__.py       |   3 +-
 python/tvm/meta_schedule/testing/byoc_trt.py       |  53 ++
 python/tvm/meta_schedule/testing/relay_workload.py |  80 +++
 python/tvm/meta_schedule/tune.py                   | 719 +++++++++++++++++++++
 python/tvm/meta_schedule/utils.py                  |  28 +
 src/arith/const_int_bound.cc                       |   6 +-
 src/meta_schedule/integration.cc                   |   4 +-
 src/meta_schedule/mutator/mutate_tile_size.cc      | 273 ++++++++
 .../postproc/rewrite_cooperative_fetch.cc          | 156 +++++
 src/meta_schedule/task_scheduler/task_scheduler.cc |   4 +-
 src/meta_schedule/utils.h                          |  16 -
 src/relay/op/tensor/transform.cc                   |  21 +-
 src/tir/schedule/primitive/for_kind.cc             |   3 +-
 tests/python/relay/test_op_level3.py               | 202 +++---
 tests/python/topi/python/test_topi_transform.py    |  55 +-
 .../python/unittest/test_arith_const_int_bound.py  |   8 +
 .../unittest/test_meta_schedule_byoc_tensorrt.py   | 228 +++++++
 .../unittest/test_meta_schedule_integration.py     |   2 +-
 ...test_meta_schedule_mutator_mutate_tile_size.py} |  61 +-
 ..._schedule_postproc_rewrite_cooperative_fetch.py | 155 +++++
 .../unittest/test_meta_schedule_tune_relay.py      | 151 +++++
 .../python/unittest/test_meta_schedule_tune_te.py  |  52 ++
 .../python/unittest/test_meta_schedule_tune_tir.py | 218 +++++++
 32 files changed, 2345 insertions(+), 201 deletions(-)
 copy python/tvm/meta_schedule/mutator/{mutate_unroll.py => mutate_tile_size.py} (75%)
 copy python/tvm/meta_schedule/postproc/{rewrite_reduction_block.py => rewrite_cooperative_fetch.py} (67%)
 create mode 100644 python/tvm/meta_schedule/testing/byoc_trt.py
 create mode 100644 python/tvm/meta_schedule/tune.py
 create mode 100644 src/meta_schedule/mutator/mutate_tile_size.cc
 create mode 100644 src/meta_schedule/postproc/rewrite_cooperative_fetch.cc
 create mode 100644 tests/python/unittest/test_meta_schedule_byoc_tensorrt.py
 copy tests/python/unittest/{test_meta_schedule_mutator_mutate_unroll.py => test_meta_schedule_mutator_mutate_tile_size.py} (66%)
 create mode 100644 tests/python/unittest/test_meta_schedule_postproc_rewrite_cooperative_fetch.py
 create mode 100644 tests/python/unittest/test_meta_schedule_tune_relay.py
 create mode 100644 tests/python/unittest/test_meta_schedule_tune_te.py
 create mode 100644 tests/python/unittest/test_meta_schedule_tune_tir.py