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/04/13 06:29:27 UTC

[tvm] branch ci-docker-staging updated (ef2137bc39 -> 64da208843)

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 ef2137bc39 [CI] Bump black version to 22.3.0
     add 872773fee2 [Hexagon] Do not pass lookup_linked_params to graph executor (#10944)
     add 76ac68de73 escape tvmscript's string literal (#10954)
     add 89061fafa5 [CI] Bump black version to 22.3.0 (#10960)
     add 396a8c6a3a [ci] Don't diff when running clang-format  (#10933)
     add 927357a027 [ci] Install GNU parallel on lint image (#10951)
     add e65bbe2b78 use ubuntu18 in docker android demo  (#10222)
     add f841b63026 [ONNX] Update onnx shape op with slice index support (#10947)
     add 7e5db1b35f [ci] Break out test steps for Hexagon / microTVM (#10946)
     add aa56286924 [Hot Fix][Jenkinsfile]Fix Hexagon Parameter (#10966)
     add 7ae791049b Update CONTRIBUTORS.md (#10972)
     add a508cba77f Switch to CPU PyTorch (#10914)
     add cbe602df11 [CI][DOCKER] Add pytest-lazy-fixture to images (#10970)
     add 03bbf14511 [HEXAGON] Split huge 1D DMA Transfers into smaller transfers with legal sizes. (#10971)
     add cd6aa7b2a4 [Hexagon] Move aot/graph_executor interactions into launcher (#10907)
     add 11d22bdc1b [Hexagon][LLVM] Enable/test tensorized Hexagon DMA on 2d transformed layout (#10905)
     add 98fc6495bb [CUDNN] Add partitioning support for conv2d and log_softmax (#10961)
     add 856b5c649a remove exception handling of autotvm xgboost extract functions (#10948)
     add a2d973d350 change Hexagon docker version (#10981)
     add c7cca3913a Support `qnn.conv2d` in FoldExplicitPading (#10982)
     add 6d9a1118b1 [COMMUNITY] @guberti -> Reviewer (#10976)
     add 597000c74e [ONNX] Add MatMulInteger importer (#10450)
     new 64da208843 Validating new gpu image

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   (ef2137bc39)
            \
             N -- N -- N   refs/heads/ci-docker-staging (64da208843)

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:
 CONTRIBUTORS.md                                    |   2 +
 Jenkinsfile                                        | 116 +++++++++-----
 apps/hexagon_launcher/launcher_core.cc             |   6 +-
 .../zephyr/template_project/src/host_driven/main.c |   1 -
 docker/Dockerfile.ci_lint                          |   2 +-
 docker/Dockerfile.demo_android                     |   6 +-
 docker/install/ubuntu_install_onnx.sh              |   3 +-
 docker/install/ubuntu_install_python_package.sh    |   3 +-
 include/tvm/relay/attrs/annotation.h               |   1 -
 jenkins/Jenkinsfile.j2                             |  84 +++++-----
 python/tvm/autotvm/tuner/xgboost_cost_model.py     | 118 ++++++--------
 python/tvm/contrib/hexagon/build.py                |   3 +-
 python/tvm/contrib/hexagon/session.py              | 176 ++++++++++++++++++++-
 python/tvm/contrib/hexagon/tools.py                |  13 ++
 python/tvm/relay/frontend/common.py                |   7 +-
 python/tvm/relay/frontend/onnx.py                  |  75 ++++++++-
 python/tvm/relay/op/contrib/cudnn.py               |  62 ++++++++
 python/tvm/topi/cuda/tensorcore_alter_op.py        |  22 ++-
 src/ir/transform.cc                                |   1 -
 src/printer/doc.cc                                 |   5 +-
 src/relay/op/tensor/unary.cc                       |   1 -
 src/relay/qnn/op/convolution_transpose.cc          |   2 +-
 src/relay/qnn/op/dense.cc                          |   4 +-
 src/relay/transforms/fold_explicit_padding.cc      |  33 +++-
 src/runtime/hexagon/hexagon/hexagon_common.cc      |   1 -
 src/runtime/hexagon/hexagon/hexagon_user_dma.cc    |  31 +++-
 src/target/llvm/codegen_llvm.cc                    |  16 +-
 src/target/source/codegen_c.h                      |  56 +++----
 src/te/schedule/schedule_ops.cc                    |   2 +-
 src/tir/ir/buffer.cc                               |  17 +-
 src/tir/transforms/arg_binder.cc                   |  33 ++--
 src/tir/transforms/make_unpacked_api.cc            |   1 -
 src/tir/transforms/storage_flatten.cc              |  10 ++
 src/tir/transforms/tensorcore_infer_fragment.cc    |   4 +-
 tests/lint/clang_format.sh                         |  24 ---
 tests/lint/git-black.sh                            |   2 +-
 tests/lint/git-clang-format.sh                     |  60 ++++---
 tests/python/contrib/test_cudnn.py                 |  66 +++++++-
 .../contrib/test_hexagon/test_cache_read_write.py  | 125 +++++++++++----
 tests/python/contrib/test_hexagon/test_launcher.py |  58 +------
 tests/python/frontend/onnx/test_forward.py         |   7 -
 tests/python/frontend/pytorch/test_forward.py      |  59 +------
 .../relay/test_pass_fold_explicit_padding.py       |  45 ++++++
 .../python/relay/test_pass_legalize_tensorcore.py  |   3 +-
 tests/python/unittest/test_tvmscript_roundtrip.py  |  19 +++
 tests/scripts/ci.py                                |  10 +-
 tests/scripts/task_lint.sh                         |   2 +-
 47 files changed, 961 insertions(+), 436 deletions(-)
 delete mode 100755 tests/lint/clang_format.sh


[tvm] 01/01: Validating new gpu image

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 64da208843d018d94041ecb6f84b5b35121cdb94
Author: Masahiro Masuda <ma...@gmail.com>
AuthorDate: Wed Apr 13 15:29:11 2022 +0900

    Validating new gpu image
---
 Jenkinsfile            | 4 ++--
 jenkins/Jenkinsfile.j2 | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 83ae3fb94f..8c04299cc6 100755
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -45,12 +45,12 @@
 // 'python3 jenkins/generate.py'
 // Note: This timestamp is here to ensure that updates to the Jenkinsfile are
 // always rebased on main before merging:
-// Generated at 2022-04-11T12:22:12.040444
+// Generated at 2022-04-13T15:28:59.969797
 
 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.71'
-ci_gpu = 'tlcpack/ci-gpu:v0.84'
+ci_gpu = 'tlcpackstaging/ci_gpu:20220413-055910-597000c74'
 ci_cpu = 'tlcpack/ci-cpu:v0.83'
 ci_wasm = 'tlcpack/ci-wasm:v0.73'
 ci_i386 = 'tlcpack/ci-i386:v0.76'
diff --git a/jenkins/Jenkinsfile.j2 b/jenkins/Jenkinsfile.j2
index ae330612a2..fcab0c75ce 100644
--- a/jenkins/Jenkinsfile.j2
+++ b/jenkins/Jenkinsfile.j2
@@ -52,7 +52,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.71'
-ci_gpu = 'tlcpack/ci-gpu:v0.84'
+ci_gpu = 'tlcpackstaging/ci_gpu:20220413-055910-597000c74'
 ci_cpu = 'tlcpack/ci-cpu:v0.83'
 ci_wasm = 'tlcpack/ci-wasm:v0.73'
 ci_i386 = 'tlcpack/ci-i386:v0.76'