2020from dpnp .dpnp_utils import map_dtype_to_device
2121
2222from .helper import (
23+ LTS_VERSION ,
2324 assert_dtype_allclose ,
2425 generate_random_numpy_array ,
2526 get_abs_array ,
3334 has_support_aspect16 ,
3435 has_support_aspect64 ,
3536 is_intel_numpy ,
36- is_ptl ,
37+ is_lts_driver ,
3738 numpy_version ,
3839)
3940from .third_party .cupy import testing
@@ -218,7 +219,7 @@ def _get_exp_array(self, a, axis, dtype):
218219 @pytest .mark .parametrize ("axis" , [None , 2 , - 1 ])
219220 @pytest .mark .parametrize ("include_initial" , [True , False ])
220221 def test_basic (self , dtype , axis , include_initial ):
221- if axis is None and is_ptl ( ):
222+ if axis is None and not is_lts_driver ( version = LTS_VERSION . V1_6 ):
222223 pytest .skip ("due to SAT-8336" )
223224
224225 a = dpnp .ones ((3 , 4 , 5 , 6 , 7 ), dtype = dtype )
@@ -238,7 +239,7 @@ def test_basic(self, dtype, axis, include_initial):
238239 @pytest .mark .parametrize ("axis" , [None , 2 , - 1 ])
239240 @pytest .mark .parametrize ("include_initial" , [True , False ])
240241 def test_include_initial (self , dtype , axis , include_initial ):
241- if axis is None and is_ptl ( ):
242+ if axis is None and not is_lts_driver ( version = LTS_VERSION . V1_6 ):
242243 pytest .skip ("due to SAT-8336" )
243244
244245 a = dpnp .ones ((3 , 4 , 5 , 6 , 7 ), dtype = dtype )
0 commit comments