Skip to content

Commit

Permalink
Arm Backend: Update Ethos-U compiler Vela to 4.1.0
Browse files Browse the repository at this point in the history
This fix a code generation problem.
Some Ethos-U85 tests starts working and some Ethos-U55 tests are
disabled due to more stricts testing added to vela compiler.

Signed-off-by: Zingo Andersen <[email protected]>
Change-Id: I53a10a1675cea34e105e04f864dfa3cb4cc626fa
  • Loading branch information
zingo authored and freddan80 committed Nov 28, 2024
1 parent 7c934db commit e83ab0e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion backends/arm/test/ops/test_bmm.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def test_bmm_u85_BI(self, operand1: torch.Tensor, operand2: torch.Tensor):
)

@parameterized.expand(BMM.test_parameters[1:])
@unittest.expectedFailure
@common.expectedFailureOnFVP
def test_bmm_u85_BI_xfails(self, operand1: torch.Tensor, operand2: torch.Tensor):
test_data = (operand1, operand2)
self._test_bmm_ethosu_BI_pipeline(
Expand Down
2 changes: 1 addition & 1 deletion backends/arm/test/ops/test_depthwise_conv.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ def test_dw_conv_tosa_BI(self, test_name: str, model: torch.nn.Module):
) # Works

@parameterized.expand(testsuite_conv2d, skip_on_empty=True)
@common.expectedFailureOnFVP
@unittest.expectedFailure
def test_dw_conv2d_u55_BI(
self, test_name: str, model: torch.nn.Module, set_quantize_io: bool = False
):
Expand Down
2 changes: 1 addition & 1 deletion backends/arm/test/ops/test_layer_norm.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ 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])
@common.expectedFailureOnFVP
@unittest.expectedFailure
def test_layer_norm_u55_BI(
self,
test_name: str,
Expand Down

0 comments on commit e83ab0e

Please sign in to comment.