We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7d6356 commit a7ba748Copy full SHA for a7ba748
dpctl/tests/test_sycl_usm.py
@@ -206,8 +206,8 @@ def test_create_with_only_size(self):
206
)
207
def test_sycl_usm_array_interface(self):
208
import sys
209
- if (self.MemoryUSMClass is MemoryUSMHost and
210
- sys.platform in ["win32", "cygwin"]):
+
+ 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
213
m = self.MemoryUSMClass(256)
0 commit comments