Skip to content

Commit 31fe827

Browse files
committed
Reduce test-ops parallelism to avoid OOM on runner
test-ops spawns cadence_runner subprocesses per test which uses significantly more memory than the pure-Python test-aot tests. Limit to 4 workers to prevent runner OOM kills.
1 parent efd2a11 commit 31fe827

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/_test_cadence.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,4 @@ jobs:
7070
chmod +x cmake-out/backends/cadence/cadence_runner
7171
7272
export PYTHONPATH="${PYTHONPATH:-}:$(pwd)/backends/cadence/utils/FACTO"
73-
python -m pytest examples/cadence/operators/ -v -n auto
73+
python -m pytest examples/cadence/operators/ -v -n 4

0 commit comments

Comments
 (0)