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/22 00:00:57 UTC

[tvm] branch nightly-docker-update updated (bbf9bab972 -> f8aade1fda)

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 bbf9bab972 [ci][docker] Nightly Docker image update
     add d6632070a0 [Fix] Fix IndexDataTypeNormalizer to avoid redundant casting (#13449)
     add 41b04007aa [FIX][ONNX][Relay] onnx converter on matmul with scalar; bring back nn.matmul check (#13448)
     add edfeba5c3a [Roofline] Allow user choice of pass for saving lowered TIR (#13437)
     add 8136173a63 [ci][docs] Fix docs deploy (#13442)
     add b419c4b4de [Roofline] Add fma (non-tensorcore) peak flops for CUDA (#13419)
     add 77f9c49b4e [Fix][MetaSchedule] Param for rule AutoBind on Python side (#13454)
     add 1b3d77a897 [RPC] Fix tracker connection termination (#13420)
     add 9778907811 [RUNTIME][CLML] Fix Dense layer crash issue (#13451)
     add 3ccc3009a6 Fix building static tvm_runtime on windows (#13445)
     add 545f8dc927 [TOPI] Add handwritten matvec for dynamic cases (#13423)
     add f8aade1fda [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   (bbf9bab972)
            \
             N -- N -- N   refs/heads/nightly-docker-update (f8aade1fda)

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:
 CMakeLists.txt                                     |  2 +
 Jenkinsfile                                        | 29 ++++---
 ci/jenkins/Deploy.groovy.j2                        |  5 +-
 ci/jenkins/Jenkinsfile.j2                          | 20 ++---
 ci/scripts/jenkins/s3.py                           |  7 +-
 include/tvm/tir/data_type_rewriter.h               |  1 +
 .../tvm/meta_schedule/schedule_rule/auto_bind.py   |  4 +
 python/tvm/relay/frontend/onnx.py                  | 15 +++-
 python/tvm/relay/op/strategy/x86.py                | 19 +++++
 python/tvm/rpc/base.py                             | 36 +++++++--
 python/tvm/rpc/proxy.py                            |  8 +-
 python/tvm/rpc/server.py                           |  4 +-
 python/tvm/rpc/tracker.py                          |  2 +-
 python/tvm/topi/x86/dense.py                       | 60 ++++++++++++++
 python/tvm/utils/roofline/__init__.py              | 11 ++-
 python/tvm/utils/roofline/cuda.py                  | 94 ++++++++++++++++++++--
 src/relay/op/nn/nn.h                               |  1 +
 src/runtime/contrib/clml/clml_runtime.cc           |  4 +-
 src/te/operation/create_primfunc.cc                |  2 +-
 src/tir/ir/data_type_rewriter.cc                   | 11 ++-
 tests/python/frontend/onnx/test_forward.py         |  7 +-
 tests/python/relay/test_op_level1.py               |  5 ++
 tests/python/topi/python/test_topi_dense.py        |  3 +
 tests/python/unittest/test_roofline.py             |  7 ++
 ...mscript_ir_builder_base.py => test_rpc_base.py} | 42 +++++-----
 tests/python/unittest/test_runtime_rpc.py          | 13 ++-
 tests/python/unittest/test_te_create_primfunc.py   | 36 ++++++++-
 27 files changed, 356 insertions(+), 92 deletions(-)
 copy tests/python/unittest/{test_tvmscript_ir_builder_base.py => test_rpc_base.py} (56%)