Skip to content

Commit c169d91

Browse files
[Arm] Fix tosa-reference model upstream tracking (#6162)
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 (cherry picked from commit 5696b35) Co-authored-by: Digant Desai <[email protected]>
1 parent 922c74b commit c169d91

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
@@ -78,6 +78,10 @@ fi
7878
ethos_u_repo_url="https://review.mlplatform.org/ml/ethos-u/ethos-u"
7979
ethos_u_base_rev="24.05"
8080

81+
# tosa reference model
82+
tosa_reference_model_url="https://review.mlplatform.org/tosa/reference_model"
83+
tosa_reference_model_rev="444eb365d92774430006e56a8c20161be2f2674f"
84+
8185
########
8286
### Mandatory user args
8387
########
@@ -179,8 +183,9 @@ function setup_tosa_reference_model() {
179183
# errors for the early codebase
180184
cd "${root_dir}"
181185
if [[ ! -e reference_model ]]; then
182-
git clone https://review.mlplatform.org/tosa/reference_model -b v0.80
186+
git clone ${tosa_reference_model_url}
183187
cd reference_model
188+
git checkout ${tosa_reference_model_rev}
184189
git submodule update --init --recursive
185190
cd ..
186191
fi

0 commit comments

Comments
 (0)