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 f445726 commit aba2c71Copy full SHA for aba2c71
test/test_radius.py
@@ -67,7 +67,7 @@ def test_radius_graph_large(dtype, device):
67
max_num_neighbors=2000, num_workers=6)
68
69
tree = scipy.spatial.cKDTree(x.numpy())
70
- col = tree.query_ball_point(x.cpu(), r=0.5)
+ col = tree.query_ball_point(x.cpu(), r=0.5 + 0.00001)
71
truth = set([(i, j) for i, ns in enumerate(col) for j in ns])
72
73
assert to_set(edge_index) == truth
0 commit comments