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: 6 additions & 1 deletion examples/arm/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ fi
ethos_u_repo_url="https://review.mlplatform.org/ml/ethos-u/ethos-u"
ethos_u_base_rev="24.05"

# tosa reference model
tosa_reference_model_url="https://review.mlplatform.org/tosa/reference_model"
tosa_reference_model_rev="444eb365d92774430006e56a8c20161be2f2674f"

########
### Mandatory user args
########
Expand Down Expand Up @@ -179,8 +183,9 @@ function setup_tosa_reference_model() {
# errors for the early codebase
cd "${root_dir}"
if [[ ! -e reference_model ]]; then
git clone https://review.mlplatform.org/tosa/reference_model -b v0.80
git clone ${tosa_reference_model_url}
cd reference_model
git checkout ${tosa_reference_model_rev}
git submodule update --init --recursive
cd ..
fi
Expand Down
Loading