-
Notifications
You must be signed in to change notification settings - Fork 42
/
bst_bronson_java_test2.c
268 lines (217 loc) · 6.78 KB
/
bst_bronson_java_test2.c
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
/*
* File: bst_bronson_java_test2.c
* Author: Balmau Oana <[email protected]>,
* Zablotchi Igor <[email protected]>,
* Description:
* bst_bronson_java_test2.c is part of ASCYLIB
*
* Copyright (c) 2014 Vasileios Trigonakis <[email protected]>,
* Tudor David <[email protected]>
* Distributed Programming Lab (LPD), EPFL
*
* ASCYLIB is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation, version 2
* of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*/
#include <stdlib.h>
#include <stdio.h>
#include <pthread.h>
#include <assert.h>
#include <getopt.h>
#include <limits.h>
#include <signal.h>
#include <sys/time.h>
#include <time.h>
#include "bst_lock_bronson.h"
#include "measurements.h"
#include "utils.h"
#include "ssalloc.h"
int num_threads;
int op_count = 10000;
uint8_t* v;
//used to signal the threads when to stop
// ALIGNED(64) uint8_t running[64];
//the root of the binary search tree
node_t * root;
//a simple barrier implementation
//used to make sure all threads start the experiment at the same time
typedef struct barrier {
pthread_cond_t complete;
pthread_mutex_t mutex;
int count;
int crossing;
} barrier_t;
void barrier_init(barrier_t *b, int n)
{
pthread_cond_init(&b->complete, NULL);
pthread_mutex_init(&b->mutex, NULL);
b->count = n;
b->crossing = 0;
}
void barrier_cross(barrier_t *b)
{
pthread_mutex_lock(&b->mutex);
/* One more thread through */
b->crossing++;
/* If not all here, wait */
if (b->crossing < b->count) {
pthread_cond_wait(&b->complete, &b->mutex);
} else {
pthread_cond_broadcast(&b->complete);
/* Reset for next time */
b->crossing = 0;
}
pthread_mutex_unlock(&b->mutex);
}
//data structure through which we send parameters to and get results from the worker threads
typedef ALIGNED(64) struct thread_data {
//pointer to the global barrier
barrier_t *barrier;
//counts the number of operations each thread performs
// unsigned long num_operations;
//total operation time (not used here)
// ticks total_time;
//seed (not used here)
// unsigned int seed;
//the number of elements each thread should add at the beginning of its execution
// uint64_t num_add;
//number of inserts a thread performs
unsigned long num_insert;
// number of removes a thread performs
unsigned long num_remove;
//number of searches a thread performs
unsigned long num_search;
//the id of the thread (used for thread placement on cores)
int id;
} thread_data_t;
void *test(void *data) {
fprintf(stderr, "Starting test\n");
//get the per-thread data
thread_data_t *d = (thread_data_t *)data;
//place the thread on the apropriate cpu
set_cpu(d->id);
int op_count = 10000;
ssalloc_init();
/* Wait on barrier */
barrier_cross(d->barrier);
int i;
sval_t* val;
sval_t* added;
for ( i = d->id * op_count + 1; i <= (d->id+1) * op_count; i++){
val = (sval_t*)malloc(sizeof(sval_t));
*val = d->id*op_count+i;
// fprintf(stderr, "[%d] before add\n", pthread_self());
added = bst_put(i, val);
// fprintf(stderr, "[%d] Added %d\n", pthread_self(), i);
// fprintf(stderr, "[%d] Added %d? %d\n", d->id, i, added==TRUE);
if (added == NULL) {
d->num_insert++;
FAI_U8(&v[i]);
}
}
// printf("Root right node: %d", root->right->key);
for ( i = 1; i <= num_threads * op_count; i++){
bool_t found = (bst_get(i) != NULL);
// printf("Contains %d? %d\n", i, found==FOUND);
if (found) {
d->num_search ++;
}
}
// fprintf(stderr, "After insertions, found %d\n", d->num_search);
// d->num_search = 0;
for ( i = d->id * op_count + 1; i <= (d->id+1) * op_count; i++){
bool_t removed = (bst_remove(i) != NULL);
// printf("Removed %d? %d\n", i, removed==TRUE);
if (removed == TRUE) {
d->num_remove ++;
FAI_U8(&v[i]);
}
}
// for ( i = 1; i <= op_count; i++){
// bool_t found = (bst_get(i) != NULL);
// // printf("Contains %d? %d\n", i, found==FOUND);
// if (found) {
// d->num_search ++;
// }
// }
// fprintf(stderr, "After deletions, found %d\n", d->num_search);
return NULL;
}
int main(int argc, char* const argv[]) {
num_threads = 3;
int i;
v = (uint8_t*) malloc((num_threads+1)*(1+op_count) * sizeof(uint8_t));
for (i = 1; i <= op_count; i++) {
v[i] = 0;
}
//place thread on the first cpu
set_cpu(7);
ssalloc_init();
//alignment in the custom memory allocator to a 64 byte boundary
pthread_t *threads;
pthread_attr_t attr;
thread_data_t *data;
barrier_t barrier;
node_t* root = bst_initialize();
printf("Initialized tree\n");
//initialize the data which will be passed to the threads
if ((data = (thread_data_t *)malloc(num_threads * sizeof(thread_data_t))) == NULL) {
perror("malloc");
exit(1);
}
if ((threads = (pthread_t *)malloc(num_threads * sizeof(pthread_t))) == NULL) {
perror("malloc");
exit(1);
}
//global barrier initialization (used to start the threads at the same time)
barrier_init(&barrier, num_threads + 1);
pthread_attr_init(&attr);
pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
for (i = 0; i < num_threads; i++) {
data[i].id = i;
data[i].num_insert=0;
data[i].num_remove=0;
data[i].num_search=0;
data[i].barrier = &barrier;
if (pthread_create(&threads[i], &attr, test, (void *)(&data[i])) != 0) {
fprintf(stderr, "Error creating thread\n");
exit(1);
}
}
pthread_attr_destroy(&attr);
/* Start threads */
barrier_cross(&barrier);
/* Wait for thread completion */
for (i = 0; i < num_threads; i++) {
if (pthread_join(threads[i], NULL) != 0) {
fprintf(stderr, "Error waiting for thread completion\n");
exit(1);
}
}
for (i = 0; i < num_threads; i++) {
printf("Thread %d\n", i);
printf(" #inserts : %lu\n", data[i].num_insert);
printf(" #searches : %lu\n", data[i].num_search);
printf(" #removes : %lu\n", data[i].num_remove);
}
bool_t correct = TRUE;
for (i = 1; i <= op_count; i++) {
if (v[i] != 2) {
correct = FALSE;
fprintf(stderr, "Incorrect value %d\n", i);
}
}
if (correct == TRUE) {
fprintf(stderr, "Okey-dokey\n");
}
free(threads);
free(data);
return 0;
}