Skip to content

Commit

Permalink
Fix tosa-reference model upstream tracking (#6156)
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
digantdesai authored and pytorchbot committed Oct 11, 2024
1 parent 0b82b17 commit 46c6826
Showing 1 changed file with 6 additions and 1 deletion.
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

0 comments on commit 46c6826

Please sign in to comment.