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/07/15 17:24:53 UTC

[tvm] branch nightly-docker-update updated (27a40280e3 -> a02e57ccde)

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 27a40280e3 [ci][docker] Nightly Docker image update
     add c0f4450958 Fix bug that disabled cuda integer dot product. (#12099)
     add 37f9d3c496 [TVMSCRIPT] Make ceildiv available from tvmscript (#12096)
     add fa057213d4 Enable conv family fused with gelu (#12106)
     add e0a0e67e55 [Relay, Op] Add conv2d generic layout op strategy when meta schedule is enabled (#12104)
     add 8f208adae2 [Relay] Allow Primitive functions to carry virtual device annotations in PlanDevices (#12095)
     add 770738c514 Add member object accessors to With<> (#12100)
     add a02e57ccde [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   (27a40280e3)
            \
             N -- N -- N   refs/heads/nightly-docker-update (a02e57ccde)

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                                   | 16 +++---
 ci/jenkins/Jenkinsfile.j2                     | 16 +++---
 include/tvm/support/with.h                    |  8 +++
 include/tvm/target/compilation_config.h       |  6 +++
 python/tvm/relay/op/contrib/dnnl.py           | 58 +++++++++++++---------
 python/tvm/relay/op/strategy/cuda.py          |  2 +-
 python/tvm/script/tir/__init__.pyi            |  1 +
 python/tvm/script/tir/intrin.py               |  5 ++
 python/tvm/target/target.py                   |  2 +-
 python/tvm/tir/__init__.py                    |  2 +-
 python/tvm/tir/op.py                          | 20 ++++++++
 src/relay/backend/contrib/dnnl/codegen.cc     | 51 ++-----------------
 src/relay/transforms/device_domains.cc        | 11 +++--
 src/relay/transforms/device_planner.cc        | 71 ++++++++++++---------------
 src/runtime/contrib/dnnl/dnnl_json_runtime.cc | 10 ++--
 src/target/compilation_config.cc              | 46 +++++++++++++----
 src/target/target.cc                          |  3 +-
 src/tir/op/op.cc                              |  1 +
 tests/cpp/target/compilation_config_test.cc   | 29 +++++++++++
 tests/cpp/target/virtual_device_test.cc       |  4 ++
 tests/python/contrib/test_dnnl.py             | 11 +++--
 tests/python/relay/test_pass_plan_devices.py  | 55 ++++++++++++++++++++-
 tests/python/unittest/test_tvmscript_ops.py   | 15 ++++++
 23 files changed, 288 insertions(+), 155 deletions(-)