-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathplot.jl
101 lines (83 loc) · 4.08 KB
/
plot.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
using Plots
using BenchmarkTools
import CellListMap
# Generate a rectangular point cloud
include("../test/point_cloud.jl")
"""
plot_benchmarks(benchmark, n_points_per_dimension, iterations;
seed = 1, perturbation_factor_position = 1.0,
parallel = true, title = "")
Run a benchmark with several neighborhood searches multiple times for increasing numbers
of points and plot the results.
# Arguments
- `benchmark`: The benchmark function. See [`benchmark_count_neighbors`](@ref)
and [`benchmark_n_body`](@ref).
- `n_points_per_dimension`: Initial resolution as tuple. The product is the initial number
of points. For example, use `(100, 100)` for a 2D benchmark or
`(10, 10, 10)` for a 3D benchmark.
- `iterations`: Number of refinement iterations
# Keywords
- `parallel = true`: Loop over all points in parallel
- `title = ""`: Title of the plot
- `seed = 1`: Seed to perturb the point positions. Different seeds yield
slightly different point positions.
- `perturbation_factor_position = 1.0`: Perturb point positions by this factor. A factor of
`1.0` corresponds to points being moved by
a maximum distance of `0.5` along each axis.
# Examples
```julia
include("benchmarks/benchmarks.jl")
plot_benchmarks(benchmark_count_neighbors, (10, 10), 3)
"""
function plot_benchmarks(benchmark, n_points_per_dimension, iterations;
parallel = true, title = "",
seed = 1, perturbation_factor_position = 1.0)
neighborhood_searches_names = [
"TrivialNeighborhoodSearch",
"GridNeighborhoodSearch",
"PrecomputedNeighborhoodSearch"]
if length(n_points_per_dimension) > 1
# Not implemented for 1D
push!(neighborhood_searches_names, "CellListMapNeighborhoodSearch")
end
# Multiply number of points in each iteration (roughly) by this factor
scaling_factor = 4
per_dimension_factor = scaling_factor^(1 / length(n_points_per_dimension))
sizes = [round.(Int, n_points_per_dimension .* per_dimension_factor^(iter - 1))
for iter in 1:iterations]
n_particles_vec = prod.(sizes)
times = zeros(iterations, length(neighborhood_searches_names))
for iter in 1:iterations
coordinates = point_cloud(sizes[iter], seed = seed,
perturbation_factor_position = perturbation_factor_position)
search_radius = 3.0
NDIMS = size(coordinates, 1)
n_particles = size(coordinates, 2)
neighborhood_searches = [
TrivialNeighborhoodSearch{NDIMS}(; search_radius, eachpoint = 1:n_particles),
GridNeighborhoodSearch{NDIMS}(; search_radius, n_points = n_particles),
PrecomputedNeighborhoodSearch{NDIMS}(; search_radius, n_points = n_particles)
]
if NDIMS > 1
# Not implemented for 1D
push!(neighborhood_searches,
CellListMapNeighborhoodSearch(NDIMS; search_radius))
end
for i in eachindex(neighborhood_searches)
neighborhood_search = neighborhood_searches[i]
initialize!(neighborhood_search, coordinates, coordinates)
time = benchmark(neighborhood_search, coordinates, parallel = parallel)
times[iter, i] = time
time_string = BenchmarkTools.prettytime(time * 1e9)
println("$(neighborhood_searches_names[i])")
println("with $(join(sizes[iter], "x")) = $(prod(sizes[iter])) particles finished in $time_string\n")
end
end
labels = reshape(neighborhood_searches_names, (1, length(neighborhood_searches_names)))
plot(n_particles_vec, times,
xaxis = :log, yaxis = :log,
xticks = (n_particles_vec, n_particles_vec),
xlabel = "#particles", ylabel = "Runtime [s]",
legend = :outerright, size = (750, 400), dpi = 200,
label = labels, title = title)
end