-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSlowMemoryRepresentation.cpp
53 lines (47 loc) · 1.59 KB
/
SlowMemoryRepresentation.cpp
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
//
// Created by Administrator on 2022/4/30.
//
#include "SlowMemoryRepresentation.h"
#include <cstring>
#include <cmath>
#include <assert.h>
#include <iostream>
#include "macros.h"
SlowMemoryRepresentation::SlowMemoryRepresentation(int words, int bits, int hash_group):
words(words),
bits(bits),
hash_groups(hash_group)
{
s = ceil(hash_groups*words*bits/8);
back_bloom.resize(s);
for (int i=0;i<s;i++) back_bloom[i]=0;
wordidx_size=int(log2(words));
bitidx_size=int(log2(bits));
}
void SlowMemoryRepresentation::add(unsigned int group, unsigned int wordidx, const set<unsigned int>& idx) {
for(auto i:idx){
unsigned int actual_i = (group * words + wordidx) * bits + i;
if(actual_i >= hash_groups*words*bits){
cerr<<"actual_i: "<<actual_i<<" >= total: "<<hash_groups*words*bits<<endl;
cerr<<"group: "<<group<<" wordidx: "<<wordidx<<" idx: "<<i<<endl;
exit(3);
}
SETBIT(back_bloom[actual_i/8],7-(actual_i%8));
}
}
char* SlowMemoryRepresentation::get(unsigned int group, unsigned int wordidx) {
assert(group<hash_groups);
unsigned int wordinit = (group * words + wordidx) * bits;
unsigned int wordend = wordinit+bits-1;
unsigned int size = wordend / 8 - wordinit / 8 + 1;
char* result=new char[size];
for(int i = 0;i < size;i++)
result[i] = back_bloom[wordinit / 8 + i];
return result;
}
void SlowMemoryRepresentation::clear() {
back_bloom.clear();
back_bloom.resize(s);
for (int i=0;i<s;i++) back_bloom[i]=0;
}
SlowMemoryRepresentation::~SlowMemoryRepresentation() = default;