Skip to content

Commit 2b45633

Browse files
Remove marks broken_complex from all tests
After transition to oneapi::experimental namespace functions for complex types in gh-1411, all tests pass.
1 parent 07dea79 commit 2b45633

File tree

4 files changed

+0
-4
lines changed

4 files changed

+0
-4
lines changed

Diff for: dpctl/tests/elementwise/test_exp.py

-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,6 @@ def test_exp_complex_strided(dtype):
198198
)
199199

200200

201-
@pytest.mark.broken_complex
202201
@pytest.mark.parametrize("dtype", ["c8", "c16"])
203202
def test_exp_complex_special_cases(dtype):
204203
q = get_queue_or_skip()

Diff for: dpctl/tests/elementwise/test_hyperbolic.py

-1
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,6 @@ def test_hyper_real_special_cases(np_call, dpt_call, dtype):
270270
assert_allclose(dpt.asnumpy(dpt_call(yf)), Y_np, atol=tol, rtol=tol)
271271

272272

273-
@pytest.mark.broken_complex
274273
@pytest.mark.parametrize("np_call, dpt_call", _all_funcs)
275274
@pytest.mark.parametrize("dtype", ["c8", "c16"])
276275
def test_hyper_complex_special_cases(np_call, dpt_call, dtype):

Diff for: dpctl/tests/elementwise/test_sqrt.py

-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,6 @@ def test_sqrt_real_fp_special_values(dtype):
157157
assert dpt.allclose(r, expected, atol=tol, rtol=tol, equal_nan=True)
158158

159159

160-
@pytest.mark.broken_complex
161160
@pytest.mark.parametrize("dtype", _complex_fp_dtypes)
162161
def test_sqrt_complex_fp_special_values(dtype):
163162
q = get_queue_or_skip()

Diff for: dpctl/tests/elementwise/test_trigonometric.py

-1
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,6 @@ def test_trig_real_special_cases(np_call, dpt_call, dtype):
267267
assert_allclose(dpt.asnumpy(dpt_call(yf)), Y_np, atol=tol, rtol=tol)
268268

269269

270-
@pytest.mark.broken_complex
271270
@pytest.mark.parametrize("np_call, dpt_call", _all_funcs)
272271
@pytest.mark.parametrize("dtype", ["c8", "c16"])
273272
def test_trig_complex_special_cases(np_call, dpt_call, dtype):

0 commit comments

Comments
 (0)