Skip to content
Merged
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
8 changes: 4 additions & 4 deletions backends/arm/requirements-arm-models-test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
# LICENSE file in the root directory of this source tree.

diffusers[torch] @ git+https://github.com/huggingface/diffusers.git@a7cb14efbe4b255f4c8721c91a04f0ef40f4a05a
# ng_model_gym deps needed by NSS model tests
pydantic
slangtorch
rich
# ng_model_gym deps needed by NSS model tests since we install ng_model_gym with --no-deps
pydantic==2.10.4
slangtorch==1.3.11
rich==13.9.3
setuptools==80.10.2
6 changes: 3 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,7 @@ 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
git clone --branch v0.2.0 --depth 1 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 +18,4 @@ else
fi
pip install . --no-deps
cd ..
rm -rf neural-graphics-model-gym
rm -rf neural-graphics-model-gym
Loading