@@ -259,58 +259,48 @@ def test_dw_conv_tosa_BI(self, test_name: str, model: torch.nn.Module):
259259
260260 @parameterized .expand (testsuite_conv2d [:4 ], skip_on_empty = True )
261261 @pytest .mark .corstone_fvp
262- def test_dw_conv2d_u55_BI (
263- self , test_name : str , model : torch .nn .Module , set_quantize_io : bool = True
264- ):
262+ def test_dw_conv2d_u55_BI (self , test_name : str , model : torch .nn .Module ):
265263 self ._test_dw_conv_ethos_BI_pipeline (
266264 model ,
267- common .get_u55_compile_spec (quantize_io = set_quantize_io ),
265+ common .get_u55_compile_spec (),
268266 model .get_inputs (),
269267 )
270268
271269 @parameterized .expand (testsuite_conv2d [4 :], skip_on_empty = True )
272270 @pytest .mark .corstone_fvp
273271 @conftest .expectedFailureOnFVP # TODO: MLETORCH-516
274- def test_dw_conv2d_u55_BI_xfails (
275- self , test_name : str , model : torch .nn .Module , set_quantize_io : bool = False
276- ):
272+ def test_dw_conv2d_u55_BI_xfails (self , test_name : str , model : torch .nn .Module ):
277273 self ._test_dw_conv_ethos_BI_pipeline (
278274 model ,
279- common .get_u55_compile_spec (quantize_io = set_quantize_io ),
275+ common .get_u55_compile_spec (),
280276 model .get_inputs (),
281277 )
282278
283279 @parameterized .expand (testsuite_conv1d , skip_on_empty = True )
284280 @pytest .mark .corstone_fvp
285- def test_dw_conv1d_u55_BI (
286- self , test_name : str , model : torch .nn .Module , set_quantize_io : bool = True
287- ):
281+ def test_dw_conv1d_u55_BI (self , test_name : str , model : torch .nn .Module ):
288282 self ._test_dw_conv_ethos_BI_pipeline (
289283 model ,
290- common .get_u55_compile_spec (quantize_io = set_quantize_io ),
284+ common .get_u55_compile_spec (),
291285 model .get_inputs (),
292286 )
293287
294288 @parameterized .expand (testsuite_conv1d + testsuite_conv2d_u85 )
295289 @pytest .mark .corstone_fvp
296- def test_dw_conv_u85_BI (
297- self , test_name : str , model : torch .nn .Module , set_quantize_io : bool = True
298- ):
290+ def test_dw_conv_u85_BI (self , test_name : str , model : torch .nn .Module ):
299291 self ._test_dw_conv_ethos_BI_pipeline (
300292 model ,
301- common .get_u85_compile_spec (quantize_io = set_quantize_io ),
293+ common .get_u85_compile_spec (),
302294 model .get_inputs (),
303295 )
304296
305297 # All test cases except 3x3_1x3x256x256_gp3_st1 have numerical issues on FVP. MLETORCH-520
306298 @parameterized .expand (testsuite_conv2d_u85_xfails )
307299 @pytest .mark .corstone_fvp
308300 @conftest .expectedFailureOnFVP
309- def test_dw_conv_u85_BI_xfails (
310- self , test_name : str , model : torch .nn .Module , set_quantize_io : bool = True
311- ):
301+ def test_dw_conv_u85_BI_xfails (self , test_name : str , model : torch .nn .Module ):
312302 self ._test_dw_conv_ethos_BI_pipeline (
313303 model ,
314- common .get_u85_compile_spec (quantize_io = set_quantize_io ),
304+ common .get_u85_compile_spec (),
315305 model .get_inputs (),
316306 )
0 commit comments