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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
|
#pragma once
#include <util/system/compiler.h>
#include <util/system/types.h>
#include <util/generic/bitops.h>
#include <util/generic/yexception.h>
#include <vector>
#include <span>
#include <yql/essentials/utils/prefetch.h>
#include <util/digest/city.h>
#include <util/generic/scope.h>
namespace NKikimr {
namespace NMiniKQL {
template <class TKey>
struct TRobinHoodDefaultSettings {
static constexpr bool CacheHash = !std::is_arithmetic<TKey>::value;
};
template <typename TKey>
struct TRobinHoodBatchRequestItem {
// input
alignas(TKey) char KeyStorage[sizeof(TKey)];
const TKey& GetKey() const {
return *reinterpret_cast<const TKey*>(KeyStorage);
}
void ConstructKey(const TKey& key) {
new (KeyStorage) TKey(key);
}
// intermediate data
ui64 Hash;
char* InitialIterator;
};
constexpr ui32 PrefetchBatchSize = 64;
//TODO: only POD key & payloads are now supported
template <typename TKey, typename TEqual, typename THash, typename TAllocator, typename TDeriv, bool CacheHash>
class TRobinHoodHashBase {
public:
using iterator = char*;
using const_iterator = const char*;
protected:
THash HashLocal;
TEqual EqualLocal;
template <bool CacheHashForPSL>
struct TPSLStorageImpl;
template <>
struct TPSLStorageImpl<true> {
i32 Distance = -1;
ui64 Hash = 0;
TPSLStorageImpl() = default;
TPSLStorageImpl(const ui64 hash)
: Distance(0)
, Hash(hash) {
}
};
template <>
struct TPSLStorageImpl<false> {
i32 Distance = -1;
TPSLStorageImpl() = default;
TPSLStorageImpl(const ui64 /*hash*/)
: Distance(0) {
}
};
using TPSLStorage = TPSLStorageImpl<CacheHash>;
explicit TRobinHoodHashBase(const ui64 initialCapacity, THash hash, TEqual equal)
: HashLocal(std::move(hash))
, EqualLocal(std::move(equal))
, Capacity(initialCapacity)
, CapacityShift(64 - MostSignificantBit(initialCapacity))
, Allocator()
, SelfHash(GetSelfHash(this))
{
Y_ENSURE((Capacity & (Capacity - 1)) == 0);
}
~TRobinHoodHashBase() {
if (Data) {
Allocator.deallocate(Data, DataEnd - Data);
}
}
TRobinHoodHashBase(const TRobinHoodHashBase&) = delete;
TRobinHoodHashBase(TRobinHoodHashBase&&) = delete;
void operator=(const TRobinHoodHashBase&) = delete;
void operator=(TRobinHoodHashBase&&) = delete;
public:
// returns iterator
Y_FORCE_INLINE char* Insert(TKey key, bool& isNew) {
auto hash = HashLocal(key);
auto ptr = MakeIterator(hash, Data, CapacityShift);
auto ret = InsertImpl(key, hash, isNew, Data, DataEnd, ptr);
Size += isNew ? 1 : 0;
return ret;
}
// should be called after Insert if isNew is true
Y_FORCE_INLINE void CheckGrow() {
if (Size * 2 >= Capacity) {
Grow();
}
}
template <typename TSink>
Y_NO_INLINE void BatchInsert(std::span<TRobinHoodBatchRequestItem<TKey>> batchRequest, TSink&& sink) {
while (2 * (Size + batchRequest.size()) >= Capacity) {
Grow();
}
for (size_t i = 0; i < batchRequest.size(); ++i) {
auto& r = batchRequest[i];
r.Hash = HashLocal(r.GetKey());
r.InitialIterator = MakeIterator(r.Hash, Data, CapacityShift);
NYql::PrefetchForWrite(r.InitialIterator);
}
for (size_t i = 0; i < batchRequest.size(); ++i) {
auto& r = batchRequest[i];
bool isNew;
auto iter = InsertImpl(r.GetKey(), r.Hash, isNew, Data, DataEnd, r.InitialIterator);
Size += isNew ? 1 : 0;
sink(i, iter, isNew);
}
}
ui64 GetCapacity() const {
return Capacity;
}
void Clear() {
char* ptr = Data;
for (ui64 i = 0; i < Capacity; ++i) {
GetPSL(ptr).Distance = -1;
ptr += AsDeriv().GetCellSize();
}
Size = 0;
}
bool Empty() const {
return !Size;
}
ui64 GetSize() const {
return Size;
}
const char* Begin() const {
return Data;
}
const char* End() const {
return DataEnd;
}
char* Begin() {
return Data;
}
char* End() {
return DataEnd;
}
void Advance(char*& ptr) const {
ptr += AsDeriv().GetCellSize();
}
void Advance(const char*& ptr) const {
ptr += AsDeriv().GetCellSize();
}
bool IsValid(const char* ptr) {
return GetPSL(ptr).Distance >= 0;
}
static const TPSLStorage& GetPSL(const char* ptr) {
return *(const TPSLStorage*)ptr;
}
static const TKey& GetKey(const char* ptr) {
return *(const TKey*)(ptr + sizeof(TPSLStorage));
}
static TKey& GetKey(char* ptr) {
return *(TKey*)(ptr + sizeof(TPSLStorage));
}
const void* GetPayload(const char* ptr) {
return AsDeriv().GetPayloadImpl(ptr);
}
static TPSLStorage& GetPSL(char* ptr) {
return *(TPSLStorage*)ptr;
}
void* GetMutablePayload(char* ptr) {
return AsDeriv().GetPayloadImpl(ptr);
}
private:
struct TInternalBatchRequestItem : TRobinHoodBatchRequestItem<TKey> {
char* OriginalIterator;
};
Y_FORCE_INLINE char* MakeIterator(const ui64 hash, char* data, ui64 capacityShift) {
// https://probablydance.com/2018/06/16/fibonacci-hashing-the-optimization-that-the-world-forgot-or-a-better-alternative-to-integer-modulo/
ui64 bucket = ((SelfHash ^ hash) * 11400714819323198485llu) >> capacityShift;
char* ptr = data + AsDeriv().GetCellSize() * bucket;
return ptr;
}
Y_FORCE_INLINE char* InsertImpl(TKey key, const ui64 hash, bool& isNew, char* data, char* dataEnd, char* ptr) {
isNew = false;
TPSLStorage psl(hash);
char* returnPtr;
typename TDeriv::TPayloadStore tmpPayload;
for (;;) {
auto& pslPtr = GetPSL(ptr);
if (pslPtr.Distance < 0) {
isNew = true;
pslPtr = psl;
GetKey(ptr) = key;
return ptr;
}
if constexpr (CacheHash) {
if (pslPtr.Hash == psl.Hash && EqualLocal(GetKey(ptr), key)) {
return ptr;
}
} else {
if (EqualLocal(GetKey(ptr), key)) {
return ptr;
}
}
if (psl.Distance > pslPtr.Distance) {
// swap keys & state
returnPtr = ptr;
std::swap(psl, pslPtr);
std::swap(key, GetKey(ptr));
AsDeriv().SavePayload(GetPayload(ptr), tmpPayload);
isNew = true;
++psl.Distance;
AdvancePointer(ptr, data, dataEnd);
break;
}
++psl.Distance;
AdvancePointer(ptr, data, dataEnd);
}
for (;;) {
auto& pslPtr = GetPSL(ptr);
if (pslPtr.Distance < 0) {
pslPtr = psl;
GetKey(ptr) = key;
AsDeriv().RestorePayload(GetMutablePayload(ptr), tmpPayload);
return returnPtr; // for original key
}
if (psl.Distance > pslPtr.Distance) {
// swap keys & state
std::swap(psl, pslPtr);
std::swap(key, GetKey(ptr));
AsDeriv().SwapPayload(GetMutablePayload(ptr), tmpPayload);
}
++psl.Distance;
AdvancePointer(ptr, data, dataEnd);
}
}
Y_NO_INLINE void Grow() {
ui64 growFactor;
if (Capacity < 100'000) {
growFactor = 8;
} else if (Capacity < 1'000'000) {
growFactor = 4;
} else {
growFactor = 2;
}
auto newCapacity = Capacity * growFactor;
auto newCapacityShift = 64 - MostSignificantBit(newCapacity);
char *newData, *newDataEnd;
Allocate(newCapacity, newData, newDataEnd);
Y_DEFER {
Allocator.deallocate(newData, newDataEnd - newData);
};
std::array<TInternalBatchRequestItem, PrefetchBatchSize> batch;
ui32 batchLen = 0;
for (auto iter = Begin(); iter != End(); Advance(iter)) {
if (GetPSL(iter).Distance < 0) {
continue;
}
if (batchLen == batch.size()) {
CopyBatch({batch.data(), batchLen}, newData, newDataEnd);
batchLen = 0;
}
auto& r = batch[batchLen++];
r.ConstructKey(GetKey(iter));
r.OriginalIterator = iter;
if constexpr (CacheHash) {
r.Hash = GetPSL(iter).Hash;
} else {
r.Hash = HashLocal(r.GetKey());
}
r.InitialIterator = MakeIterator(r.Hash, newData, newCapacityShift);
NYql::PrefetchForWrite(r.InitialIterator);
}
CopyBatch({batch.data(), batchLen}, newData, newDataEnd);
Capacity = newCapacity;
CapacityShift = newCapacityShift;
std::swap(Data, newData);
std::swap(DataEnd, newDataEnd);
}
Y_NO_INLINE void CopyBatch(std::span<TInternalBatchRequestItem> batch, char* newData, char* newDataEnd) {
for (auto& r : batch) {
bool isNew;
auto iter = InsertImpl(r.GetKey(), r.Hash, isNew, newData, newDataEnd, r.InitialIterator);
Y_ASSERT(isNew);
AsDeriv().CopyPayload(GetMutablePayload(iter), GetPayload(r.OriginalIterator));
}
}
void AdvancePointer(char*& ptr, char* begin, char* end) const {
ptr += AsDeriv().GetCellSize();
ptr = (ptr == end) ? begin : ptr;
}
static ui64 GetSelfHash(void* self) {
char buf[sizeof(void*)];
*(void**)buf = self;
return CityHash64(buf, sizeof(buf));
}
protected:
void Init() {
Allocate(Capacity, Data, DataEnd);
}
private:
void Allocate(ui64 capacity, char*& data, char*& dataEnd) {
ui64 bytes = capacity * AsDeriv().GetCellSize();
data = Allocator.allocate(bytes);
dataEnd = data + bytes;
char* ptr = data;
for (ui64 i = 0; i < capacity; ++i) {
GetPSL(ptr).Distance = -1;
ptr += AsDeriv().GetCellSize();
}
}
const TDeriv& AsDeriv() const {
return static_cast<const TDeriv&>(*this);
}
TDeriv& AsDeriv() {
return static_cast<TDeriv&>(*this);
}
private:
ui64 Size = 0;
ui64 Capacity;
ui64 CapacityShift;
TAllocator Allocator;
const ui64 SelfHash;
char* Data = nullptr;
char* DataEnd = nullptr;
};
template <typename TKey, typename TEqual = std::equal_to<TKey>, typename THash = std::hash<TKey>, typename TAllocator = std::allocator<char>, typename TSettings = TRobinHoodDefaultSettings<TKey>>
class TRobinHoodHashMap : public TRobinHoodHashBase<TKey, TEqual, THash, TAllocator, TRobinHoodHashMap<TKey, TEqual, THash, TAllocator, TSettings>, TSettings::CacheHash> {
public:
using TSelf = TRobinHoodHashMap<TKey, TEqual, THash, TAllocator, TSettings>;
using TBase = TRobinHoodHashBase<TKey, TEqual, THash, TAllocator, TSelf, TSettings::CacheHash>;
using TPayloadStore = int;
explicit TRobinHoodHashMap(ui32 payloadSize, ui64 initialCapacity = 1u << 8)
: TBase(initialCapacity, THash(), TEqual())
, CellSize(sizeof(typename TBase::TPSLStorage) + sizeof(TKey) + payloadSize)
, PayloadSize(payloadSize)
{
TmpPayload.resize(PayloadSize);
TmpPayload2.resize(PayloadSize);
TBase::Init();
}
explicit TRobinHoodHashMap(ui32 payloadSize, const THash& hash, const TEqual& equal, ui64 initialCapacity = 1u << 8)
: TBase(initialCapacity, hash, equal)
, CellSize(sizeof(typename TBase::TPSLStorage) + sizeof(TKey) + payloadSize)
, PayloadSize(payloadSize)
{
TmpPayload.resize(PayloadSize);
TmpPayload2.resize(PayloadSize);
TBase::Init();
}
ui32 GetCellSize() const {
return CellSize;
}
void* GetPayloadImpl(char* ptr) {
return ptr + sizeof(typename TBase::TPSLStorage) + sizeof(TKey);
}
const void* GetPayloadImpl(const char* ptr) {
return ptr + sizeof(typename TBase::TPSLStorage) + sizeof(TKey);
}
void CopyPayload(void* dst, const void* src) {
memcpy(dst, src, PayloadSize);
}
void SavePayload(const void* p, int& store) {
Y_UNUSED(store);
memcpy(TmpPayload.data(), p, PayloadSize);
}
void RestorePayload(void* p, const int& store) {
Y_UNUSED(store);
memcpy(p, TmpPayload.data(), PayloadSize);
}
void SwapPayload(void* p, int& store) {
Y_UNUSED(store);
memcpy(TmpPayload2.data(), p, PayloadSize);
memcpy(p, TmpPayload.data(), PayloadSize);
TmpPayload2.swap(TmpPayload);
}
private:
const ui32 CellSize;
const ui32 PayloadSize;
using TVec = std::vector<char, TAllocator>;
TVec TmpPayload, TmpPayload2;
};
template <typename TKey, typename TPayload, typename TEqual = std::equal_to<TKey>, typename THash = std::hash<TKey>, typename TAllocator = std::allocator<char>, typename TSettings = TRobinHoodDefaultSettings<TKey>>
class TRobinHoodHashFixedMap : public TRobinHoodHashBase<TKey, TEqual, THash, TAllocator, TRobinHoodHashFixedMap<TKey, TPayload, TEqual, THash, TAllocator, TSettings>, TSettings::CacheHash> {
public:
using TSelf = TRobinHoodHashFixedMap<TKey, TPayload, TEqual, THash, TAllocator, TSettings>;
using TBase = TRobinHoodHashBase<TKey, TEqual, THash, TAllocator, TSelf, TSettings::CacheHash>;
using TPayloadStore = TPayload;
explicit TRobinHoodHashFixedMap(ui64 initialCapacity = 1u << 8)
: TBase(initialCapacity, THash(), TEqual())
{
TBase::Init();
}
explicit TRobinHoodHashFixedMap(const THash& hash, const TEqual& equal, ui64 initialCapacity = 1u << 8)
: TBase(initialCapacity, hash, equal)
{
TBase::Init();
}
ui32 GetCellSize() const {
return sizeof(typename TBase::TPSLStorage) + sizeof(TKey) + sizeof(TPayload);
}
void* GetPayloadImpl(char* ptr) {
return ptr + sizeof(typename TBase::TPSLStorage) + sizeof(TKey);
}
const void* GetPayloadImpl(const char* ptr) {
return ptr + sizeof(typename TBase::TPSLStorage) + sizeof(TKey);
}
void CopyPayload(void* dst, const void* src) {
*(TPayload*)dst = *(const TPayload*)src;
}
void SavePayload(const void* p, TPayload& store) {
store = *(const TPayload*)p;
}
void RestorePayload(void* p, const TPayload& store) {
*(TPayload*)p = store;
}
void SwapPayload(void* p, TPayload& store) {
std::swap(*(TPayload*)p, store);
}
};
template <typename TKey, typename TEqual = std::equal_to<TKey>, typename THash = std::hash<TKey>, typename TAllocator = std::allocator<char>, typename TSettings = TRobinHoodDefaultSettings<TKey>>
class TRobinHoodHashSet : public TRobinHoodHashBase<TKey, TEqual, THash, TAllocator, TRobinHoodHashSet<TKey, TEqual, THash, TAllocator, TSettings>, TSettings::CacheHash> {
public:
using TSelf = TRobinHoodHashSet<TKey, TEqual, THash, TAllocator, TSettings>;
using TBase = TRobinHoodHashBase<TKey, TEqual, THash, TAllocator, TSelf, TSettings::CacheHash>;
using TPayloadStore = int;
explicit TRobinHoodHashSet(THash hash, TEqual equal, ui64 initialCapacity = 1u << 8)
: TBase(initialCapacity, hash, equal) {
TBase::Init();
}
explicit TRobinHoodHashSet(ui64 initialCapacity = 1u << 8)
: TBase(initialCapacity, THash(), TEqual()) {
TBase::Init();
}
ui32 GetCellSize() const {
return sizeof(typename TBase::TPSLStorage) + sizeof(TKey);
}
void* GetPayloadImpl(char* ptr) {
Y_UNUSED(ptr);
return nullptr;
}
const void* GetPayloadImpl(const char* ptr) {
Y_UNUSED(ptr);
return nullptr;
}
void CopyPayload(void* dst, const void* src) {
Y_UNUSED(dst);
Y_UNUSED(src);
}
void SavePayload(const void* p, int& store) {
Y_UNUSED(p);
Y_UNUSED(store);
}
void RestorePayload(void* p, const int& store) {
Y_UNUSED(p);
Y_UNUSED(store);
}
void SwapPayload(void* p, int& store) {
Y_UNUSED(p);
Y_UNUSED(store);
}
};
}
}
|