@@ -259,58 +259,48 @@ def test_dw_conv_tosa_BI(self, test_name: str, model: torch.nn.Module):
259
259
260
260
@parameterized .expand (testsuite_conv2d [:4 ], skip_on_empty = True )
261
261
@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 ):
265
263
self ._test_dw_conv_ethos_BI_pipeline (
266
264
model ,
267
- common .get_u55_compile_spec (quantize_io = set_quantize_io ),
265
+ common .get_u55_compile_spec (),
268
266
model .get_inputs (),
269
267
)
270
268
271
269
@parameterized .expand (testsuite_conv2d [4 :], skip_on_empty = True )
272
270
@pytest .mark .corstone_fvp
273
271
@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 ):
277
273
self ._test_dw_conv_ethos_BI_pipeline (
278
274
model ,
279
- common .get_u55_compile_spec (quantize_io = set_quantize_io ),
275
+ common .get_u55_compile_spec (),
280
276
model .get_inputs (),
281
277
)
282
278
283
279
@parameterized .expand (testsuite_conv1d , skip_on_empty = True )
284
280
@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 ):
288
282
self ._test_dw_conv_ethos_BI_pipeline (
289
283
model ,
290
- common .get_u55_compile_spec (quantize_io = set_quantize_io ),
284
+ common .get_u55_compile_spec (),
291
285
model .get_inputs (),
292
286
)
293
287
294
288
@parameterized .expand (testsuite_conv1d + testsuite_conv2d_u85 )
295
289
@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 ):
299
291
self ._test_dw_conv_ethos_BI_pipeline (
300
292
model ,
301
- common .get_u85_compile_spec (quantize_io = set_quantize_io ),
293
+ common .get_u85_compile_spec (),
302
294
model .get_inputs (),
303
295
)
304
296
305
297
# All test cases except 3x3_1x3x256x256_gp3_st1 have numerical issues on FVP. MLETORCH-520
306
298
@parameterized .expand (testsuite_conv2d_u85_xfails )
307
299
@pytest .mark .corstone_fvp
308
300
@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 ):
312
302
self ._test_dw_conv_ethos_BI_pipeline (
313
303
model ,
314
- common .get_u85_compile_spec (quantize_io = set_quantize_io ),
304
+ common .get_u85_compile_spec (),
315
305
model .get_inputs (),
316
306
)
0 commit comments