Skip to content

Commit 6153ff1

Browse files
Removed logic to skip usm_host testin on Windows
Previously identified hang was due to bad driver.
1 parent f9b406b commit 6153ff1

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

dpctl/tests/test_sycl_usm.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -205,11 +205,6 @@ def test_create_with_only_size(self):
205205
dpctl.has_sycl_platforms(), "No SYCL Devices except the default host device."
206206
)
207207
def test_sycl_usm_array_interface(self):
208-
import sys
209-
210-
if self.MemoryUSMClass is MemoryUSMHost and sys.platform in ["win32", "cygwin"]:
211-
# MemoryUSMHost.copy_to_host() hangs on Windows. TODO: investigate
212-
raise unittest.SkipTest
213208
m = self.MemoryUSMClass(256)
214209
m2 = Dummy(m.nbytes)
215210
hb = np.random.randint(0, 256, size=256, dtype="|u1")

0 commit comments

Comments
 (0)