Skip to content

Commit 5696b35

Browse files
digantdesaifacebook-github-bot
authored andcommitted
Fix tosa-reference model upstream tracking (#6156)
Summary: 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 Pull Request resolved: #6156 Reviewed By: larryliu0820 Differential Revision: D64222142 Pulled By: digantdesai fbshipit-source-id: 8438770851f8309020755992036f8e4c50857301
1 parent 84f51d1 commit 5696b35

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

examples/arm/setup.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,10 @@ 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+
tosa_reference_model_url="https://review.mlplatform.org/tosa/reference_model"
91+
tosa_reference_model_rev="444eb365d92774430006e56a8c20161be2f2674f"
92+
8993
########
9094
### Mandatory user args
9195
########
@@ -219,8 +223,9 @@ function setup_tosa_reference_model() {
219223
# errors for the early codebase
220224
cd "${root_dir}"
221225
if [[ ! -e reference_model ]]; then
222-
git clone https://review.mlplatform.org/tosa/reference_model -b v0.80
226+
git clone ${tosa_reference_model_url}
223227
cd reference_model
228+
git checkout ${tosa_reference_model_rev}
224229
git submodule update --init --recursive
225230
cd ..
226231
fi

0 commit comments

Comments
 (0)