From 8a9b591a77167356cd733df14a776024808a824a Mon Sep 17 00:00:00 2001 From: William Dawson Date: Wed, 15 Nov 2023 15:46:23 +0900 Subject: [PATCH] Maybe we need to reduce the number of threads, CI is slow --- UnitTests/run_ci_test.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/UnitTests/run_ci_test.sh b/UnitTests/run_ci_test.sh index c3c773d0..c3942794 100644 --- a/UnitTests/run_ci_test.sh +++ b/UnitTests/run_ci_test.sh @@ -7,6 +7,9 @@ fi if [[ "$THREADOFF" == "1" ]]; then export OMP_NUM_THREADS=1 echo "Setting threads to 1" +else + export OMP_NUM_THREADS=2 + echo "Setting threads to 2" fi cd Build