-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathdynamic_map.inl
More file actions
276 lines (253 loc) · 9.56 KB
/
Copy pathdynamic_map.inl
File metadata and controls
276 lines (253 loc) · 9.56 KB
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
/*
* Copyright (c) 2024, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <cuco/detail/bitwise_compare.cuh>
#include <cuco/detail/static_map/kernels.cuh>
#include <cuco/detail/utility/cuda.hpp>
#include <cuco/detail/utils.hpp>
#include <cuco/operator.hpp>
#include <cuco/static_map_ref.cuh>
#include <cuda/stream_ref>
#include <algorithm>
#include <cstddef>
#include <iostream>
namespace cuco {
namespace experimental {
template <typename Key,
typename T,
typename Extent,
cuda::thread_scope Scope,
typename KeyEqual,
typename ProbingScheme,
typename Allocator,
typename Storage>
constexpr dynamic_map<Key, T, Extent, Scope, KeyEqual, ProbingScheme, Allocator, Storage>::
dynamic_map(Extent initial_capacity,
empty_key<Key> empty_key_sentinel,
empty_value<T> empty_value_sentinel,
KeyEqual const& pred,
ProbingScheme const& probing_scheme,
cuda_thread_scope<Scope> scope,
Storage storage,
Allocator const& alloc,
cuda::stream_ref stream)
: size_{0},
capacity_{initial_capacity},
min_insert_size_{static_cast<size_type>(1E4)},
max_load_factor_{0.60},
alloc_{alloc}
{
submaps_.push_back(
std::make_unique<
cuco::static_map<Key, T, Extent, Scope, KeyEqual, ProbingScheme, Allocator, Storage>>(
initial_capacity,
empty_key_sentinel,
empty_value_sentinel,
pred,
probing_scheme,
scope,
storage,
alloc,
stream));
}
template <typename Key,
typename T,
typename Extent,
cuda::thread_scope Scope,
typename KeyEqual,
typename ProbingScheme,
typename Allocator,
typename Storage>
constexpr dynamic_map<Key, T, Extent, Scope, KeyEqual, ProbingScheme, Allocator, Storage>::
dynamic_map(Extent initial_capacity,
empty_key<Key> empty_key_sentinel,
empty_value<T> empty_value_sentinel,
erased_key<Key> erased_key_sentinel,
KeyEqual const& pred,
ProbingScheme const& probing_scheme,
cuda_thread_scope<Scope> scope,
Storage storage,
Allocator const& alloc,
cuda::stream_ref stream)
: size_{0},
capacity_{initial_capacity},
min_insert_size_{static_cast<size_type>(1E4)},
max_load_factor_{0.60},
alloc_{alloc}
{
submaps_.push_back(
std::make_unique<
cuco::static_map<Key, T, Extent, Scope, KeyEqual, ProbingScheme, Allocator, Storage>>(
initial_capacity,
empty_key_sentinel,
empty_value_sentinel,
erased_key_sentinel,
pred,
probing_scheme,
scope,
storage,
alloc,
stream));
}
template <typename Key,
typename T,
typename Extent,
cuda::thread_scope Scope,
typename KeyEqual,
typename ProbingScheme,
typename Allocator,
typename Storage>
template <typename InputIt>
void dynamic_map<Key, T, Extent, Scope, KeyEqual, ProbingScheme, Allocator, Storage>::insert(
InputIt first, InputIt last, cuda::stream_ref stream)
{
auto num_to_insert = cuco::detail::distance(first, last);
this->reserve(size_ + num_to_insert, stream);
uint32_t submap_idx = 0;
while (num_to_insert > 0 && submap_idx < submaps_.size()) {
auto& cur = submaps_[submap_idx];
auto capacity_remaining = max_load_factor_ * cur->capacity() - cur->size();
// If we are tying to insert some of the remaining keys into this submap, we can insert
// only if we meet the minimum insert size.
if (capacity_remaining >= min_insert_size_) {
auto const n = std::min(static_cast<detail::index_type>(capacity_remaining), num_to_insert);
std::size_t h_num_successes = cur->insert(first, first + n, stream);
size_ += h_num_successes;
first += n;
num_to_insert -= n;
}
submap_idx++;
}
}
template <typename Key,
typename T,
typename Extent,
cuda::thread_scope Scope,
typename KeyEqual,
typename ProbingScheme,
typename Allocator,
typename Storage>
void dynamic_map<Key, T, Extent, Scope, KeyEqual, ProbingScheme, Allocator, Storage>::reserve(
size_type n, cuda::stream_ref stream)
{
size_type num_elements_remaining = n;
uint32_t submap_idx = 0;
while (num_elements_remaining > 0) {
std::size_t submap_capacity;
// if the submap already exists
if (submap_idx < submaps_.size()) {
submap_capacity = submaps_[submap_idx]->capacity();
}
// if the submap does not exist yet, create it
else {
empty_key<Key> empty_key_sentinel{submaps_.front()->empty_key_sentinel()};
empty_value<T> empty_value_sentinel{submaps_.front()->empty_value_sentinel()};
erased_key<Key> erased_key_sentinel{submaps_.front()->erased_key_sentinel()};
if (erased_key_sentinel != empty_key_sentinel) {
submaps_.push_back(std::make_unique<map_type>(submap_capacity,
empty_key_sentinel,
empty_value_sentinel,
erased_key_sentinel,
KeyEqual{},
ProbingScheme{},
cuda_thread_scope<Scope>{},
Storage{},
alloc_,
stream));
} else {
submaps_.push_back(std::make_unique<map_type>(submap_capacity,
empty_key_sentinel,
empty_value_sentinel,
KeyEqual{},
ProbingScheme{},
cuda_thread_scope<Scope>{},
Storage{},
alloc_,
stream));
}
submap_capacity = capacity_;
capacity_ *= 2;
}
// for clamp to work
std::ptrdiff_t remaining =
static_cast<std::ptrdiff_t>(num_elements_remaining) -
static_cast<std::ptrdiff_t>(max_load_factor_ * submap_capacity - min_insert_size_);
// size_type is unsigned long. can underflow so clamp it
num_elements_remaining =
static_cast<size_type>(std::clamp(remaining,
static_cast<std::ptrdiff_t>(0),
static_cast<std::ptrdiff_t>(num_elements_remaining)));
submap_idx++;
}
}
template <typename Key,
typename T,
typename Extent,
cuda::thread_scope Scope,
typename KeyEqual,
typename ProbingScheme,
typename Allocator,
typename Storage>
template <typename InputIt, typename OutputIt>
void dynamic_map<Key, T, Extent, Scope, KeyEqual, ProbingScheme, Allocator, Storage>::contains(
InputIt first, InputIt last, OutputIt output_begin, cuda::stream_ref stream) const
{
auto num_keys = cuco::detail::distance(first, last);
std::size_t traversed = 0;
uint32_t submap_idx = 0;
while (num_keys > 0 && submap_idx < submaps_.size()) {
const auto& cur = submaps_[submap_idx];
const size_t cur_size = cur->size();
const size_t num_keys_to_process =
std::min(static_cast<detail::index_type>(cur_size), num_keys);
CUCO_CUDA_TRY(cudaStreamSynchronize(stream.get()));
cur->contains(first, first + num_keys_to_process, output_begin + traversed, stream);
traversed += num_keys_to_process;
num_keys -= num_keys_to_process;
submap_idx++;
first += num_keys_to_process;
}
}
template <typename Key,
typename T,
typename Extent,
cuda::thread_scope Scope,
typename KeyEqual,
typename ProbingScheme,
typename Allocator,
typename Storage>
template <typename InputIt>
void dynamic_map<Key, T, Extent, Scope, KeyEqual, ProbingScheme, Allocator, Storage>::erase(
InputIt first, InputIt last, cuda::stream_ref stream)
{
auto num_keys = cuco::detail::distance(first, last);
std::size_t traversed = 0;
uint32_t submap_idx = 0;
while (num_keys > 0 && submap_idx < submaps_.size()) {
const auto& cur = submaps_[submap_idx];
const size_t cur_size = cur->size();
const size_t num_keys_to_process =
std::min(static_cast<detail::index_type>(cur_size), num_keys);
CUCO_CUDA_TRY(cudaStreamSynchronize(stream.get()));
cur->erase(first, first + num_keys_to_process, stream);
traversed += num_keys_to_process;
num_keys -= num_keys_to_process;
submap_idx++;
first += num_keys_to_process;
size_ -= num_keys_to_process;
}
}
} // namespace experimental
} // namespace cuco