We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fe16ec commit da87749Copy full SHA for da87749
tests/test_core.py
@@ -1524,7 +1524,7 @@ def test_gpu_searchsorted():
1524
device_bfs = cuda.to_device(core._bfs_indices(k, fill_value=-1))
1525
nlevel = np.floor(np.log2(k) + 1).astype(np.int64)
1526
1527
- A = np.sort(pytest.RNG.random(n, k), axis=1)
+ A = np.sort(pytest.RNG.random(size=(n, k)), axis=1)
1528
device_A = cuda.to_device(A)
1529
1530
V[:] = pytest.RNG.random(n)
0 commit comments