88
99from typing import Optional , Tuple
1010
11- import pytest
1211import torch
1312from executorch .backends .arm .test import common
1413from executorch .backends .arm .test .tester .test_pipeline import (
@@ -125,7 +124,6 @@ def test_silu_u85_INT_inplace(test_data: input_t):
125124
126125@common .parametrize ("test_data" , Silu .test_data )
127126@common .SkipIfNoModelConverter
128- @pytest .mark .xfail (reason = "MLETORCH-1387: Output differs" )
129127def test_silu_vgf_FP (test_data : input_t ):
130128 silu_data = (test_data (), False )
131129 pipeline = VgfPipeline [input_t ](
@@ -136,7 +134,6 @@ def test_silu_vgf_FP(test_data: input_t):
136134
137135@common .parametrize ("test_data" , Silu .test_data )
138136@common .SkipIfNoModelConverter
139- @pytest .mark .xfail (reason = "MLETORCH-1387: Output differs" )
140137def test_silu_vgf_FP_inplace (test_data : input_t ):
141138 silu_data = (test_data (), True )
142139 pipeline = VgfPipeline [input_t ](
@@ -147,7 +144,6 @@ def test_silu_vgf_FP_inplace(test_data: input_t):
147144
148145@common .parametrize ("test_data" , Silu .test_data )
149146@common .SkipIfNoModelConverter
150- @pytest .mark .xfail (reason = "MLETORCH-1387: Output differs" )
151147def test_silu_vgf_INT (test_data : input_t ):
152148 silu_data = (test_data (), False )
153149 pipeline = VgfPipeline [input_t ](
@@ -161,7 +157,6 @@ def test_silu_vgf_INT(test_data: input_t):
161157
162158@common .parametrize ("test_data" , Silu .test_data )
163159@common .SkipIfNoModelConverter
164- @pytest .mark .xfail (reason = "MLETORCH-1387: Output differs" )
165160def test_silu_vgf_INT_inplace (test_data : input_t ):
166161 silu_data = (test_data (), True )
167162 pipeline = VgfPipeline [input_t ](
0 commit comments