Skip to content

Commit

Permalink
Arm backend: Update Ethos-U compiler Vela to fix a output problem
Browse files Browse the repository at this point in the history
This includes the fix:
MLBEDSW-10094: Add correct producers in DecomposeTranspose

Signed-off-by: Zingo Andersen <[email protected]>
Change-Id: I8f89961c66e45983882c752a0d35dddf571a3459
  • Loading branch information
zingo authored and freddan80 committed Dec 11, 2024
1 parent e89e320 commit 59df3fe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions backends/arm/test/ops/test_layer_norm.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,9 @@ def test_layer_norm_tosa_BI(

# Numerical issues on FVP likely due to mul op, MLETORCH-521
# Skip tests that require transposes.
@parameterized.expand(test_data_suite[:-2])
@parameterized.expand(test_data_suite)
@unittest.expectedFailure
def test_layer_norm_u55_BI(
def test_layer_norm_u55_BI_xfails(
self,
test_name: str,
test_data: torch.Tensor,
Expand All @@ -171,7 +171,8 @@ def test_layer_norm_u55_BI(

# Numerical issues on FVP likely due to mul op, MLETORCH-521
@parameterized.expand(test_data_suite[:-2])
def test_layer_norm_u85_BI_fvp(
@unittest.expectedFailure
def test_layer_norm_u85_BI_xfails(
self,
test_name: str,
test_data: torch.Tensor,
Expand All @@ -182,7 +183,6 @@ def test_layer_norm_u85_BI_fvp(
)

@parameterized.expand(test_data_suite[-2:])
@unittest.skip # Flaky
def test_layer_norm_u85_BI(
self,
test_name: str,
Expand Down
2 changes: 1 addition & 1 deletion examples/arm/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ tosa_reference_model_rev="c5570b79e90c3a36ab8c4ddb8ee3fbc2cd3f7c38"

# vela
vela_repo_url="https://review.mlplatform.org/ml/ethos-u/ethos-u-vela"
vela_rev="a08fc18780827b5fefc814dd0162ee6317ce0ae7"
vela_rev="5427dc7e9c1a4c7d554163290faeea75f168772d"

########
### Mandatory user args
Expand Down

0 comments on commit 59df3fe

Please sign in to comment.