@@ -267,6 +267,7 @@ def test_conv_meandim_tosa_BI(self):
267267 model = ComboConv2dMeandim ()
268268 self ._test_conv_combo_tosa_BI_pipeline (model , model .get_inputs ())
269269
270+ @pytest .mark .corstone_fvp
270271 def test_conv_meandim_u55_BI (self ):
271272 model = ComboConv2dMeandim ()
272273 self ._test_conv_combo_ethos_BI_pipeline (
@@ -275,6 +276,7 @@ def test_conv_meandim_u55_BI(self):
275276 model .get_inputs (),
276277 )
277278
279+ @pytest .mark .corstone_fvp
278280 def test_conv_meandim_u85_BI (self ):
279281 model = ComboConv2dMeandim ()
280282 self ._test_conv_combo_ethos_BI_pipeline (
@@ -294,12 +296,14 @@ def test_conv_batchnorm_relu6_tosa_BI(self):
294296 model = ComboConvBatchnormRelu6 ()
295297 self ._test_conv_combo_tosa_BI_pipeline (model , model .get_inputs ())
296298
299+ @pytest .mark .corstone_fvp
297300 def test_conv_batchnorm_relu6_u55_BI (self ):
298301 model = ComboConvBatchnormRelu6 ()
299302 self ._test_conv_combo_ethos_BI_pipeline (
300303 model , common .get_u55_compile_spec (), model .get_inputs ()
301304 )
302305
306+ @pytest .mark .corstone_fvp
303307 def test_conv_batchnorm_relu_u85_BI (self ):
304308 model = ComboConvBatchnormRelu6 ()
305309 self ._test_conv_combo_ethos_BI_pipeline (
@@ -324,6 +328,7 @@ def test_conv_relu6_tosa_BI(self, test_data: torch.Tensor):
324328 self ._test_conv_combo_tosa_BI_pipeline (model , test_data )
325329
326330 @parameterized .expand (ComboConvRelu6 .test_data )
331+ @pytest .mark .corstone_fvp
327332 def test_conv_relu6_u55_BI (self , test_data : torch .Tensor ):
328333 model = ComboConvRelu6 ()
329334 test_data = (test_data ,)
@@ -332,6 +337,7 @@ def test_conv_relu6_u55_BI(self, test_data: torch.Tensor):
332337 )
333338
334339 @parameterized .expand (ComboConvRelu6 .test_data )
340+ @pytest .mark .corstone_fvp
335341 def test_conv_relu6_u85_BI (self , test_data : torch .Tensor ):
336342 model = ComboConvRelu6 ()
337343 test_data = (test_data ,)
@@ -347,11 +353,12 @@ def test_block_bottleneck_residual_tosa_MI(self):
347353 self ._test_conv_combo_tosa_MI_pipeline (model , model .get_inputs ())
348354
349355 # TODO: Investigate flakyness (MLTORCH-307)
350- @pytest . mark . flaky ( reruns = 3 )
356+ @unittest . skip ( reason = "Skiped due to flakyness (MLTORCH-307)" )
351357 def test_block_bottleneck_residual_tosa_BI (self ):
352358 model = ComboBlockBottleneckResidual ()
353359 self ._test_conv_combo_tosa_BI_pipeline (model , model .get_inputs ())
354360
361+ @pytest .mark .corstone_fvp
355362 def test_block_bottleneck_residual_u55_BI (self ):
356363 model = ComboBlockBottleneckResidual ()
357364 self ._test_conv_combo_ethos_BI_pipeline (
@@ -360,6 +367,7 @@ def test_block_bottleneck_residual_u55_BI(self):
360367 model .get_inputs (),
361368 )
362369
370+ @pytest .mark .corstone_fvp
363371 def test_block_bottleneck_residual_u85_BI (self ):
364372 model = ComboBlockBottleneckResidual ()
365373 self ._test_conv_combo_ethos_BI_pipeline (
@@ -384,6 +392,7 @@ def test_conv_avgpool2d_tosa_BI(self, test_data: torch.Tensor):
384392 self ._test_conv_combo_tosa_BI_pipeline (model , test_data )
385393
386394 @parameterized .expand (ComboConvAvgPool2d .test_data )
395+ @pytest .mark .corstone_fvp
387396 def test_conv_avgpool2d_u55_BI (self , test_data : torch .Tensor ):
388397 model = ComboConvAvgPool2d ()
389398 test_data = (test_data ,)
@@ -394,6 +403,7 @@ def test_conv_avgpool2d_u55_BI(self, test_data: torch.Tensor):
394403 )
395404
396405 @parameterized .expand (ComboConvAvgPool2d .test_data )
406+ @pytest .mark .corstone_fvp
397407 def test_conv_avgpool2d_u85_BI (self , test_data : torch .Tensor ):
398408 model = ComboConvAvgPool2d ()
399409 test_data = (test_data ,)
0 commit comments