Skip to content

Commit da87749

Browse files
committed
Fixed typo
1 parent 8fe16ec commit da87749

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1524,7 +1524,7 @@ def test_gpu_searchsorted():
15241524
device_bfs = cuda.to_device(core._bfs_indices(k, fill_value=-1))
15251525
nlevel = np.floor(np.log2(k) + 1).astype(np.int64)
15261526

1527-
A = np.sort(pytest.RNG.random(n, k), axis=1)
1527+
A = np.sort(pytest.RNG.random(size=(n, k)), axis=1)
15281528
device_A = cuda.to_device(A)
15291529

15301530
V[:] = pytest.RNG.random(n)

0 commit comments

Comments
 (0)