Skip to content

Commit f445726

Browse files
committed
increase neighbors
1 parent 314d163 commit f445726

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_radius.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def test_radius_graph_large(dtype, device):
6464
x = torch.randn(1000, 3)
6565

6666
edge_index = radius_graph(x, r=0.5, flow='target_to_source', loop=True,
67-
max_num_neighbors=1000, num_workers=6)
67+
max_num_neighbors=2000, num_workers=6)
6868

6969
tree = scipy.spatial.cKDTree(x.numpy())
7070
col = tree.query_ball_point(x.cpu(), r=0.5)

0 commit comments

Comments
 (0)