Skip to content

Commit fb95d67

Browse files
Test trig out overlap for complex data types on Windows
1 parent d58d58f commit fb95d67

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

dpctl/tests/elementwise/test_trigonometric.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,9 @@ def test_trig_out_overlap(np_call, dpt_call, dtype):
299299
q = get_queue_or_skip()
300300
skip_if_dtype_not_supported(dtype, q)
301301

302+
if os.name == "nt" and dpt.isdtype(dpt.dtype(dtype), "complex floating"):
303+
pytest.skip("Know problems on Windows")
304+
302305
if np_call == np.tan:
303306
X = dpt.linspace(-np.pi / 2, np.pi / 2, 64, dtype=dtype, sycl_queue=q)[
304307
2:-2

0 commit comments

Comments
 (0)