Skip to content

Commit 6d25a43

Browse files
committed
set the default option of WITH_FAST_BUNDLE_TEST be OFF
1 parent 2a3b9ff commit 6d25a43

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ option(USE_NNPACK "Compile PaddlePaddle with NNPACK library" OFF)
6060
option(WITH_DISTRIBUTE "Compile with grpc distributed support" OFF)
6161
option(USE_EIGEN_FOR_BLAS "Use matrix multiplication in Eigen" OFF)
6262
option(WITH_ARM_FP16 "Use half precision support on armv8.2-a cpu" OFF)
63-
option(WITH_FAST_BUNDLE_TEST "Bundle tests that can be run in a single process together to reduce launch overhead" ON)
63+
option(WITH_FAST_BUNDLE_TEST "Bundle tests that can be run in a single process together to reduce launch overhead" OFF)
6464

6565
# CMAKE_BUILD_TYPE
6666
if(NOT CMAKE_BUILD_TYPE)

paddle/scripts/docker/build.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ function cmake_gen() {
4949
-DCUDNN_ROOT=/usr/
5050
-DWITH_STYLE_CHECK=${WITH_STYLE_CHECK:-ON}
5151
-DWITH_TESTING=${WITH_TESTING:-ON}
52+
-DWITH_FAST_BUNDLE_TEST=ON
5253
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON
5354
========================================
5455
EOF
@@ -72,6 +73,7 @@ EOF
7273
-DCUDNN_ROOT=/usr/ \
7374
-DWITH_STYLE_CHECK=${WITH_STYLE_CHECK:-ON} \
7475
-DWITH_TESTING=${WITH_TESTING:-ON} \
76+
-DWITH_FAST_BUNDLE_TEST=ON \
7577
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON
7678
}
7779

0 commit comments

Comments
 (0)