File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,8 @@ def _assert_shape(a, b):
25
25
# numpy output is scalar, then dpnp is 0-D array
26
26
assert a .shape == (), f"{ a .shape } != ()"
27
27
28
- def _get_dev_mask (device = None ):
28
+
29
+ def _get_dev_mask (device = None ):
29
30
dev = dpctl .select_default_device () if device is None else device
30
31
dev_info = dpctl .utils .intel_device_info (dev )
31
32
return dev_info .get ("device_id" , 0 ) & 0xFF00
Original file line number Diff line number Diff line change @@ -917,7 +917,11 @@ def test_geomspace_num0():
917
917
@pytest .mark .parametrize ("endpoint" , [True , False ])
918
918
def test_logspace (dtype , num , endpoint ):
919
919
if not is_win_platform () and is_iris_xe () and is_lts_driver ():
920
- if dpnp .issubdtype (dtype , dpnp .integer ) and num in [8 , 27 ] and endpoint is True :
920
+ if (
921
+ dpnp .issubdtype (dtype , dpnp .integer )
922
+ and num in [8 , 27 ]
923
+ and endpoint is True
924
+ ):
921
925
pytest .skip ("SAT-7978" )
922
926
923
927
start = 2
You can’t perform that action at this time.
0 commit comments