Skip to content

Commit 6ad47df

Browse files
authored
Arm backend: Do not run model unit tests in parallel (#10953)
Executing to many of the larger models in parallel can cause some resource problems on the machine. Signed-off-by: Zingo Andersen <[email protected]>
1 parent 7d9dd46 commit 6ad47df

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)