diff --git a/dpnp/tests/test_product.py b/dpnp/tests/test_product.py index 974c7070f3ff..0eccd4deefc1 100644 --- a/dpnp/tests/test_product.py +++ b/dpnp/tests/test_product.py @@ -199,7 +199,7 @@ def test_ones(self, dtype): @pytest.mark.parametrize("dtype", get_all_dtypes(no_bool=True)) def test_arange(self, dtype): n = 10**2 - m = 10**3 if dtype is not dpnp.float32 else 10**2 + m = 10**3 if dtype not in [dpnp.float32, dpnp.complex64] else 10**2 a = numpy.hstack((numpy.arange(n, dtype=dtype),) * m) b = numpy.flipud(a) ia = dpnp.array(a) diff --git a/dpnp/tests/third_party/cupy/linalg_tests/test_einsum.py b/dpnp/tests/third_party/cupy/linalg_tests/test_einsum.py index c992706fbf1e..bb44b791d413 100644 --- a/dpnp/tests/third_party/cupy/linalg_tests/test_einsum.py +++ b/dpnp/tests/third_party/cupy/linalg_tests/test_einsum.py @@ -373,8 +373,6 @@ def test_einsum_unary_views(self, xp, dtype): def test_einsum_unary_dtype(self, xp, dtype_a, dtype_out): if not numpy.can_cast(dtype_a, dtype_out): pytest.skip() - if cupy.issubdtype(dtype_a, cupy.unsignedinteger): - pytest.skip("dpctl-2055") a = testing.shaped_arange(self.shape_a, xp, dtype_a) return xp.einsum(self.subscripts, a, dtype=dtype_out)