Skip to content
Merged
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
7 changes: 4 additions & 3 deletions backends/arm/scripts/install_models_for_test.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Copyright 2025 Arm Limited and/or its affiliates.
# Copyright 2025-2026 Arm Limited and/or its affiliates.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
Expand All @@ -8,7 +8,8 @@ set -e
pip install -r backends/arm/requirements-arm-models-test.txt

# Install model gym repository
git clone https://github.com/arm/neural-graphics-model-gym.git
MODEL_GYM_REF="${MODEL_GYM_REF:-v0.3.0}"
git clone --depth 1 --branch "$MODEL_GYM_REF" https://github.com/arm/neural-graphics-model-gym.git
cd neural-graphics-model-gym
# Remove model-converter installation from model-gym repository (to prevent overwriting executorch version)
if [[ "$(uname)" == "Darwin" ]]; then
Expand All @@ -18,4 +19,4 @@ else
fi
pip install . --no-deps
cd ..
rm -rf neural-graphics-model-gym
rm -rf neural-graphics-model-gym
Loading