Skip to content

Commit 194051b

Browse files
committed
[Arm] Fix tosa-reference model upstream tracking
It appears that upstream updates to branch tosa_reference_model/v0.8 which we used to track broke ET CI. Hard coding it to a known good version for now. * Failed CI job - https://github.com/pytorch/executorch/actions/runs/11283289096/job/31382443033#step:12:26700 * Upstream branch updates - https://review.mlplatform.org/q/project:tosa%252Freference_model+branch:v0.80 Potentially culprit gerrit ids - 12676, 12677, 12678 updated today
1 parent 56a3d1e commit 194051b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

examples/arm/setup.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,11 @@ fi
8686
ethos_u_repo_url="https://review.mlplatform.org/ml/ethos-u/ethos-u"
8787
ethos_u_base_rev="24.08"
8888

89+
# tosa reference model
90+
# https://review.mlplatform.org/c/tosa/reference_model/+/12409
91+
tosa_reference_model_url="https://review.mlplatform.org/tosa/reference_model"
92+
tosa_reference_model_rev="444eb365d92774430006e56a8c20161be2f2674f"
93+
8994
########
9095
### Mandatory user args
9196
########
@@ -219,8 +224,9 @@ function setup_tosa_reference_model() {
219224
# errors for the early codebase
220225
cd "${root_dir}"
221226
if [[ ! -e reference_model ]]; then
222-
git clone https://review.mlplatform.org/tosa/reference_model -b v0.80
227+
git clone ${tosa_reference_model_url}
223228
cd reference_model
229+
git reset --hard ${tosa_reference_model_rev}
224230
git submodule update --init --recursive
225231
cd ..
226232
fi

0 commit comments

Comments
 (0)