Skip to content

Commit 38af1d3

Browse files
committed
Arm backend: Do not run model unit tests in parallel
Runing to many of the larger models in parallel can cause some resource problems on the maching. Signed-off-by: Zingo Andersen <[email protected]> Change-Id: Ibdcd6bd4b28cd42f833402a11e1d0676b3f50348
1 parent 9cce48d commit 38af1d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backends/arm/test/test_arm_baremetal.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ test_pytest_models() { # Test ops and other things
8787
backends/arm/scripts/build_executorch.sh
8888

8989
# Run arm baremetal pytest tests without FVP
90-
pytest --verbose --color=yes --numprocesses=auto backends/arm/test/models
90+
pytest --verbose --color=yes backends/arm/test/models
9191
echo "${TEST_SUITE_NAME}: PASS"
9292
}
9393

@@ -122,7 +122,7 @@ test_pytest_models_ethosu_fvp() { # Same as test_pytest but also sometime verify
122122
backends/arm/test/setup_testing.sh
123123

124124
# Run arm baremetal pytest tests with FVP
125-
pytest --verbose --color=yes --numprocesses=auto backends/arm/test/models --arm_run_corstoneFVP
125+
pytest --verbose --color=yes backends/arm/test/models --arm_run_corstoneFVP
126126
echo "${TEST_SUITE_NAME}: PASS"
127127
}
128128

0 commit comments

Comments
 (0)