Skip to content

Commit 2ef6bde

Browse files
danielsuoGoogle-ML-Automation
authored andcommitted
Reduce the maximum test parallelism on Windows machines to avoid OOMs.
Success: https://github.com/jax-ml/jax/actions/runs/19576672378/job/56064575442 PiperOrigin-RevId: 835354809
1 parent 5d06d3a commit 2ef6bde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/run_pytest_cpu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ MAX_PROCESSES_ARG=""
5050
if [[ -n "${MAX_PROCESSES}" ]]; then
5151
MAX_PROCESSES_ARG="--maxprocesses=${MAX_PROCESSES}"
5252
elif [[ "$(uname -s)" == *"MSYS"* ]]; then
53-
MAX_PROCESSES_ARG="--maxprocesses=56" # Tests OOM on Windows sometimes.
53+
MAX_PROCESSES_ARG="--maxprocesses=32" # Tests OOM on Windows sometimes.
5454
fi
5555
# End of test environment variable setup
5656

0 commit comments

Comments
 (0)