From db80940f3c47698073c01e9a9c68429624951218 Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Mon, 19 May 2025 21:50:06 +0200 Subject: [PATCH] Makes tests with floor_divide more stable on PVC --- dpnp/tests/test_binary_ufuncs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dpnp/tests/test_binary_ufuncs.py b/dpnp/tests/test_binary_ufuncs.py index 362aae3a047b..782541ab41f9 100644 --- a/dpnp/tests/test_binary_ufuncs.py +++ b/dpnp/tests/test_binary_ufuncs.py @@ -291,7 +291,7 @@ def do_inplace_op(self, base, other, func): @pytest.mark.parametrize("dtype", ALL_DTYPES) def test_basic(self, func, dtype): a = generate_random_numpy_array(10, dtype) - b = generate_random_numpy_array(10, dtype) + b = generate_random_numpy_array(10, dtype, low=-5, high=5, seed_value=8) expected = getattr(numpy, func)(a, b) ia, ib = dpnp.array(a), dpnp.array(b)