8
8
9
9
from typing import Optional , Tuple
10
10
11
- import pytest
12
11
import torch
13
12
from executorch .backends .arm .test import common
14
13
from executorch .backends .arm .test .tester .test_pipeline import (
@@ -125,7 +124,6 @@ def test_silu_u85_INT_inplace(test_data: input_t):
125
124
126
125
@common .parametrize ("test_data" , Silu .test_data )
127
126
@common .SkipIfNoModelConverter
128
- @pytest .mark .xfail (reason = "MLETORCH-1387: Output differs" )
129
127
def test_silu_vgf_FP (test_data : input_t ):
130
128
silu_data = (test_data (), False )
131
129
pipeline = VgfPipeline [input_t ](
@@ -136,7 +134,6 @@ def test_silu_vgf_FP(test_data: input_t):
136
134
137
135
@common .parametrize ("test_data" , Silu .test_data )
138
136
@common .SkipIfNoModelConverter
139
- @pytest .mark .xfail (reason = "MLETORCH-1387: Output differs" )
140
137
def test_silu_vgf_FP_inplace (test_data : input_t ):
141
138
silu_data = (test_data (), True )
142
139
pipeline = VgfPipeline [input_t ](
@@ -147,7 +144,6 @@ def test_silu_vgf_FP_inplace(test_data: input_t):
147
144
148
145
@common .parametrize ("test_data" , Silu .test_data )
149
146
@common .SkipIfNoModelConverter
150
- @pytest .mark .xfail (reason = "MLETORCH-1387: Output differs" )
151
147
def test_silu_vgf_INT (test_data : input_t ):
152
148
silu_data = (test_data (), False )
153
149
pipeline = VgfPipeline [input_t ](
@@ -161,7 +157,6 @@ def test_silu_vgf_INT(test_data: input_t):
161
157
162
158
@common .parametrize ("test_data" , Silu .test_data )
163
159
@common .SkipIfNoModelConverter
164
- @pytest .mark .xfail (reason = "MLETORCH-1387: Output differs" )
165
160
def test_silu_vgf_INT_inplace (test_data : input_t ):
166
161
silu_data = (test_data (), True )
167
162
pipeline = VgfPipeline [input_t ](
0 commit comments