You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by gi...@apache.org on 2022/11/02 00:00:50 UTC

[tvm] branch nightly-docker-update updated (8fc1919f09 -> 371f83f9eb)

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 8fc1919f09 [ci][docker] Nightly Docker image update
     add 67fa959f18 [CI] Make additional_flags parameter optional in tests/scripts/ci.py (#13238)
     add 0683ece044 [MetaSchedule] Fix thread bindings of MultiLevelTilingTensorCore (#13243)
     add c69f8ce9c9 [Relay] Add ClipAndConsecutiveCast and CastClip to SimplifyExpr (#13236)
     add 3259580bd5 [Hexagon] Make pytest use a random port if not running in CI (#13244)
     add 9cdc97fe23 [DLPack][runtime] Update DLPack to v0.7 (#13177)
     add 2c1fecd097 [TIR][Primitive] Support rolling_buffer schedule primitive in TensorIR (#13033)
     add e9e8c4b263 fix GPU other build (#13235)
     add 5d15428994 [Relay] Add set_attrs_type registry to broadcast_to op (#13096)
     add 6551b71588 [COMMUNITY] Jyotsna Verma -> Reviewer (#13251)
     add 87f52af48a [skip ci] Revert "fix GPU other build (#13235)" (#13261)
     add 371f83f9eb [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   (8fc1919f09)
            \
             N -- N -- N   refs/heads/nightly-docker-update (371f83f9eb)

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:
 3rdparty/dlpack                                    |   2 +-
 CONTRIBUTORS.md                                    |   1 +
 Jenkinsfile                                        |  20 +-
 ci/jenkins/Jenkinsfile.j2                          |  20 +-
 include/tvm/runtime/c_runtime_api.h                |  73 ++-
 include/tvm/runtime/device_api.h                   |  11 +
 include/tvm/tir/schedule/schedule.h                |  17 +
 jvm/core/src/main/java/org/apache/tvm/Device.java  |  79 +--
 jvm/core/src/main/java/org/apache/tvm/NDArray.java |  31 +-
 .../main/java/org/apache/tvm/rpc/RPCSession.java   |  25 +-
 python/tvm/_ffi/runtime_ctypes.py                  |  93 ++--
 python/tvm/contrib/hexagon/pytest_plugin.py        |   2 +-
 python/tvm/rpc/client.py                           |  19 +-
 python/tvm/runtime/ndarray.py                      |  26 +-
 python/tvm/tir/schedule/schedule.py                | 108 ++++
 .../multi_level_tiling_tensor_core.cc              |   5 +
 src/meta_schedule/schedule_rule/schedule_rule.cc   |   2 +-
 src/relay/op/tensor/transform.cc                   |   1 +
 src/relay/transforms/simplify_expr.cc              | 102 ++++
 src/runtime/aot_executor/aot_executor.cc           |   4 +-
 src/runtime/hexagon/hexagon_common.h               |   4 +-
 src/runtime/hexagon/hexagon_device_api.cc          |   6 +-
 src/runtime/hexagon/hexagon_device_api.h           |   3 +-
 src/tir/schedule/concrete_schedule.cc              |  12 +
 src/tir/schedule/concrete_schedule.h               |   2 +
 src/tir/schedule/primitive.h                       |  16 +
 src/tir/schedule/primitive/rolling_buffer.cc       | 474 +++++++++++++++++
 src/tir/schedule/schedule.cc                       |   3 +
 src/tir/schedule/traced_schedule.cc                |  12 +
 src/tir/schedule/traced_schedule.h                 |   2 +
 tests/python/relay/test_pass_simplify_expr.py      |  31 ++
 .../unittest/test_tir_schedule_rolling_buffer.py   | 573 +++++++++++++++++++++
 tests/scripts/ci.py                                |  11 +-
 33 files changed, 1626 insertions(+), 164 deletions(-)
 create mode 100644 src/tir/schedule/primitive/rolling_buffer.cc
 create mode 100644 tests/python/unittest/test_tir_schedule_rolling_buffer.py