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 2021/12/29 07:28:34 UTC

[tvm] branch ci-docker-staging updated (f258f4e -> 7900b4f)

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 f258f4e  trigger CI
 discard ebe0192  validating ci-gpu 20211226-225913-218d2919f
     add 7448eab  [Topi] fix get_pad_tuple3d bug, the conv3d kernel layout should be DHW. (#9788)
     add ce108c1  [Frontend] Add Span filling for frontends to Relay (#9723)
     add ba15197  [TVM Basic] Extend generic func with get_packed_func() interface (#9784)
     add d56ca35  disable signal capture in unit test of paddle frontend (#9809)
     new 7900b4f  validating ci-gpu 20211226-225913-218d2919f

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   (f258f4e)
            \
             N -- N -- N   refs/heads/ci-docker-staging (7900b4f)

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.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 include/tvm/target/generic_func.h                  |  5 +-
 python/tvm/ir/op.py                                | 26 +++++++++
 python/tvm/relay/expr.py                           |  7 ++-
 python/tvm/relay/frontend/common.py                | 53 +++++++++++++++++
 python/tvm/relay/frontend/pytorch.py               | 19 +++++++
 python/tvm/relay/frontend/tensorflow.py            | 17 +-----
 python/tvm/relay/frontend/tensorflow2.py           | 17 +-----
 python/tvm/relay/frontend/tflite.py                | 16 ++++--
 python/tvm/target/generic_func.py                  | 24 +++++++-
 python/tvm/topi/nn/utils.py                        |  6 +-
 src/ir/op.cc                                       |  4 ++
 src/printer/relay_text_printer.cc                  | 23 ++++++--
 src/printer/text_printer.h                         |  2 +-
 src/relay/ir/expr.cc                               |  4 +-
 src/target/generic_func.cc                         | 19 +++++++
 tests/python/frontend/paddlepaddle/test_forward.py |  2 +
 tests/python/frontend/pytorch/test_forward.py      | 47 +++++++++++++++
 tests/python/frontend/tensorflow/test_forward.py   | 54 ++++++++++++++++++
 .../frontend/tensorflow2/test_sequential_models.py | 24 +++++++-
 tests/python/frontend/tflite/test_forward.py       | 54 ++++++++++++++++++
 tests/python/topi/python/test_topi_conv3d_ncdhw.py | 66 +++++++++++++++++++---
 .../python/test_topi_conv3d_transpose_ncdhw.py     | 12 ++++
 tests/python/unittest/test_target_target.py        | 55 ++++++++++++++++++
 23 files changed, 495 insertions(+), 61 deletions(-)

[tvm] 01/01: validating ci-gpu 20211226-225913-218d2919f

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 7900b4fa41f7a2e4fd0db373f476c8b829c7e25b
Author: Masahiro Masuda <ma...@gmail.com>
AuthorDate: Mon Dec 27 17:21:40 2021 +0900

    validating ci-gpu 20211226-225913-218d2919f
---
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index a782204..57db549 100755
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -46,7 +46,7 @@ import org.jenkinsci.plugins.pipeline.modeldefinition.Utils
 
 // NOTE: these lines are scanned by docker/dev_common.sh. Please update the regex as needed. -->
 ci_lint = "tlcpack/ci-lint:v0.67"
-ci_gpu = "tlcpack/ci-gpu:v0.78"
+ci_gpu = "tlcpackstaging/ci_gpu:20211226-225913-218d2919f"
 ci_cpu = "tlcpack/ci-cpu:v0.79"
 ci_wasm = "tlcpack/ci-wasm:v0.71"
 ci_i386 = "tlcpack/ci-i386:v0.74"