1717from dpnp .tensor ._numpy_helper import normalize_axis_index
1818
1919from .helper import (
20- LTS_VERSION ,
2120 assert_dtype_allclose ,
2221 generate_random_numpy_array ,
2322 get_abs_array ,
3130 has_support_aspect16 ,
3231 has_support_aspect64 ,
3332 is_intel_numpy ,
34- is_lts_driver ,
3533 numpy_version ,
3634)
3735from .third_party .cupy import testing
@@ -216,9 +214,6 @@ def _get_exp_array(self, a, axis, dtype):
216214 @pytest .mark .parametrize ("axis" , [None , 2 , - 1 ])
217215 @pytest .mark .parametrize ("include_initial" , [True , False ])
218216 def test_basic (self , dtype , axis , include_initial ):
219- if axis is None and not is_lts_driver (version = LTS_VERSION .V1_6 ):
220- pytest .skip ("due to SAT-8336" )
221-
222217 a = dpnp .ones ((3 , 4 , 5 , 6 , 7 ), dtype = dtype )
223218 res = dpnp .cumlogsumexp (a , axis = axis , include_initial = include_initial )
224219
@@ -236,9 +231,6 @@ def test_basic(self, dtype, axis, include_initial):
236231 @pytest .mark .parametrize ("axis" , [None , 2 , - 1 ])
237232 @pytest .mark .parametrize ("include_initial" , [True , False ])
238233 def test_include_initial (self , dtype , axis , include_initial ):
239- if axis is None and not is_lts_driver (version = LTS_VERSION .V1_6 ):
240- pytest .skip ("due to SAT-8336" )
241-
242234 a = dpnp .ones ((3 , 4 , 5 , 6 , 7 ), dtype = dtype )
243235
244236 if dpnp .issubdtype (a , dpnp .float32 ):
0 commit comments