-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsha_LAZ_link.cpp
More file actions
185 lines (165 loc) · 3.16 KB
/
sha_LAZ_link.cpp
File metadata and controls
185 lines (165 loc) · 3.16 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
#include <iostream>
#include <thread>
#include <mutex>
#include <chrono>
#include <vector>
#include <atomic>
using namespace std;
using namespace chrono;
class NODE {
public:
int key;
shared_ptr<NODE>next;
mutex n_lock;
bool marked;
NODE() { next = nullptr; marked = false; }
NODE(int key_value) {
next = NULL;
key = key_value;
marked = false;
}
~NODE() {}
void Lock()
{
n_lock.lock();
}
void unLock()
{
n_lock.unlock();
}
};
class LLIST {
shared_ptr<NODE>head, tail;
public:
LLIST()
{
head = make_shared<NODE>(0x80000000);
tail = make_shared<NODE>(0x7FFFFFFF);
head->next = tail;
}
~LLIST() {}
void clear()
{
head->next = tail;
}
bool Add(int x)
{
shared_ptr<NODE>pred, curr;
pred = head;
curr = pred->next;
while (curr->key < x)
{
pred = curr;
curr = curr->next;
}
pred->Lock(); curr->Lock();
if (validate(pred, curr)) {
if (curr->key == x) {
curr->unLock();
pred->unLock();
return false;
}
else {
shared_ptr<NODE>new_node = make_shared<NODE>(x);
new_node->next = curr;
pred->next = new_node;
curr->unLock();
pred->unLock();
return true;
}
}
curr->unLock();
pred->unLock();
}
bool remove(int x)
{
shared_ptr<NODE>pred, curr;
pred = atomic_load(&head);
curr = atomic_load(&pred->next);
while (curr->key < x)
{
pred = curr; curr = curr->next;
}
pred->Lock(); curr->Lock();
if (validate(pred, curr)) {
if (curr->key == x) {
pred->next = curr->next;
pred->unLock();
curr->unLock();
return true;
}
else {
pred->unLock();
curr->unLock();
return false;
}
}
curr->unLock();
pred->unLock();
}
bool contains(int x)
{
shared_ptr<NODE>pred, curr;
curr = head;
while (curr->key < x)
{
curr = curr->next;
}
return curr->key == x && !curr->marked;
}
void display20()
{
shared_ptr<NODE>ptr = head->next;
for (int i = 0; i < 20; ++i)
{
if (tail == ptr) break;
cout << ptr->key << ",";
ptr = ptr->next;
}
cout << endl;
}
bool validate(const shared_ptr<NODE> &pred,const shared_ptr<NODE> &curr) {
return !pred->marked && !curr->marked && pred->next == curr;
}
void recycle_freelist()
{
return;
}
};
constexpr int NUM_TEXT = 4000000;
constexpr int KEY_RANGE = 1000;
LLIST my_set;
void benchmark(int num_threads)
{
for (int i = 0; i < NUM_TEXT / num_threads; i++)
{
switch (rand() % 3) {
case 0:
my_set.Add(rand() % KEY_RANGE);
break;
case 1:
my_set.remove(rand() % KEY_RANGE);
break;
case 2:
my_set.contains(rand() % KEY_RANGE);
break;
}
}
}
constexpr int MAX_THREAD = 8;
int main()
{
for (int num = 1; num <= MAX_THREAD; num = num * 2) {
my_set.clear();
vector <thread> threads;
auto start_t = high_resolution_clock::now();
for (int i = 0; i < num; ++i)
threads.emplace_back(benchmark, num);
for (auto& t : threads)t.join();
auto end_t = high_resolution_clock::now();
auto exec_time = end_t - start_t;
cout << num << " Threads : ";
cout << "Exec time " << duration_cast<milliseconds>(exec_time).count() << "ms" << endl;
my_set.display20();
}
}