@@ -168,13 +168,6 @@ def forward(self, x):
168168 "float_r4_st" : "MLETORCH-408: Arithmetic ops can't handle scalars first" ,
169169}
170170
171- int_inplace_xfails = {
172- "int_r1_ts" : "MLETORCH-1708: Numerical error in TFA/quantization" ,
173- "int_r4_ts" : "MLETORCH-1708: Numerical error in TFA/quantization" ,
174- "float_r1_ts" : "MLETORCH-1708: Numerical error in TFA/quantization" ,
175- "float_r4_ts" : "MLETORCH-1708: Numerical error in TFA/quantization" ,
176- }
177-
178171
179172# ADD FP ------------------------------------------------------
180173@common .parametrize ("test_data" , tensor_scalar_tests , xfails = xfails )
@@ -215,9 +208,7 @@ def test_add_tensor_tosa_INT_scalar(test_data):
215208 pipeline .run ()
216209
217210
218- @common .parametrize (
219- "test_data" , tensor_scalar_tests , xfails = int_inplace_xfails , strict = False
220- )
211+ @common .parametrize ("test_data" , tensor_scalar_tests )
221212def test_add_tensor_tosa_INT_inplace (test_data ):
222213 """Tests inplace add with one scalar input."""
223214 pipeline = TosaPipelineINT [input_t1 ](AddInplace (), test_data , aten_op = [])
@@ -285,9 +276,7 @@ def test_sub_tensor_tosa_INT_scalar(test_data):
285276 pipeline .run ()
286277
287278
288- @common .parametrize (
289- "test_data" , tensor_scalar_tests , xfails = int_inplace_xfails , strict = False
290- )
279+ @common .parametrize ("test_data" , tensor_scalar_tests )
291280def test_sub_tensor_tosa_INT_inplace (test_data ):
292281 """Tests inplace sub with one scalar input."""
293282 pipeline = TosaPipelineINT [input_t1 ](SubInplace (), test_data , aten_op = [])
@@ -344,9 +333,7 @@ def test_mul_tensor_tosa_INT_scalar(test_data):
344333 pipeline .run ()
345334
346335
347- @common .parametrize (
348- "test_data" , tensor_scalar_tests , xfails = int_inplace_xfails , strict = False
349- )
336+ @common .parametrize ("test_data" , tensor_scalar_tests )
350337def test_mul_tensor_tosa_INT_inplace (test_data ):
351338 """Tests inplace mul with one scalar input."""
352339 pipeline = TosaPipelineINT [input_t1 ](MulInplace (), test_data , aten_op = [])
0 commit comments