We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8f9cb5 commit 74d6613Copy full SHA for 74d6613
.github/workflows/scripts/unix_test.sh
@@ -83,7 +83,8 @@ if [ -z "$GPU_TEST" ]; then
83
else
84
# Split per arch to increase parallelism for linux GPU tests
85
if [[ $TI_WANTED_ARCHS == *"cuda"* ]]; then
86
- python3 tests/run_tests.py -vr2 -t4 -k "not torch and not paddle" -a cuda
+ # 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
88
fi
89
if [[ $TI_WANTED_ARCHS == *"cpu"* ]]; then
90
python3 tests/run_tests.py -vr2 -t8 -k "not torch and not paddle" -a cpu
0 commit comments