forked from Jaiwen/GraphGrind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.h
499 lines (460 loc) · 12.9 KB
/
utils.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
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
// 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.
#include <iostream>
#include <fstream>
#include <unistd.h>
#include <sched.h>
#include <errno.h>
#include <stdlib.h>
#include <cstring>
#include <string>
#include <utility>
#include <algorithm>
#include "parallel.h"
//#include "mm.h"
#include <sys/mman.h>
using namespace std;
#if 0
#ifndef __APPLE__
// Needed to make frequent large allocations efficient with standard
// malloc implementation. Otherwise they are allocated directly from
// vm.
#include <malloc.h>
static int __ii = mallopt(M_MMAP_MAX,0);
static int __jj = mallopt(M_TRIM_THRESHOLD,-1);
#endif
#endif
//#define newA(__E,__n) (__E*) malloc((__n)*sizeof(__E))
//#define newnumaA(__E,__n) (__E*) numa_local_alloc((__n)*sizeof(__E))
//#define numaAlloc(__E,__n,__node) (__E*) numa_alloc_onnode((__n)*sizeof(__E),__node)
//#define numaInterleave(__E,__n) (__E*) numa_alloc_interleaved((__n)*sizeof(__E))
typedef pair<intT, intT> intTpair;
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;
}
};
#define _BSIZE 2048
#define _SCAN_LOG_BSIZE 10
#define _SCAN_BSIZE (1 << _SCAN_LOG_BSIZE)
template <class T>
struct _seq
{
T* A;
//mmap_ptr<T> A;
long n;
_seq()
{
A = NULL;
// A = mmap_ptr<T> ();
n=0;
}
_seq(T* _A, long _n) : A(_A), n(_n) {}
void del()
{
delete [] A;
//A.del();
}
};
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];
}
};
//Define F function for dense (outdegreecount)
template<class intT>
class FDense
{
public:
intTpair operator()(intTpair l, intTpair r)
{
return make_pair(l.first+r.first,l.second+r.second);
}
};
#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 = new 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));
delete [] Sums;
return r;
}
//Define for Dense (d_m and outdegree-count for dense operator)
template <class intT, class G>
intTpair reduce(intT s, intT n, G g)
{
return reduce<intTpair>((intT)s,n,FDense<intT>(),g);
}
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));
}
template <class intT>
intT sum(bool *In, intT s, intT n)
{
return reduce<intT>((intT) s, n, addF<intT>(), boolGetA<intT>(In));
}
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 = new 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););
delete [] 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 = new 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> packSerialNopara(ET* Out, bool* Fl, intT s, intT e, intT startPos, F f)
{
if (Out == NULL)
{
intT m = sumFlagsSerial(Fl+s, e-s);
Out = new ET [m];
for (intT i=0; i < m; i++) Out[i] = Out[i]+startPos;
}
intT k = 0;
for (intT i=s; i < e; i++) if (Fl[i]) Out[k++] = f(i);
for(intT i=0; i<k; i++) Out[i]=Out[i]+startPos;
return _seq<ET>(Out,k);
}
template <class ET, class intT, class F>
_seq<ET> packSerial(ET* Out, bool* Fl, intT s, intT e, intT startPos, F f)
{
if (Out == NULL)
{
intT m = sumFlagsSerial(Fl+s, e-s);
Out = new ET [m];
// parallel_for (intT i=0; i < m; i++) Out[i] = Out[i]+startPos;
}
intT k = 0;
for (intT i=s; i < e; i++) if (Fl[i]) Out[k++] = f(i) + startPos;
// parallel_for(intT i=0; i<k; i++) Out[i]=Out[i]+startPos;
return _seq<ET>(Out,k);
}
template <class ET, class intT, class F>
_seq<ET> packPartition(ET* Out, bool* Fl, intT s, intT e, intT startPos, F f)
{
intT l = nblocks(e-s, _F_BSIZE);
if (l <= 1)
{
return packSerial(Out, Fl, s, e, startPos, f);
}
else
{
intT *Sums = new 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 = new ET [m];
}
blocked_for(i, s, e, _F_BSIZE, packSerial(Out+Sums[i], Fl, s, e, startPos, f););
delete [] Sums;
return _seq<ET>(Out,m);
}
}
template <class intT>
_seq<intT> packPartition(bool* Fl, intT n, intT startPos)
{
return packPartition((intT *) NULL, Fl, (intT) 0, n, startPos, identityF<intT>());
}
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 = new 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 = new ET [m];
blocked_for(i, s, e, _F_BSIZE, packSerial(Out+Sums[i], Fl, s, e, f););
delete [] 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 = new bool [n];
_Pragma( STRINGIFY(cilk grainsize = _F_BSIZE) ) parallel_for (intT i=0; i < n; i++) Fl[i] = (bool) p(In[i]);
intT m = pack(In, Out, Fl, n);
delete [] Fl;
return m;
}
}
// The conditional should be removed by the compiler
// this should work with pointer types, or pairs of integers
template <class ET>
inline bool CAS(ET *ptr, ET oldv, ET newv)
{
if (sizeof(ET) == 8)
{
long* o = (long*) &oldv;
long* n = (long*) &newv;
return __sync_bool_compare_and_swap((long*)ptr, *o, *n);
}
else if (sizeof(ET) == 4)
{
int* o = (int*) &oldv;
int* n = (int*) &newv;
return __sync_bool_compare_and_swap((int*)ptr, *o, *n);
}
else
{
std::cout << "CAS bad length" << 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;
}
//atomically do bitwise-OR of *a with b and store in location a
template <class ET>
void writeOr(ET *a, ET b)
{
volatile ET newV, oldV;
do
{
oldV = *a;
newV = oldV | b;
}
while ((oldV != newV) && !CAS(a, oldV, newV));
}
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 unsigned int hash(unsigned int 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 unsigned long hash(unsigned long 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;
}