diff --git a/backends/arm/test/ops/test_maximum.py b/backends/arm/test/ops/test_maximum.py index 1fe2c201487..a255496d517 100644 --- a/backends/arm/test/ops/test_maximum.py +++ b/backends/arm/test/ops/test_maximum.py @@ -109,7 +109,6 @@ def test_maximum_tosa_BI(self, operand1: torch.Tensor, operand2: torch.Tensor): self._test_maximum_tosa_BI_pipeline(self.Maximum(), test_data) @parameterized.expand(Maximum.test_parameters) - @unittest.expectedFailure # Bug in Vela, disabled until pin changes, bug MLETORCH-513 def test_maximum_u55_BI(self, operand1: torch.Tensor, operand2: torch.Tensor): test_data = (operand1, operand2) tester = self._test_maximum_ethos_BI_pipeline( diff --git a/backends/arm/test/ops/test_minimum.py b/backends/arm/test/ops/test_minimum.py index d455ca1d43d..04693a46435 100644 --- a/backends/arm/test/ops/test_minimum.py +++ b/backends/arm/test/ops/test_minimum.py @@ -109,7 +109,6 @@ def test_minimum_tosa_BI(self, operand1: torch.Tensor, operand2: torch.Tensor): self._test_minimum_tosa_BI_pipeline(self.Minimum(), test_data) @parameterized.expand(Minimum.test_parameters) - @unittest.expectedFailure # Bug in Vela, disabled until pin changes, bug MLETORCH-513 def test_minimum_u55_BI(self, operand1: torch.Tensor, operand2: torch.Tensor): test_data = (operand1, operand2) tester = self._test_minimum_ethos_BI_pipeline( diff --git a/examples/arm/setup.sh b/examples/arm/setup.sh index 0dd4c68cfd7..8b4cd275e4d 100755 --- a/examples/arm/setup.sh +++ b/examples/arm/setup.sh @@ -65,7 +65,7 @@ tosa_reference_model_rev="v0.80.1" # vela vela_repo_url="https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela" -vela_rev="fc970e3da72e5f6930b840b357684126602b3126" +vela_rev="e131bf4f528f0d461868229972e07f371dcbc881" ########