-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathneighborhood_search.jl
244 lines (211 loc) · 12.9 KB
/
neighborhood_search.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
# This file contains tests for the generic functions in `src/neighborhood_search.jl` and
# tests comparing all NHS implementations against the `TrivialNeighborhoodSearch`.
@testset verbose=true "All Neighborhood Searches" begin
@testset verbose=true "Periodicity" begin
# These examples are constructed by hand and are therefore a good test for the
# trivial neighborhood search as well.
# (As opposed to the tests below that are just comparing against the trivial NHS.)
# Names, coordinates and corresponding periodic boxes for each test
names = [
"Simple Example 2D",
"Box Not Multiple of Search Radius 2D",
"Simple Example 3D"
]
coordinates = [
[-0.08 0.0 0.18 0.1 -0.08
-0.12 -0.05 -0.09 0.15 0.39],
[-0.08 0.0 0.18 0.1 -0.08
-0.12 -0.05 -0.09 0.15 0.42],
[-0.08 0.0 0.18 0.1 -0.08
-0.12 -0.05 -0.09 0.15 0.39
0.14 0.34 0.12 0.06 0.13]
]
periodic_boxes = [
PeriodicBox(min_corner = [-0.1, -0.2], max_corner = [0.2, 0.4]),
# The `GridNeighborhoodSearch` is forced to round up the cell sizes in this test
# to avoid split cells.
PeriodicBox(min_corner = [-0.1, -0.2], max_corner = [0.205, 0.43]),
PeriodicBox(min_corner = [-0.1, -0.2, 0.05], max_corner = [0.2, 0.4, 0.35])
]
@testset verbose=true "$(names[i])" for i in eachindex(names)
coords = coordinates[i]
NDIMS = size(coords, 1)
n_points = size(coords, 2)
search_radius = 0.1
min_corner = periodic_boxes[i].min_corner
max_corner = max_corner = periodic_boxes[i].max_corner
neighborhood_searches = [
TrivialNeighborhoodSearch{NDIMS}(; search_radius, eachpoint = 1:n_points,
periodic_box = periodic_boxes[i]),
GridNeighborhoodSearch{NDIMS}(; search_radius, n_points,
periodic_box = periodic_boxes[i]),
GridNeighborhoodSearch{NDIMS}(; search_radius, n_points,
periodic_box = periodic_boxes[i],
cell_list = FullGridCellList(; min_corner,
max_corner,
search_radius)),
GridNeighborhoodSearch{NDIMS}(; search_radius, n_points,
periodic_box = periodic_boxes[i],
cell_list = FullGridCellList(; min_corner,
max_corner,
search_radius,
backend = Vector{Vector{Int32}})),
PrecomputedNeighborhoodSearch{NDIMS}(; search_radius, n_points,
periodic_box = periodic_boxes[i])
]
names = [
"`TrivialNeighborhoodSearch`",
"`GridNeighborhoodSearch`",
"`GridNeighborhoodSearch` with `FullGridCellList` with `DynamicVectorOfVectors`",
"`GridNeighborhoodSearch` with `FullGridCellList` with `Vector{Vector}`",
"`PrecomputedNeighborhoodSearch`"
]
# Also test copied templates
template_nhs = [
TrivialNeighborhoodSearch{NDIMS}(periodic_box = periodic_boxes[i]),
GridNeighborhoodSearch{NDIMS}(periodic_box = periodic_boxes[i]),
GridNeighborhoodSearch{NDIMS}(periodic_box = periodic_boxes[i],
cell_list = FullGridCellList(min_corner = periodic_boxes[i].min_corner,
max_corner = periodic_boxes[i].max_corner)),
GridNeighborhoodSearch{NDIMS}(periodic_box = periodic_boxes[i],
cell_list = FullGridCellList(min_corner = periodic_boxes[i].min_corner,
max_corner = periodic_boxes[i].max_corner,
backend = Vector{Vector{Int32}})),
PrecomputedNeighborhoodSearch{NDIMS}(periodic_box = periodic_boxes[i])
]
copied_nhs = copy_neighborhood_search.(template_nhs, search_radius, n_points)
append!(neighborhood_searches, copied_nhs)
names_copied = [name * " copied" for name in names]
append!(names, names_copied)
# Run this for every neighborhood search
@testset "$(names[j])" for j in eachindex(names)
nhs = neighborhood_searches[j]
@test PointNeighbors.search_radius(nhs) == search_radius
initialize!(nhs, coords, coords)
neighbors = [Int[] for _ in axes(coords, 2)]
foreach_point_neighbor(coords, coords, nhs,
points = axes(coords, 2)) do point, neighbor,
pos_diff, distance
append!(neighbors[point], neighbor)
end
# All of these tests are designed to yield the same neighbor lists.
# Note that we have to sort the neighbor lists because neighborhood searches
# might produce different orders.
@test sort(neighbors[1]) == [1, 3, 5]
@test sort(neighbors[2]) == [2]
@test sort(neighbors[3]) == [1, 3]
@test sort(neighbors[4]) == [4]
@test sort(neighbors[5]) == [1, 5]
end
end
end
@testset verbose=true "Compare Against `TrivialNeighborhoodSearch`" begin
cloud_sizes = [
(10, 11),
(100, 90),
(9, 10, 7),
(39, 40, 41)
]
seeds = [1, 2]
name(size, seed) = "$(length(size))D with $(prod(size)) Particles " *
"($(seed == 1 ? "`initialize!`" : "`update!`"))"
@testset verbose=true "$(name(cloud_size, seed)))" for cloud_size in cloud_sizes,
seed in seeds
coords = point_cloud(cloud_size, seed = seed)
NDIMS = length(cloud_size)
n_points = size(coords, 2)
search_radius = 2.5
# Use different coordinates for `initialize!` and then `update!` with the
# correct coordinates to make sure that `update!` is working as well.
coords_initialize = point_cloud(cloud_size, seed = 1)
# Compute expected neighbor lists by brute-force looping over all points
# as potential neighbors (`TrivialNeighborhoodSearch`).
trivial_nhs = TrivialNeighborhoodSearch{NDIMS}(; search_radius,
eachpoint = axes(coords, 2))
neighbors_expected = [Int[] for _ in axes(coords, 2)]
foreach_point_neighbor(coords, coords, trivial_nhs,
parallel = false) do point, neighbor,
pos_diff, distance
append!(neighbors_expected[point], neighbor)
end
# Expand the domain by `search_radius`, as we need the neighboring cells of
# the minimum and maximum coordinates as well.
min_corner = minimum(coords, dims = 2) .- search_radius
max_corner = maximum(coords, dims = 2) .+ search_radius
neighborhood_searches = [
GridNeighborhoodSearch{NDIMS}(; search_radius, n_points,
update_strategy = SemiParallelUpdate()),
GridNeighborhoodSearch{NDIMS}(; search_radius, n_points,
update_strategy = SerialUpdate()),
GridNeighborhoodSearch{NDIMS}(; search_radius, n_points,
cell_list = FullGridCellList(; min_corner,
max_corner,
search_radius),
update_strategy = ParallelUpdate()),
GridNeighborhoodSearch{NDIMS}(; search_radius, n_points,
cell_list = FullGridCellList(; min_corner,
max_corner,
search_radius),
update_strategy = SemiParallelUpdate()),
GridNeighborhoodSearch{NDIMS}(; search_radius, n_points,
cell_list = FullGridCellList(; min_corner,
max_corner,
search_radius,
backend = Vector{Vector{Int}})),
PrecomputedNeighborhoodSearch{NDIMS}(; search_radius, n_points),
CellListMapNeighborhoodSearch(NDIMS; search_radius),
CellListMapNeighborhoodSearch(NDIMS; search_radius,
points_equal_neighbors = true)
]
names = [
"`GridNeighborhoodSearch` with `SemiParallelUpdate`",
"`GridNeighborhoodSearch` with `SerialUpdate`",
"`GridNeighborhoodSearch` with `FullGridCellList` with `DynamicVectorOfVectors` and `ParallelUpdate`",
"`GridNeighborhoodSearch` with `FullGridCellList` with `DynamicVectorOfVectors` and `SemiParallelUpdate`",
"`GridNeighborhoodSearch` with `FullGridCellList` with `Vector{Vector}`",
"`PrecomputedNeighborhoodSearch`",
"`CellListMapNeighborhoodSearch`",
"`CellListMapNeighborhoodSearch` with `points_equal_neighbors = true`"
]
# Also test copied templates
template_nhs = [
GridNeighborhoodSearch{NDIMS}(),
GridNeighborhoodSearch{NDIMS}(update_strategy = SerialUpdate()),
GridNeighborhoodSearch{NDIMS}(cell_list = FullGridCellList(; min_corner,
max_corner)),
GridNeighborhoodSearch{NDIMS}(cell_list = FullGridCellList(; min_corner,
max_corner),
update_strategy = SemiParallelUpdate()),
GridNeighborhoodSearch{NDIMS}(cell_list = FullGridCellList(; min_corner,
max_corner,
backend = Vector{Vector{Int32}})),
PrecomputedNeighborhoodSearch{NDIMS}(),
CellListMapNeighborhoodSearch(NDIMS),
CellListMapNeighborhoodSearch(NDIMS, points_equal_neighbors = true)
]
copied_nhs = copy_neighborhood_search.(template_nhs, search_radius, n_points)
append!(neighborhood_searches, copied_nhs)
names_copied = [name * " copied" for name in names]
append!(names, names_copied)
@testset "$(names[i])" for i in eachindex(names)
nhs = neighborhood_searches[i]
@test PointNeighbors.search_radius(nhs) == search_radius
# Initialize with `seed = 1`
initialize!(nhs, coords_initialize, coords_initialize)
# For other seeds, update with the correct coordinates.
# This way, we test only `initialize!` when `seed == 1`,
# and `initialize!` plus `update!` else.
if seed != 1
update!(nhs, coords, coords)
end
neighbors = [Int[] for _ in axes(coords, 2)]
foreach_point_neighbor(coords, coords, nhs,
parallel = false) do point, neighbor,
pos_diff, distance
append!(neighbors[point], neighbor)
end
@test sort.(neighbors) == neighbors_expected
end
end
end
end;