Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading