@@ -140,6 +140,7 @@ def test_max_dim_tosa_FP_not_delegated():
140
140
141
141
@common .parametrize ("test_data" , Amax .test_data )
142
142
@common .SkipIfNoModelConverter
143
+ @pytest .mark .xfail (reason = "MLETORCH-1410: Tensor dimension count not supported: 0" )
143
144
def test_amax_vgf_FP (test_data : Amax .input_t ):
144
145
data , dim , keep_dims = test_data ()
145
146
module = Amax (dim , keep_dims )
@@ -154,6 +155,7 @@ def test_amax_vgf_FP(test_data: Amax.input_t):
154
155
155
156
@common .parametrize ("test_data" , Amax .test_data )
156
157
@common .SkipIfNoModelConverter
158
+ @pytest .mark .xfail (reason = "MLETORCH-1410: Tensor dimension count not supported: 0" )
157
159
def test_amax_vgf_INT (test_data : Amax .input_t ):
158
160
data , dim , keep_dims = test_data ()
159
161
module = Amax (dim , keep_dims )
@@ -168,6 +170,7 @@ def test_amax_vgf_INT(test_data: Amax.input_t):
168
170
169
171
@common .parametrize ("test_data" , Max .test_data )
170
172
@common .SkipIfNoModelConverter
173
+ @pytest .mark .xfail (reason = "MLETORCH-1410: Tensor dimension count not supported: 0" )
171
174
def test_max_dim_vgf_FP_to_amax (test_data : Max .input_t ):
172
175
data , dim = test_data ()
173
176
pipeline = VgfPipeline [Max .input_t ](
@@ -181,6 +184,7 @@ def test_max_dim_vgf_FP_to_amax(test_data: Max.input_t):
181
184
182
185
@common .parametrize ("test_data" , Max .test_data )
183
186
@common .SkipIfNoModelConverter
187
+ @pytest .mark .xfail (reason = "MLETORCH-1410: Tensor dimension count not supported: 0" )
184
188
def test_max_dim_vgf_INT_to_amax (test_data : Max .input_t ):
185
189
data , dim = test_data ()
186
190
pipeline = VgfPipeline [Max .input_t ](
0 commit comments