1313import numba_dpex .experimental as dpex_exp
1414from numba_dpex .kernel_api import Item , NdItem , NdRange
1515from numba_dpex .kernel_api import call_kernel as kapi_call_kernel
16- from numba_dpex .tests ._helper import skip_windows
1716
1817_SIZE = 16
1918_GROUP_SIZE = 4
@@ -99,8 +98,6 @@ def test_item_get_range():
9998 assert np .array_equal (a .asnumpy (), want )
10099
101100
102- # TODO: https://github.com/IntelPython/numba-dpex/issues/1308
103- @skip_windows
104101def test_nd_item_get_global_range ():
105102 a = dpnp .zeros (_SIZE , dtype = dpnp .float32 )
106103 dpex_exp .call_kernel (
@@ -114,8 +111,6 @@ def test_nd_item_get_global_range():
114111 assert np .array_equal (a .asnumpy (), want )
115112
116113
117- # TODO: https://github.com/IntelPython/numba-dpex/issues/1308
118- @skip_windows
119114def test_nd_item_get_local_range ():
120115 a = dpnp .zeros (_SIZE , dtype = dpnp .float32 )
121116 dpex_exp .call_kernel (
@@ -129,8 +124,6 @@ def test_nd_item_get_local_range():
129124 assert np .array_equal (a .asnumpy (), want )
130125
131126
132- # TODO: https://github.com/IntelPython/numba-dpex/issues/1308
133- @skip_windows
134127def test_nd_item_get_global_id ():
135128 a = dpnp .zeros (_SIZE , dtype = dpnp .float32 )
136129 dpex_exp .call_kernel (
@@ -140,8 +133,6 @@ def test_nd_item_get_global_id():
140133 assert np .array_equal (a .asnumpy (), np .ones (a .size , dtype = np .float32 ))
141134
142135
143- # TODO: https://github.com/IntelPython/numba-dpex/issues/1308
144- @skip_windows
145136def test_nd_item_get_local_id ():
146137 a = dpnp .zeros (_SIZE , dtype = dpnp .float32 )
147138
@@ -174,8 +165,6 @@ def test_no_item():
174165 )
175166
176167
177- # TODO: https://github.com/IntelPython/numba-dpex/issues/1308
178- @skip_windows
179168def test_get_group_id ():
180169 global_size = 100
181170 group_size = 20
@@ -196,8 +185,6 @@ def test_get_group_id():
196185 assert np .array_equal (ka .asnumpy (), expected )
197186
198187
199- # TODO: https://github.com/IntelPython/numba-dpex/issues/1308
200- @skip_windows
201188def test_get_group_range ():
202189 global_size = 100
203190 group_size = 20
@@ -218,8 +205,6 @@ def test_get_group_range():
218205 assert np .array_equal (ka .asnumpy (), expected )
219206
220207
221- # TODO: https://github.com/IntelPython/numba-dpex/issues/1308
222- @skip_windows
223208def test_get_group_local_range ():
224209 global_size = 100
225210 group_size = 20
@@ -258,8 +243,6 @@ def set_3d_ones_item(item: Item, a):
258243 a [index ] = 1
259244
260245
261- # TODO: CI tests failing for some reason... Works fine locally on cpu and gpu
262- @pytest .mark .skip
263246def test_index_order ():
264247 a = dpnp .zeros (I_SIZE * J_SIZE * K_SIZE , dtype = dpnp .int32 )
265248
0 commit comments