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/01/06 22:11:48 UTC

[tvm] branch ci-docker-staging updated (9f7b1bb -> cdb3d3b)

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 9f7b1bb  Testing ci-cpu update with tlcpackstaging/ci_cpu:20220105-225914-79cfb797e
     add 07a46a1  [BugFix] resolve integer 32. ~ 64. mismatch by casting (#9582)
     add 65e5ddd  [Torch] Better support in-place variant of ops (aten::relu_ etc) (#9851)
     add d3a83b5  [M3c][MetaScheduler] Add EvolutionarySearch Search Strategy. (#9836)
     new cd96a41  validating ci-gpu 20211226-225913-218d2919f
     new 19c68eb  apply PT + llvm symbol conflict mitigation
     new 05a5262  try testing old image to see if CI error is flaky
     new dc48d84  Revert "try testing old image to see if CI error is flaky"
     new 29c70e2  update to 20220105-225914-79cfb797e
     new 5a5cee2  ignore warning from coremltools
     add 67f9dda  [TensorRT] Fix pad_value access (removed from PadAttrs)
     new cdb3d3b  Merge branch 'trt-pad-fix' into ci-docker-staging

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   (9f7b1bb)
            \
             N -- N -- N   refs/heads/ci-docker-staging (cdb3d3b)

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 7 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:
 Jenkinsfile                                        |   4 +-
 .../tvm/meta_schedule/search_strategy/__init__.py  |   1 +
 .../search_strategy/evolutionary_search.py         | 117 ++++
 python/tvm/relay/frontend/pytorch.py               |  45 +-
 python/tvm/relay/op/contrib/tensorrt.py            |   7 +-
 .../search_strategy/evolutionary_search.cc         | 673 +++++++++++++++++++++
 src/tir/ir/data_layout.cc                          |   8 +-
 src/tir/schedule/primitive.h                       |  17 +
 src/tir/schedule/primitive/sampling.cc             |  22 +
 tests/python/relay/test_type_solver.py             |  24 +
 .../unittest/test_meta_schedule_search_strategy.py | 173 +++++-
 tests/scripts/task_config_build_gpu.sh             |   3 +-
 tests/scripts/task_sphinx_precheck.sh              |   2 +-
 13 files changed, 1057 insertions(+), 39 deletions(-)
 create mode 100644 python/tvm/meta_schedule/search_strategy/evolutionary_search.py
 create mode 100644 src/meta_schedule/search_strategy/evolutionary_search.cc

[tvm] 04/07: Revert "try testing old image to see if CI error is flaky"

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 dc48d84bb3831de4eb1633d2498f4393a6376e33
Author: Masahiro Masuda <ma...@gmail.com>
AuthorDate: Mon Jan 3 15:34:07 2022 +0900

    Revert "try testing old image to see if CI error is flaky"
    
    This reverts commit 007d1e6d376e3508aa5f20d4d363d98102e8c0f4.
---
 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"

[tvm] 01/07: 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 cd96a419dfd81be80bc9e99ef20517d984305e77
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"

[tvm] 03/07: try testing old image to see if CI error is flaky

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 05a5262167646d095ebc734d38cb218e02a51939
Author: Masahiro Masuda <ma...@gmail.com>
AuthorDate: Mon Jan 3 14:28:07 2022 +0900

    try testing old image to see if CI error is flaky
    
    This reverts commit 7900b4fa41f7a2e4fd0db373f476c8b829c7e25b.
---
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 57db549..a782204 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 = "tlcpackstaging/ci_gpu:20211226-225913-218d2919f"
+ci_gpu = "tlcpack/ci-gpu:v0.78"
 ci_cpu = "tlcpack/ci-cpu:v0.79"
 ci_wasm = "tlcpack/ci-wasm:v0.71"
 ci_i386 = "tlcpack/ci-i386:v0.74"

[tvm] 02/07: apply PT + llvm symbol conflict mitigation

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 19c68ebe02dd7d7a9fd96290487a5732e21f2db5
Author: Masahiro Masuda <ma...@gmail.com>
AuthorDate: Fri Dec 31 20:29:26 2021 +0900

    apply PT + llvm symbol conflict mitigation
---
 tests/scripts/task_config_build_gpu.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tests/scripts/task_config_build_gpu.sh b/tests/scripts/task_config_build_gpu.sh
index 8ddc69c..9244d03 100755
--- a/tests/scripts/task_config_build_gpu.sh
+++ b/tests/scripts/task_config_build_gpu.sh
@@ -30,7 +30,7 @@ echo set\(USE_VULKAN ON\) >> config.cmake
 echo set\(USE_OPENGL ON\) >> config.cmake
 echo set\(USE_MICRO ON\) >> config.cmake
 echo set\(USE_MICRO_STANDALONE_RUNTIME ON\) >> config.cmake
-echo set\(USE_LLVM llvm-config-9\) >> config.cmake
+echo set\(USE_LLVM \"/usr/bin/llvm-config-9 --link-static\"\) >> config.cmake
 echo set\(USE_NNPACK ON\) >> config.cmake
 echo set\(NNPACK_PATH /NNPACK/build/\) >> config.cmake
 echo set\(USE_RPC ON\) >> config.cmake
@@ -47,3 +47,4 @@ echo set\(USE_TENSORRT_CODEGEN ON\) >> config.cmake
 echo set\(USE_LIBBACKTRACE AUTO\) >> config.cmake
 echo set\(USE_CCACHE OFF\) >> config.cmake
 echo set\(SUMMARIZE ON\) >> config.cmake
+echo set\(HIDE_PRIVATE_SYMBOLS ON\) >> config.cmake

[tvm] 06/07: ignore warning from coremltools

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 5a5cee2d25a8bf5f11dc612c27ffd68010041e70
Author: Masahiro Masuda <ma...@gmail.com>
AuthorDate: Thu Jan 6 18:57:10 2022 +0900

    ignore warning from coremltools
---
 tests/scripts/task_sphinx_precheck.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/scripts/task_sphinx_precheck.sh b/tests/scripts/task_sphinx_precheck.sh
index b5cac53..544d88a 100755
--- a/tests/scripts/task_sphinx_precheck.sh
+++ b/tests/scripts/task_sphinx_precheck.sh
@@ -38,7 +38,7 @@ cd docs
 make clean
 TVM_TUTORIAL_EXEC_PATTERN=none make html 2>&1 | tee /tmp/$$.log.txt
 
-grep -v -E "__mro__|UserWarning|FutureWarning|tensorflow|Keras|pytorch|TensorFlow|403|git describe|scikit-learn version" < /tmp/$$.log.txt > /tmp/$$.logclean.txt || true
+grep -v -E "__mro__|UserWarning|FutureWarning|tensorflow|Keras|pytorch|TensorFlow|coremltools|403|git describe|scikit-learn version" < /tmp/$$.log.txt > /tmp/$$.logclean.txt || true
 echo "---------Sphinx Log----------"
 cat /tmp/$$.logclean.txt
 echo "-----------------------------"

[tvm] 05/07: update to 20220105-225914-79cfb797e

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 29c70e28da84a4f6cab3e08c8b78b6be67294171
Author: Masahiro Masuda <ma...@gmail.com>
AuthorDate: Thu Jan 6 16:36:13 2022 +0900

    update to 20220105-225914-79cfb797e
---
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 57db549..eb90a36 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 = "tlcpackstaging/ci_gpu:20211226-225913-218d2919f"
+ci_gpu = "tlcpackstaging/ci_gpu:20220105-225914-79cfb797e"
 ci_cpu = "tlcpack/ci-cpu:v0.79"
 ci_wasm = "tlcpack/ci-wasm:v0.71"
 ci_i386 = "tlcpack/ci-i386:v0.74"

[tvm] 07/07: Merge branch 'trt-pad-fix' into ci-docker-staging

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 cdb3d3b375316fbf115b423779bbff87deb42c04
Merge: 5a5cee2 67f9dda
Author: Masahiro Masuda <ma...@gmail.com>
AuthorDate: Fri Jan 7 05:06:43 2022 +0900

    Merge branch 'trt-pad-fix' into ci-docker-staging

 python/tvm/relay/op/contrib/tensorrt.py | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)