Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions backends/arm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,10 +249,15 @@ Some tests, with `u55`, `u85` and `vgf` in the name require external dependencie
```

In addition, some model tests in the Arm backend require third-party libraries or packages.
To run these tests, you need to install the required dependencies by running the script `examples/arm/setup.sh` with the flag `--setup-test-dependency`.
To run these tests, install the required dependencies directly:

Please note that installing model test dependencies is a standalone process. When using the `--setup-test-dependency` flag,
the script will install only the necessary dependencies for model tests, skipping all other setup procedures.
```
bash backends/arm/scripts/install_models_for_test.sh
```

Installing model test dependencies is a standalone process. The script installs
only the dependencies needed for model tests, skipping all other setup
procedures.

## Using git hooks

Expand Down
5 changes: 0 additions & 5 deletions examples/arm/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -182,11 +182,6 @@ function check_options() {
enable_vulkan_sdk=1
shift
;;
--setup-test-dependency)
log_step "deps" "Installing test dependency..."
source $et_dir/backends/arm/scripts/install_models_for_test.sh
exit 0
;;
--help)
print_usage "$@"
exit 0
Expand Down
Loading