-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrandLocalGraph.C
77 lines (75 loc) · 3.02 KB
/
randLocalGraph.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
// This code is part of the Problem Based Benchmark Suite (PBBS)
// Copyright (c) 2011 Guy Blelloch and the PBBS team
//
// 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 "parseCommandLine.h"
#include "graphIO.h"
#include "utils.h"
#include "parallel.h"
using namespace benchIO;
using namespace std;
// Generates an undirected graph with n vertices with approximately degree
// neighbors per vertex.
// Edges are distributed so they appear to come from
// a dim-dimensional space. In particular an edge (i,j) will have
// probability roughly proportional to (1/|i-j|)^{(d+1)/d}, giving
// separators of size about n^{(d-1)/d}.
template <class intT>
edgeArray<intT> edgeRandomWithDimension(intT dim, intT nonZeros, intT numRows) {
double degree = (double)nonZeros/numRows;
edge<intT> *E = newA(edge<intT>,nonZeros);
parallel_for (intT k=0; k < nonZeros; k++) {
intT i = k / degree;
intT j;
if (dim==0) {
uintT h = k;
do {
j = ((h = hashInt(h)) % numRows);
if(j < 0 || j >= numRows) {cout << h << " " << j << endl; abort();}
} while (j == i);
} else {
intT pow = dim+2;
uintT h = k;
do {
while ((((h = hashInt(h)) % 1000003) < 500001)) pow += dim;
j = (i + ((h = hashInt(h)) % (((long) 1) << pow))) % numRows;
} while (j == i);
}
E[k].u = i; E[k].v = j;
}
return edgeArray<intT>(E,numRows,numRows,nonZeros);
}
//Generates a graph with n vertices and m edges, possibly with
//duplicates, and then removes duplicate edges and symmetrizes the
//graph.
int parallel_main(int argc, char* argv[]) {
commandLine P(argc,argv,"[-s] [-m <numedges>] [-d <dims>] n <outFile>");
pair<intT,char*> in = P.sizeAndFileName();
long n = in.first;
char* fname = in.second;
int dim = P.getOptionIntValue("-d", 0);
long m = P.getOptionLongValue("-m", 10*n);
bool sym = P.getOptionValue("-s");
edgeArray<uintT> EA = edgeRandomWithDimension<uintT>(dim, m, n);
graph<uintT> G = graphFromEdges<uintT>(EA, sym);
EA.del();
writeGraphToFile<uintT>(G, fname);
G.del();
}