Skip to content

Commit 74d6613

Browse files
authored
[ci] Temporarily lower CUDA tests parallelism by 1 (4->3) (#5981)
1 parent e8f9cb5 commit 74d6613

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/scripts/unix_test.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ if [ -z "$GPU_TEST" ]; then
8383
else
8484
# Split per arch to increase parallelism for linux GPU tests
8585
if [[ $TI_WANTED_ARCHS == *"cuda"* ]]; then
86-
python3 tests/run_tests.py -vr2 -t4 -k "not torch and not paddle" -a cuda
86+
# FIXME: suddenly tests exibit OOM on nvidia driver 470 + RTX2060 cards, lower parallelism by 1 (4->3)
87+
python3 tests/run_tests.py -vr2 -t3 -k "not torch and not paddle" -a cuda
8788
fi
8889
if [[ $TI_WANTED_ARCHS == *"cpu"* ]]; then
8990
python3 tests/run_tests.py -vr2 -t8 -k "not torch and not paddle" -a cpu

0 commit comments

Comments
 (0)