From: Tianqi Chen Date: Thu, 31 Oct 2019 18:13:48 +0000 (-0700) Subject: [BUILD] Disable utvm standalone runtime by default (#4240) X-Git-Tag: upstream/0.7.0~1706 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a3ca1a4da071f3aadffeafa6d22b43d5addde191;p=platform%2Fupstream%2Ftvm.git [BUILD] Disable utvm standalone runtime by default (#4240) --- diff --git a/Jenkinsfile b/Jenkinsfile index c7f96cd..5426cb5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -145,6 +145,7 @@ stage('Build') { echo set\\(USE_CUDA 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_NNPACK ON\\) >> config.cmake echo set\\(NNPACK_PATH /NNPACK/build/\\) >> config.cmake @@ -189,6 +190,7 @@ stage('Build') { cp ../cmake/config.cmake . echo set\\(USE_SORT ON\\) >> config.cmake echo set\\(USE_MICRO ON\\) >> config.cmake + echo set\\(USE_MICRO_STANDALONE_RUNTIME ON\\) >> config.cmake echo set\\(USE_GRAPH_RUNTIME_DEBUG ON\\) >> config.cmake echo set\\(USE_VM_PROFILER ON\\) >> config.cmake echo set\\(USE_LLVM llvm-config-8\\) >> config.cmake @@ -221,6 +223,7 @@ stage('Build') { 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_MICRO_STANDALONE_RUNTIME ON\\) >> config.cmake echo set\\(USE_VM_PROFILER ON\\) >> config.cmake echo set\\(USE_LLVM llvm-config-4.0\\) >> config.cmake echo set\\(CMAKE_CXX_COMPILER g++\\) >> config.cmake diff --git a/cmake/config.cmake b/cmake/config.cmake index dbc2e80..51c9292 100644 --- a/cmake/config.cmake +++ b/cmake/config.cmake @@ -92,7 +92,7 @@ set(USE_GRAPH_RUNTIME_DEBUG OFF) set(USE_VM_PROFILER OFF) # Whether enable uTVM standalone runtime -set(USE_MICRO_STANDALONE_RUNTIME ON) +set(USE_MICRO_STANDALONE_RUNTIME OFF) # Whether build with LLVM support # Requires LLVM version >= 4.0