You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by zh...@apache.org on 2020/10/30 00:22:18 UTC

[incubator-tvm] branch ci-docker-staging updated (72dc1c0 -> 4968e88)

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

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


 discard 72dc1c0  [CI] fix cpp test (#6796)
     new 4968e88  [CI] fix cpp test (#6796)

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   (72dc1c0)
            \
             N -- N -- N   refs/heads/ci-docker-staging (4968e88)

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                            | 2 +-
 tests/scripts/task_config_build_arm.sh | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)


[incubator-tvm] 01/01: [CI] fix cpp test (#6796)

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

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

commit 4968e883ba355f8ee5cd91065e0e96202dc17bfd
Author: Zhi <51...@users.noreply.github.com>
AuthorDate: Thu Oct 29 16:56:28 2020 -0700

    [CI] fix cpp test (#6796)
---
 Jenkinsfile                            | 2 +-
 tests/scripts/task_config_build_arm.sh | 5 ++++-
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 0d6c09d..7db0f2c 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -218,7 +218,7 @@ stage('Build') {
       ws(per_exec_ws("tvm/build-arm")) {
         init_git()
         sh "${docker_run} ${ci_arm} ./tests/scripts/task_config_build_arm.sh"
-        make(ci_arm, 'build', '-j2')
+        make(ci_arm, 'build', '-j4')
         pack_lib('arm', tvm_multilib)
       }
     }
diff --git a/tests/scripts/task_config_build_arm.sh b/tests/scripts/task_config_build_arm.sh
index db2139b..65f5d63 100755
--- a/tests/scripts/task_config_build_arm.sh
+++ b/tests/scripts/task_config_build_arm.sh
@@ -26,8 +26,11 @@ cp ../cmake/config.cmake .
 echo set\(USE_SORT ON\) >> config.cmake
 echo set\(USE_RPC ON\) >> config.cmake
 echo set\(USE_GRAPH_RUNTIME_DEBUG ON\) >> config.cmake
-echo set\(USE_STANDALONE_CRT ON\) >> config.cmake
+echo set\(USE_MICRO ON\) >> config.cmake
+echo set\(USE_MICRO_STANDALONE_RUNTIME ON\) >> config.cmake
 echo set\(USE_VM_PROFILER ON\) >> config.cmake
 echo set\(USE_LLVM llvm-config-8\) >> config.cmake
 echo set\(CMAKE_CXX_COMPILER g++\) >> config.cmake
 echo set\(CMAKE_CXX_FLAGS -Werror\) >> config.cmake
+echo set\(USE_VTA_TSIM ON\) >> config.cmake
+echo set\(USE_VTA_FSIM ON\) >> config.cmake