@@ -40,3 +40,99 @@ fn bench_nearest_from_kdtree_with_1k_3d_points(b: &mut Bencher) {
40
40
}
41
41
b. iter ( || kdtree. nearest ( & point. 0 , 8 , & squared_euclidean) . unwrap ( ) ) ;
42
42
}
43
+
44
+ #[ bench]
45
+ fn bench_within_2k_data_01_radius ( b : & mut Bencher ) {
46
+ let len = 2000usize ;
47
+ let point = rand_data ( ) ;
48
+ let mut points = vec ! [ ] ;
49
+ let mut kdtree = KdTree :: with_capacity ( 3 , 16 ) ;
50
+ for _ in 0 ..len {
51
+ points. push ( rand_data ( ) ) ;
52
+ }
53
+ for i in 0 ..points. len ( ) {
54
+ kdtree. add ( & points[ i] . 0 , points[ i] . 1 ) . unwrap ( ) ;
55
+ }
56
+
57
+ b. iter ( || kdtree. within ( & point. 0 , 0.1 , & squared_euclidean) . unwrap ( ) ) ;
58
+ }
59
+
60
+ #[ bench]
61
+ fn bench_within_2k_data_02_radius ( b : & mut Bencher ) {
62
+ let len = 2000usize ;
63
+ let point = rand_data ( ) ;
64
+ let mut points = vec ! [ ] ;
65
+ let mut kdtree = KdTree :: with_capacity ( 3 , 16 ) ;
66
+ for _ in 0 ..len {
67
+ points. push ( rand_data ( ) ) ;
68
+ }
69
+ for i in 0 ..points. len ( ) {
70
+ kdtree. add ( & points[ i] . 0 , points[ i] . 1 ) . unwrap ( ) ;
71
+ }
72
+
73
+ b. iter ( || kdtree. within ( & point. 0 , 0.2 , & squared_euclidean) . unwrap ( ) ) ;
74
+ }
75
+
76
+ #[ bench]
77
+ fn bench_within_unsorted_2k_data_01_radius ( b : & mut Bencher ) {
78
+ let len = 2000usize ;
79
+ let point = rand_data ( ) ;
80
+ let mut points = vec ! [ ] ;
81
+ let mut kdtree = KdTree :: with_capacity ( 3 , 16 ) ;
82
+ for _ in 0 ..len {
83
+ points. push ( rand_data ( ) ) ;
84
+ }
85
+ for i in 0 ..points. len ( ) {
86
+ kdtree. add ( & points[ i] . 0 , points[ i] . 1 ) . unwrap ( ) ;
87
+ }
88
+
89
+ b. iter ( || kdtree. within_unsorted ( & point. 0 , 0.1 , & squared_euclidean) . unwrap ( ) ) ;
90
+ }
91
+
92
+ #[ bench]
93
+ fn bench_within_unsorted_2k_data_02_radius ( b : & mut Bencher ) {
94
+ let len = 2000usize ;
95
+ let point = rand_data ( ) ;
96
+ let mut points = vec ! [ ] ;
97
+ let mut kdtree = KdTree :: with_capacity ( 3 , 16 ) ;
98
+ for _ in 0 ..len {
99
+ points. push ( rand_data ( ) ) ;
100
+ }
101
+ for i in 0 ..points. len ( ) {
102
+ kdtree. add ( & points[ i] . 0 , points[ i] . 1 ) . unwrap ( ) ;
103
+ }
104
+
105
+ b. iter ( || kdtree. within_unsorted ( & point. 0 , 0.2 , & squared_euclidean) . unwrap ( ) ) ;
106
+ }
107
+
108
+ #[ bench]
109
+ fn bench_within_count_2k_data_01_radius ( b : & mut Bencher ) {
110
+ let len = 2000usize ;
111
+ let point = rand_data ( ) ;
112
+ let mut points = vec ! [ ] ;
113
+ let mut kdtree = KdTree :: with_capacity ( 3 , 16 ) ;
114
+ for _ in 0 ..len {
115
+ points. push ( rand_data ( ) ) ;
116
+ }
117
+ for i in 0 ..points. len ( ) {
118
+ kdtree. add ( & points[ i] . 0 , points[ i] . 1 ) . unwrap ( ) ;
119
+ }
120
+
121
+ b. iter ( || kdtree. within_count ( & point. 0 , 0.1 , & squared_euclidean) . unwrap ( ) ) ;
122
+ }
123
+
124
+ #[ bench]
125
+ fn bench_within_count_2k_data_02_radius ( b : & mut Bencher ) {
126
+ let len = 2000usize ;
127
+ let point = rand_data ( ) ;
128
+ let mut points = vec ! [ ] ;
129
+ let mut kdtree = KdTree :: with_capacity ( 3 , 16 ) ;
130
+ for _ in 0 ..len {
131
+ points. push ( rand_data ( ) ) ;
132
+ }
133
+ for i in 0 ..points. len ( ) {
134
+ kdtree. add ( & points[ i] . 0 , points[ i] . 1 ) . unwrap ( ) ;
135
+ }
136
+
137
+ b. iter ( || kdtree. within_count ( & point. 0 , 0.2 , & squared_euclidean) . unwrap ( ) ) ;
138
+ }
0 commit comments