Skip to content

Commit

Permalink
Remove marks broken_complex from all tests
Browse files Browse the repository at this point in the history
After transition to oneapi::experimental namespace functions
for complex types in gh-1411, all tests pass.
  • Loading branch information
oleksandr-pavlyk committed Dec 9, 2023
1 parent a4369ac commit afd60d1
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion dpctl/tests/elementwise/test_exp.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,6 @@ def test_exp_complex_strided(dtype):
)


@pytest.mark.broken_complex
@pytest.mark.parametrize("dtype", ["c8", "c16"])
def test_exp_complex_special_cases(dtype):
q = get_queue_or_skip()
Expand Down
1 change: 0 additions & 1 deletion dpctl/tests/elementwise/test_hyperbolic.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,6 @@ def test_hyper_real_special_cases(np_call, dpt_call, dtype):
assert_allclose(dpt.asnumpy(dpt_call(yf)), Y_np, atol=tol, rtol=tol)


@pytest.mark.broken_complex
@pytest.mark.parametrize("np_call, dpt_call", _all_funcs)
@pytest.mark.parametrize("dtype", ["c8", "c16"])
def test_hyper_complex_special_cases(np_call, dpt_call, dtype):
Expand Down
1 change: 0 additions & 1 deletion dpctl/tests/elementwise/test_sqrt.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,6 @@ def test_sqrt_real_fp_special_values(dtype):
assert dpt.allclose(r, expected, atol=tol, rtol=tol, equal_nan=True)


@pytest.mark.broken_complex
@pytest.mark.parametrize("dtype", _complex_fp_dtypes)
def test_sqrt_complex_fp_special_values(dtype):
q = get_queue_or_skip()
Expand Down
1 change: 0 additions & 1 deletion dpctl/tests/elementwise/test_trigonometric.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,6 @@ def test_trig_real_special_cases(np_call, dpt_call, dtype):
assert_allclose(dpt.asnumpy(dpt_call(yf)), Y_np, atol=tol, rtol=tol)


@pytest.mark.broken_complex
@pytest.mark.parametrize("np_call, dpt_call", _all_funcs)
@pytest.mark.parametrize("dtype", ["c8", "c16"])
def test_trig_complex_special_cases(np_call, dpt_call, dtype):
Expand Down

0 comments on commit afd60d1

Please sign in to comment.