-
Couldn't load subscription status.
- Fork 701
Enable Ethos-U85 support in Vela #5002
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
dcaa5c8
733135b
5530834
6a3b3f8
6ec5324
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -127,11 +127,18 @@ def test_add_tosa_BI(self, test_data: torch.Tensor): | |
| test_data = (test_data,) | ||
| self._test_add_tosa_BI_pipeline(self.Add(), test_data) | ||
|
|
||
| @parameterized.expand(Add.test_parameters) | ||
| @parameterized.expand([Add.test_parameters[0]]) | ||
| def test_add_u55_BI(self, test_data: torch.Tensor): | ||
| test_data = (test_data,) | ||
| self._test_add_u55_BI_pipeline(self.Add(), test_data) | ||
|
|
||
| # TODO(MLETORCH-352) Remove @unittest.expectedFailure when bug fixed in Regor | ||
| @parameterized.expand(Add.test_parameters[1:]) | ||
| @unittest.expectedFailure | ||
| def test_add_u55_BI_fail(self, test_data: torch.Tensor): | ||
| test_data = (test_data,) | ||
| self._test_add_u55_BI_pipeline(self.Add(), test_data) | ||
|
|
||
| @parameterized.expand(Add2.test_parameters) | ||
| def test_add2_tosa_MI(self, operand1: torch.Tensor, operand2: torch.Tensor): | ||
| test_data = (operand1, operand2) | ||
|
|
@@ -142,7 +149,9 @@ def test_add2_tosa_BI(self, operand1: torch.Tensor, operand2: torch.Tensor): | |
| test_data = (operand1, operand2) | ||
| self._test_add_tosa_BI_pipeline(self.Add2(), test_data) | ||
|
|
||
| # TODO(MLETORCH-352) Remove @unittest.expectedFailure when bug fixed in Regor | ||
|
||
| @parameterized.expand(Add2.test_parameters) | ||
| @unittest.expectedFailure | ||
| def test_add2_u55_BI(self, operand1: torch.Tensor, operand2: torch.Tensor): | ||
| test_data = (operand1, operand2) | ||
| self._test_add_u55_BI_pipeline(self.Add2(), test_data) | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -215,7 +215,7 @@ function setup_vela() { | |
| if [[ ! -e ethos-u-vela ]]; then | ||
| git clone https://review.mlplatform.org/ml/ethos-u/ethos-u-vela | ||
| repo_dir="${root_dir}/ethos-u-vela" | ||
| base_rev=7706c1281166e7611f4300ed26338087152a33c9 | ||
| base_rev=d362f5443f67b1e6213a9d8f124edff758efac96 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. seems like we are regressing a bit on U55, is that a concern when we move to the new backend? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No, not really. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How do you mean regressing Digant? edit: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Understood, thanks. |
||
| patch_repo | ||
| fi | ||
| cd "${root_dir}/ethos-u-vela" | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.