@@ -140,6 +140,7 @@ def test_max_dim_tosa_FP_not_delegated():
140140
141141@common .parametrize ("test_data" , Amax .test_data )
142142@common .SkipIfNoModelConverter
143+ @pytest .mark .xfail (reason = "MLETORCH-1410: Tensor dimension count not supported: 0" )
143144def test_amax_vgf_FP (test_data : Amax .input_t ):
144145 data , dim , keep_dims = test_data ()
145146 module = Amax (dim , keep_dims )
@@ -154,6 +155,7 @@ def test_amax_vgf_FP(test_data: Amax.input_t):
154155
155156@common .parametrize ("test_data" , Amax .test_data )
156157@common .SkipIfNoModelConverter
158+ @pytest .mark .xfail (reason = "MLETORCH-1410: Tensor dimension count not supported: 0" )
157159def test_amax_vgf_INT (test_data : Amax .input_t ):
158160 data , dim , keep_dims = test_data ()
159161 module = Amax (dim , keep_dims )
@@ -168,6 +170,7 @@ def test_amax_vgf_INT(test_data: Amax.input_t):
168170
169171@common .parametrize ("test_data" , Max .test_data )
170172@common .SkipIfNoModelConverter
173+ @pytest .mark .xfail (reason = "MLETORCH-1410: Tensor dimension count not supported: 0" )
171174def test_max_dim_vgf_FP_to_amax (test_data : Max .input_t ):
172175 data , dim = test_data ()
173176 pipeline = VgfPipeline [Max .input_t ](
@@ -181,6 +184,7 @@ def test_max_dim_vgf_FP_to_amax(test_data: Max.input_t):
181184
182185@common .parametrize ("test_data" , Max .test_data )
183186@common .SkipIfNoModelConverter
187+ @pytest .mark .xfail (reason = "MLETORCH-1410: Tensor dimension count not supported: 0" )
184188def test_max_dim_vgf_INT_to_amax (test_data : Max .input_t ):
185189 data , dim = test_data ()
186190 pipeline = VgfPipeline [Max .input_t ](
0 commit comments