Skip to content

Commit

Permalink
Skip failing test cases on Windows for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
Diptorup Deb committed Feb 13, 2024
1 parent f54205e commit a106444
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions numba_dpex/tests/experimental/test_index_space_ids.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,9 @@ def test_no_item():
)


# TODO: https://github.com/IntelPython/numba-dpex/issues/1308
@skip_windows
def test_get_group_id():

global_size = 100
group_size = 20
num_groups = global_size // group_size
Expand All @@ -195,8 +196,9 @@ def test_get_group_id():
assert np.array_equal(ka.asnumpy(), expected)


# TODO: https://github.com/IntelPython/numba-dpex/issues/1308
@skip_windows
def test_get_group_range():

global_size = 100
group_size = 20
num_groups = global_size // group_size
Expand All @@ -216,8 +218,9 @@ def test_get_group_range():
assert np.array_equal(ka.asnumpy(), expected)


# TODO: https://github.com/IntelPython/numba-dpex/issues/1308
@skip_windows
def test_get_group_local_range():

global_size = 100
group_size = 20
num_groups = global_size // group_size
Expand Down

0 comments on commit a106444

Please sign in to comment.