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/30 01:37:34 UTC

[tvm] branch ci-gpu-update updated (7337210d4d -> 50731eaa36)

This is an automated email from the ASF dual-hosted git repository.

masahi pushed a change to branch ci-gpu-update
in repository https://gitbox.apache.org/repos/asf/tvm.git


 discard 7337210d4d [CI] Update GPU image to use newer CMake
     add e23a1b8d57 Make microtvm_template_projects available in tutorials. (#11164)
     add 9ea4fa2450 [fix] vec * mat in matmul in onnx converter (#11174)
     add f14070e8f9 [AOT] Return module list from AotExecutorFactory (#11191)
     add b772d27273 Enable USE_CUSTOM_LOGGING for Hexagon Launcher (#11185)
     add 552f06ed45 support round-trip for T.Ptr in tvmscript (#11179)
     add 26cefab5df [TIR] Bind iter domain in analyzer in CreatePrimFunc (#11187)
     new 50731eaa36 [CI] Update GPU image to use newer CMake

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   (7337210d4d)
            \
             N -- N -- N   refs/heads/ci-gpu-update (50731eaa36)

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:
 Jenkinsfile                                        | 59 ++++++++++++++--------
 apps/hexagon_launcher/CMakeLists.txt               |  1 +
 apps/hexagon_launcher/cmake/HexagonLauncher.cmake  |  3 ++
 apps/hexagon_launcher/cmake/hexagon/CMakeLists.txt |  1 +
 apps/hexagon_launcher/launcher_hexagon.cc          | 18 +++----
 jenkins/Jenkinsfile.j2                             | 59 ++++++++++++++--------
 python/tvm/contrib/nvcc.py                         | 14 +++--
 python/tvm/relay/frontend/onnx.py                  |  4 ++
 python/tvm/script/parser.py                        | 10 ++--
 python/tvm/script/tir/ty.py                        | 24 +++++++--
 src/printer/tvmscript_printer.cc                   |  5 +-
 src/runtime/aot_executor/aot_executor_factory.cc   |  5 ++
 src/te/operation/create_primfunc.cc                |  6 ++-
 tests/python/frontend/onnx/test_forward.py         | 39 +++++++-------
 tests/python/relay/aot/test_cpp_aot.py             | 18 +++++++
 .../unittest/test_meta_schedule_tune_relay.py      | 22 ++++----
 tests/python/unittest/test_te_create_primfunc.py   | 42 +++++++++------
 tests/python/unittest/test_tvmscript_roundtrip.py  | 13 +++++
 18 files changed, 233 insertions(+), 110 deletions(-)


[tvm] 01/01: [CI] Update GPU image to use newer CMake

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

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

commit 50731eaa36519ad660f59e723252e05b89c3ed05
Author: Masahiro Masuda <ma...@gmail.com>
AuthorDate: Sat Apr 30 10:11:02 2022 +0900

    [CI] Update GPU image to use newer CMake
---
 Jenkinsfile            | 4 ++--
 jenkins/Jenkinsfile.j2 | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 5022076119..3e92de6504 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-29T08:49:28.997200
+// Generated at 2022-04-30T10:10:58.528075
 
 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.86'
+ci_gpu = 'tlcpack/ci-gpu:v0.87'
 ci_cpu = 'tlcpack/ci-cpu:v0.84'
 ci_wasm = 'tlcpack/ci-wasm:v0.73'
 ci_i386 = 'tlcpack/ci-i386:v0.77'
diff --git a/jenkins/Jenkinsfile.j2 b/jenkins/Jenkinsfile.j2
index 06ba2e3123..39565d1403 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.86'
+ci_gpu = 'tlcpack/ci-gpu:v0.87'
 ci_cpu = 'tlcpack/ci-cpu:v0.84'
 ci_wasm = 'tlcpack/ci-wasm:v0.73'
 ci_i386 = 'tlcpack/ci-i386:v0.77'