@@ -183,8 +183,21 @@ def test_div_tosa_BI(
183183 test_data = (input_ , other_ )
184184 self ._test_div_tosa_BI_pipeline (self .Div (), test_data )
185185
186+ @parameterized .expand (test_data_suite [:2 ])
187+ def test_div_u55_BI (
188+ self ,
189+ test_name : str ,
190+ input_ : Union [torch .Tensor , torch .types .Number ],
191+ other_ : Union [torch .Tensor , torch .types .Number ],
192+ rounding_mode : Optional [str ] = None ,
193+ ):
194+ test_data = (input_ , other_ )
195+ self ._test_div_ethos_BI_pipeline (
196+ self .Div (), common .get_u55_compile_spec (), test_data
197+ )
198+
186199 # Numerical issues on FVP likely due to mul op, MLETORCH-521
187- @parameterized .expand (test_data_suite )
200+ @parameterized .expand (test_data_suite [ 2 :] )
188201 @conftest .expectedFailureOnFVP
189202 def test_div_u55_BI_xfails (
190203 self ,
@@ -198,8 +211,21 @@ def test_div_u55_BI_xfails(
198211 self .Div (), common .get_u55_compile_spec (), test_data
199212 )
200213
214+ @parameterized .expand (test_data_suite [:2 ])
215+ def test_div_u85_BI (
216+ self ,
217+ test_name : str ,
218+ input_ : Union [torch .Tensor , torch .types .Number ],
219+ other_ : Union [torch .Tensor , torch .types .Number ],
220+ rounding_mode : Optional [str ] = None ,
221+ ):
222+ test_data = (input_ , other_ )
223+ self ._test_div_ethos_BI_pipeline (
224+ self .Div (), common .get_u85_compile_spec (), test_data
225+ )
226+
201227 # Numerical issues on FVP likely due to mul op, MLETORCH-521
202- @parameterized .expand (test_data_suite )
228+ @parameterized .expand (test_data_suite [ 2 :] )
203229 @conftest .expectedFailureOnFVP
204230 def test_div_u85_BI_xfails (
205231 self ,
0 commit comments