We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ced8bf commit c3289efCopy full SHA for c3289ef
dpnp/tests/test_product.py
@@ -199,7 +199,7 @@ def test_ones(self, dtype):
199
@pytest.mark.parametrize("dtype", get_all_dtypes(no_bool=True))
200
def test_arange(self, dtype):
201
n = 10**2
202
- 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
203
a = numpy.hstack((numpy.arange(n, dtype=dtype),) * m)
204
b = numpy.flipud(a)
205
ia = dpnp.array(a)
0 commit comments