Skip to content

Commit e83ab0e

Browse files
zingofreddan80
authored andcommitted
Arm Backend: Update Ethos-U compiler Vela to 4.1.0
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
1 parent 7c934db commit e83ab0e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

backends/arm/test/ops/test_bmm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def test_bmm_u85_BI(self, operand1: torch.Tensor, operand2: torch.Tensor):
161161
)
162162

163163
@parameterized.expand(BMM.test_parameters[1:])
164-
@unittest.expectedFailure
164+
@common.expectedFailureOnFVP
165165
def test_bmm_u85_BI_xfails(self, operand1: torch.Tensor, operand2: torch.Tensor):
166166
test_data = (operand1, operand2)
167167
self._test_bmm_ethosu_BI_pipeline(

backends/arm/test/ops/test_depthwise_conv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ def test_dw_conv_tosa_BI(self, test_name: str, model: torch.nn.Module):
260260
) # Works
261261

262262
@parameterized.expand(testsuite_conv2d, skip_on_empty=True)
263-
@common.expectedFailureOnFVP
263+
@unittest.expectedFailure
264264
def test_dw_conv2d_u55_BI(
265265
self, test_name: str, model: torch.nn.Module, set_quantize_io: bool = False
266266
):

backends/arm/test/ops/test_layer_norm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def test_layer_norm_tosa_BI(
158158
# Numerical issues on FVP likely due to mul op, MLETORCH-521
159159
# Skip tests that require transposes.
160160
@parameterized.expand(test_data_suite[:-2])
161-
@common.expectedFailureOnFVP
161+
@unittest.expectedFailure
162162
def test_layer_norm_u55_BI(
163163
self,
164164
test_name: str,

0 commit comments

Comments
 (0)