From 47c8d4cf64d1aa85a7219bedee6143a2b9b990d9 Mon Sep 17 00:00:00 2001 From: Agnes Leroy Date: Fri, 13 Sep 2024 14:03:29 +0200 Subject: [PATCH] chore(gpu): set test threads to 1 when BIG_INSTANCE is false to get a better view of failures in the ci --- .github/workflows/gpu_fast_h100_tests.yml | 4 ++-- scripts/integer-tests.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/gpu_fast_h100_tests.yml b/.github/workflows/gpu_fast_h100_tests.yml index 76366541b..a1d9cfbdb 100644 --- a/.github/workflows/gpu_fast_h100_tests.yml +++ b/.github/workflows/gpu_fast_h100_tests.yml @@ -146,8 +146,8 @@ jobs: - name: Run core crypto and internal CUDA backend tests run: | - BIG_TESTS_INSTANCE=TRUE make test_core_crypto_gpu - BIG_TESTS_INSTANCE=TRUE make test_integer_compression_gpu + BIG_TESTS_INSTANCE=FALSE make test_core_crypto_gpu + BIG_TESTS_INSTANCE=FALSE make test_integer_compression_gpu BIG_TESTS_INSTANCE=TRUE make test_cuda_backend - name: Run user docs tests diff --git a/scripts/integer-tests.sh b/scripts/integer-tests.sh index 25b288607..4a849beac 100755 --- a/scripts/integer-tests.sh +++ b/scripts/integer-tests.sh @@ -133,8 +133,8 @@ if [[ "${backend}" == "gpu" ]]; then test_threads=8 doctest_threads=8 else - test_threads=3 - doctest_threads=3 + test_threads=1 + doctest_threads=1 fi fi