-
Notifications
You must be signed in to change notification settings - Fork 11
/
utils_ligra.h
355 lines (312 loc) · 10.7 KB
/
utils_ligra.h
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
// This code is part of the project "Ligra: A Lightweight Graph Processing
// Framework for Shared Memory", presented at Principles and Practice of
// Parallel Programming, 2013.
// Copyright (c) 2013 Julian Shun and Guy Blelloch
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights (to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#ifndef UTIL_H
#define UTIL_H
#include <iostream>
#include <fstream>
#include <stdlib.h>
#include "parallel_ligra.h"
using namespace std;
// Needed to make frequent large allocations efficient with standard
// malloc implementation. Otherwise they are allocated directly from
// vm.
#ifndef __APPLE__
#include <malloc.h>
static int __ii = mallopt(M_MMAP_MAX,0);
static int __jj = mallopt(M_TRIM_THRESHOLD,-1);
#endif
#ifndef uint
#define uint unsigned int
#endif
#ifndef ulong
#define ulong unsigned long
#endif
#define newA(__E,__n) (__E*) malloc((__n)*sizeof(__E))
template <class E>
struct identityF { E operator() (const E& x) {return x;}};
template <class E>
struct addF { E operator() (const E& a, const E& b) const {return a+b;}};
template <class E>
struct minF { E operator() (const E& a, const E& b) const {return (a < b) ? a : b;}};
template <class E>
struct maxF { E operator() (const E& a, const E& b) const {return (a>b) ? a : b;}};
struct nonMaxF{bool operator() (uintE &a) {return (a != UINT_E_MAX);}};
#define _SCAN_LOG_BSIZE 10
#define _SCAN_BSIZE (1 << _SCAN_LOG_BSIZE)
template <class T>
struct _seq {
T* A;
long n;
_seq() {A = NULL; n=0;}
_seq(T* _A, long _n) : A(_A), n(_n) {}
void del() {free(A);}
};
namespace sequence {
template <class intT>
struct boolGetA {
bool* A;
boolGetA(bool* AA) : A(AA) {}
intT operator() (intT i) {return (intT) A[i];}
};
template <class ET, class intT>
struct getA {
ET* A;
getA(ET* AA) : A(AA) {}
ET operator() (intT i) {return A[i];}
};
template <class IT, class OT, class intT, class F>
struct getAF {
IT* A;
F f;
getAF(IT* AA, F ff) : A(AA), f(ff) {}
OT operator () (intT i) {return f(A[i]);}
};
#define nblocks(_n,_bsize) (1 + ((_n)-1)/(_bsize))
#define blocked_for(_i, _s, _e, _bsize, _body) { \
intT _ss = _s; \
intT _ee = _e; \
intT _n = _ee-_ss; \
intT _l = nblocks(_n,_bsize); \
parallel_for (intT _i = 0; _i < _l; _i++) { \
intT _s = _ss + _i * (_bsize); \
intT _e = min(_s + (_bsize), _ee); \
_body \
} \
}
template <class OT, class intT, class F, class G>
OT reduceSerial(intT s, intT e, F f, G g) {
OT r = g(s);
for (intT j=s+1; j < e; j++) r = f(r,g(j));
return r;
}
template <class OT, class intT, class F, class G>
OT reduce(intT s, intT e, F f, G g) {
intT l = nblocks(e-s, _SCAN_BSIZE);
if (l <= 1) return reduceSerial<OT>(s, e, f , g);
OT *Sums = newA(OT,l);
blocked_for (i, s, e, _SCAN_BSIZE,
Sums[i] = reduceSerial<OT>(s, e, f, g););
OT r = reduce<OT>((intT) 0, l, f, getA<OT,intT>(Sums));
free(Sums);
return r;
}
template <class OT, class intT, class F>
OT reduce(OT* A, intT n, F f) {
return reduce<OT>((intT)0,n,f,getA<OT,intT>(A));
}
template <class OT, class intT>
OT plusReduce(OT* A, intT n) {
return reduce<OT>((intT)0,n,addF<OT>(),getA<OT,intT>(A));
}
// g is the map function (applied to each element)
// f is the reduce function
// need to specify OT since it is not an argument
template <class OT, class IT, class intT, class F, class G>
OT mapReduce(IT* A, intT n, F f, G g) {
return reduce<OT>((intT) 0,n,f,getAF<IT,OT,intT,G>(A,g));
}
template <class intT>
intT sum(bool *In, intT n) {
return reduce<intT>((intT) 0, n, addF<intT>(), boolGetA<intT>(In));
}
template <class ET, class intT, class F, class G>
ET scanSerial(ET* Out, intT s, intT e, F f, G g, ET zero, bool inclusive, bool back) {
ET r = zero;
if (inclusive) {
if (back) for (intT i = e-1; i >= s; i--) Out[i] = r = f(r,g(i));
else for (intT i = s; i < e; i++) Out[i] = r = f(r,g(i));
} else {
if (back)
for (intT i = e-1; i >= s; i--) {
ET t = g(i);
Out[i] = r;
r = f(r,t);
}
else
for (intT i = s; i < e; i++) {
ET t = g(i);
Out[i] = r;
r = f(r,t);
}
}
return r;
}
template <class ET, class intT, class F>
ET scanSerial(ET *In, ET* Out, intT n, F f, ET zero) {
return scanSerial(Out, (intT) 0, n, f, getA<ET,intT>(In), zero, false, false);
}
// back indicates it runs in reverse direction
template <class ET, class intT, class F, class G>
ET scan(ET* Out, intT s, intT e, F f, G g, ET zero, bool inclusive, bool back) {
intT n = e-s;
intT l = nblocks(n,_SCAN_BSIZE);
if (l <= 2) return scanSerial(Out, s, e, f, g, zero, inclusive, back);
ET *Sums = newA(ET,nblocks(n,_SCAN_BSIZE));
blocked_for (i, s, e, _SCAN_BSIZE,
Sums[i] = reduceSerial<ET>(s, e, f, g););
ET total = scan(Sums, (intT) 0, l, f, getA<ET,intT>(Sums), zero, false, back);
blocked_for (i, s, e, _SCAN_BSIZE,
scanSerial(Out, s, e, f, g, Sums[i], inclusive, back););
free(Sums);
return total;
}
template <class ET, class intT, class F>
ET scan(ET *In, ET* Out, intT n, F f, ET zero) {
return scan(Out, (intT) 0, n, f, getA<ET,intT>(In), zero, false, false);}
template <class ET, class intT, class F>
ET scanI(ET *In, ET* Out, intT n, F f, ET zero) {
return scan(Out, (intT) 0, n, f, getA<ET,intT>(In), zero, true, false);}
template <class ET, class intT, class F>
ET scanBack(ET *In, ET* Out, intT n, F f, ET zero) {
return scan(Out, (intT) 0, n, f, getA<ET,intT>(In), zero, false, true);}
template <class ET, class intT, class F>
ET scanIBack(ET *In, ET* Out, intT n, F f, ET zero) {
return scan(Out, (intT) 0, n, f, getA<ET,intT>(In), zero, true, true);}
template <class ET, class intT>
ET plusScan(ET *In, ET* Out, intT n) {
return scan(Out, (intT) 0, n, addF<ET>(), getA<ET,intT>(In),
(ET) 0, false, false);}
#define _F_BSIZE (2*_SCAN_BSIZE)
// sums a sequence of n boolean flags
// an optimized version that sums blocks of 4 booleans by treating
// them as an integer
// Only optimized when n is a multiple of 512 and Fl is 4byte aligned
template <class intT>
intT sumFlagsSerial(bool *Fl, intT n) {
intT r = 0;
if (n >= 128 && (n & 511) == 0 && ((long) Fl & 3) == 0) {
int* IFl = (int*) Fl;
for (int k = 0; k < (n >> 9); k++) {
int rr = 0;
for (int j=0; j < 128; j++) rr += IFl[j];
r += (rr&255) + ((rr>>8)&255) + ((rr>>16)&255) + ((rr>>24)&255);
IFl += 128;
}
} else for (intT j=0; j < n; j++) r += Fl[j];
return r;
}
template <class ET, class intT, class F>
_seq<ET> packSerial(ET* Out, bool* Fl, intT s, intT e, F f) {
if (Out == NULL) {
intT m = sumFlagsSerial(Fl+s, e-s);
Out = newA(ET,m);
}
intT k = 0;
for (intT i=s; i < e; i++) if (Fl[i]) Out[k++] = f(i);
return _seq<ET>(Out,k);
}
template <class ET, class intT, class F>
_seq<ET> pack(ET* Out, bool* Fl, intT s, intT e, F f) {
intT l = nblocks(e-s, _F_BSIZE);
if (l <= 1) return packSerial(Out, Fl, s, e, f);
intT *Sums = newA(intT,l);
blocked_for (i, s, e, _F_BSIZE, Sums[i] = sumFlagsSerial(Fl+s, e-s););
intT m = plusScan(Sums, Sums, l);
if (Out == NULL) Out = newA(ET,m);
blocked_for(i, s, e, _F_BSIZE, packSerial(Out+Sums[i], Fl, s, e, f););
free(Sums);
return _seq<ET>(Out,m);
}
template <class ET, class intT>
intT pack(ET* In, ET* Out, bool* Fl, intT n) {
return pack(Out, Fl, (intT) 0, n, getA<ET,intT>(In)).n;}
template <class intT>
_seq<intT> packIndex(bool* Fl, intT n) {
return pack((intT *) NULL, Fl, (intT) 0, n, identityF<intT>());
}
template <class ET, class intT, class PRED>
intT filter(ET* In, ET* Out, intT n, PRED p) {
bool *Fl = newA(bool,n);
parallel_for (intT i=0; i < n; i++) Fl[i] = (bool) p(In[i]);
intT m = pack(In, Out, Fl, n);
free(Fl);
return m;
}
}
template <class ET>
inline bool CAS(ET *ptr, ET oldv, ET newv) {
if (sizeof(ET) == 1) {
return __sync_bool_compare_and_swap((bool*)ptr, *((bool*)&oldv), *((bool*)&newv));
} else if (sizeof(ET) == 4) {
return __sync_bool_compare_and_swap((int*)ptr, *((int*)&oldv), *((int*)&newv));
} else if (sizeof(ET) == 8) {
return __sync_bool_compare_and_swap((long*)ptr, *((long*)&oldv), *((long*)&newv));
}
else {
std::cout << "CAS bad length : " << sizeof(ET) << std::endl;
abort();
}
}
template <class ET>
inline bool writeMin(ET *a, ET b) {
ET c; bool r=0;
do c = *a;
while (c > b && !(r=CAS(a,c,b)));
return r;
}
template <class ET>
inline void writeAdd(ET *a, ET b) {
volatile ET newV, oldV;
do {oldV = *a; newV = oldV + b;}
while (!CAS(a, oldV, newV));
}
inline uint hashInt(uint a) {
a = (a+0x7ed55d16) + (a<<12);
a = (a^0xc761c23c) ^ (a>>19);
a = (a+0x165667b1) + (a<<5);
a = (a+0xd3a2646c) ^ (a<<9);
a = (a+0xfd7046c5) + (a<<3);
a = (a^0xb55a4f09) ^ (a>>16);
return a;
}
inline ulong hashInt(ulong a) {
a = (a+0x7ed55d166bef7a1d) + (a<<12);
a = (a^0xc761c23c510fa2dd) ^ (a>>9);
a = (a+0x165667b183a9c0e1) + (a<<59);
a = (a+0xd3a2646cab3487e3) ^ (a<<49);
a = (a+0xfd7046c5ef9ab54c) + (a<<3);
a = (a^0xb55a4f090dd4a67b) ^ (a>>32);
return a;
}
//remove duplicate integers in [0,...,n-1]
void remDuplicates(uintE* indices, uintE* flags, long m, long n) {
//make flags for first time
if(flags == NULL) {flags = newA(uintE,n);
{parallel_for(long i=0;i<n;i++) flags[i]=UINT_E_MAX;}}
{parallel_for(uintE i=0;i<m;i++)
if(indices[i] != UINT_E_MAX && flags[indices[i]] == UINT_E_MAX)
CAS(&flags[indices[i]],(uintE)UINT_E_MAX,i);
}
//reset flags
{parallel_for(long i=0;i<m;i++){
if(indices[i] != UINT_E_MAX){
if(flags[indices[i]] == i){ //win
flags[indices[i]] = UINT_E_MAX; //reset
}
else indices[i] = UINT_E_MAX; //lost
}
}
}
}
#endif