diff --git a/dpctl/tests/elementwise/test_exp.py b/dpctl/tests/elementwise/test_exp.py index 4886c0cb78..96314ad46c 100644 --- a/dpctl/tests/elementwise/test_exp.py +++ b/dpctl/tests/elementwise/test_exp.py @@ -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() diff --git a/dpctl/tests/elementwise/test_hyperbolic.py b/dpctl/tests/elementwise/test_hyperbolic.py index 0186f4c443..d61b778114 100644 --- a/dpctl/tests/elementwise/test_hyperbolic.py +++ b/dpctl/tests/elementwise/test_hyperbolic.py @@ -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): diff --git a/dpctl/tests/elementwise/test_sqrt.py b/dpctl/tests/elementwise/test_sqrt.py index 862f64ccbd..7e705f0721 100644 --- a/dpctl/tests/elementwise/test_sqrt.py +++ b/dpctl/tests/elementwise/test_sqrt.py @@ -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() diff --git a/dpctl/tests/elementwise/test_trigonometric.py b/dpctl/tests/elementwise/test_trigonometric.py index 74121311fb..aa276f20f8 100644 --- a/dpctl/tests/elementwise/test_trigonometric.py +++ b/dpctl/tests/elementwise/test_trigonometric.py @@ -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):