-
Notifications
You must be signed in to change notification settings - Fork 5
/
.gitignore
201 lines (189 loc) · 4.57 KB
/
.gitignore
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
*~
*Compile-*.txt
*Run-*.txt
*Cilksan*.txt
*Cilkscale*.txt
*.o
*.out
*.pyc
tmp/
results/
# Compiled benchmarks
cilk5/cholesky
cilk5/cilksort
cilk5/fib
cilk5/heat
cilk5/lu
cilk5/matmul
cilk5/qsort
cilk5/rectmul
cilk5/strassen
intel/*.tar.gz
intel/*/release
intel/Mandelbrot*/*.bmp
pbbs/*/common/*Check
pbbs/breadthFirstSearch/*/BFS
pbbs/comparisonSort/*/sort
pbbs/convexHull/*/hull
pbbs/delaunayTriangulation/*/delaunay
pbbs/delaunayRefine/*/refine
pbbs/dictionary/*/dict
pbbs/integerSort/*/isort
pbbs/maximalIndependentSet/*/MIS
pbbs/maximalMatching/*/matching
pbbs/minSpanningForest/*/MST
pbbs/nBody/*/nbody
pbbs/nearestNeighbors/*/neighbors
pbbs/rayCast/*/ray
pbbs/removeDuplicates/*/remDups
pbbs/spanningForest/*/ST
pbbs/suffixArray/*/SA
pbbs/testData/geometryData/data/*
pbbs/testData/geometryData/addRays
pbbs/testData/geometryData/plummer
pbbs/testData/geometryData/uniform
pbbs/testData/graphData/data/*
pbbs/testData/graphData/addWeights
pbbs/testData/graphData/gridGraph
pbbs/testData/graphData/maxFlowGens
pbbs/testData/graphData/randLocalGraph
pbbs/testData/graphData/rMatGraph
pbbs/testData/sequenceData/data/*
pbbs/testData/sequenceData/addDataSeq
pbbs/testData/sequenceData/almostSortedSeq
pbbs/testData/sequenceData/exptSeq
pbbs/testData/sequenceData/randomSeq
pbbs/testData/sequenceData/trigramSeq
pbbs/testData/sequenceData/trigramString
!pbbs/testData/geometryData/data/Makefile
!pbbs/testData/graphData/data/Makefile
!pbbs/testData/sequenceData/data/Makefile
!pbbs/testData/sequenceData/data/trigrams.txt
pbbs/*/*/blockRadixSort.h
pbbs/*/*/cilkMakeF
pbbs/*/*/dataGen.h
pbbs/*/*/delaunay.C
pbbs/*/*/delaunayDefs.h
pbbs/*/*/delaunayQs.h
pbbs/*/*/deterministicHash.h
pbbs/*/*/geometry.h
pbbs/*/*/geometryIO.h
pbbs/*/*/getmemory.h
pbbs/*/*/gettime.h
pbbs/*/*/gppDefs
pbbs/*/*/gppMakeF
pbbs/*/*/graph.h
pbbs/*/*/graphIO.h
pbbs/*/*/graphUtils.h
pbbs/*/*/IO.h
pbbs/*/*/lib
pbbs/*/*/MakeBench
pbbs/*/*/MakeBenchI
pbbs/*/*/merge.h
pbbs/*/*/ndHash.h
pbbs/*/*/nearestNeighbors.h
pbbs/*/*/octTree.h
pbbs/*/*/parallelDefs
pbbs/*/*/parallel.h
pbbs/*/*/parseCommandLine.h
pbbs/*/*/plib
pbbs/*/*/quickSort.h
pbbs/*/*/randPerm.h
pbbs/*/*/rangeMin.h
pbbs/*/*/runTests.py
pbbs/*/*/sampleSort.h
pbbs/*/*/semireduce.h
pbbs/*/*/semisort.h
pbbs/*/*/sequence.h
pbbs/*/*/sequenceIO.h
pbbs/*/*/serialHash.h
pbbs/*/*/serialSort.h
pbbs/*/*/speculative_for.h
pbbs/*/*/stlParallelSort.h
pbbs/*/*/topologyFromTri.C
pbbs/*/*/topology.h
pbbs/*/*/transpose.h
pbbs/*/*/unionFind.h
pbbs/*/*/utils.h
!pbbs/common/blockRadixSort.h
!pbbs/common/cilkMakeF
!pbbs/common/dataGen.h
!pbbs/common/delaunay.C
!pbbs/common/delaunayDefs.h
!pbbs/common/delaunayQs.h
!pbbs/common/deterministicHash.h
!pbbs/common/geometry.h
!pbbs/common/geometryIO.h
!pbbs/common/getmemory.h
!pbbs/common/gettime.h
!pbbs/common/gppDefs
!pbbs/common/gppMakeF
!pbbs/common/graph.h
!pbbs/common/graphIO.h
!pbbs/common/graphUtils.h
!pbbs/common/IO.h
!pbbs/common/lib
!pbbs/common/MakeBench
!pbbs/common/MakeBenchI
!pbbs/common/merge.h
!pbbs/common/ndHash.h
!pbbs/common/nearestNeighbors.h
!pbbs/common/octTree.h
!pbbs/common/parallelDefs
!pbbs/common/parallel.h
!pbbs/common/parseCommandLine.h
!pbbs/common/plib
!pbbs/common/quickSort.h
!pbbs/common/randPerm.h
!pbbs/common/rangeMin.h
!pbbs/common/runTests.py
!pbbs/common/sampleSort.h
!pbbs/common/semireduce.h
!pbbs/common/semisort.h
!pbbs/common/sequence.h
!pbbs/common/sequenceIO.h
!pbbs/common/serialHash.h
!pbbs/common/serialSort.h
!pbbs/common/speculative_for.h
!pbbs/common/stlParallelSort.h
!pbbs/common/topologyFromTri.C
!pbbs/common/topology.h
!pbbs/common/transpose.h
!pbbs/common/unionFind.h
!pbbs/common/utils.h
pbbs/*/*/*Time.C
pbbs/*/*/testInputs
!pbbs/*/common/*Time.C
!pbbs/*/common/testInputs
pbbs/breadthFirstSearch/*/BFS.h
!pbbs/breadthFirstSearch/common/BFS.h
pbbs/convexHull/*/hull.h
!pbbs/convexHull/common/hull.h
pbbs/delaunayRefine/*/refine.h
!pbbs/delaunayRefine/common/refine.h
pbbs/delaunayTriangulation/*/delaunay.h
!pbbs/delaunayTriangulation/common/delaunay.h
pbbs/maximalIndependentSet/*/MIS.h
!pbbs/maximalIndependentSet/common/MIS.h
pbbs/maximalMatching/*/matching.h
!pbbs/maximalMatching/common/matching.h
pbbs/minSpanningForest/*/MST.h
!pbbs/minSpanningForest/common/MST.h
pbbs/nBody/*/nbody.h
!pbbs/nBody/common/nbody.h
pbbs/nBody/*/spherical.h
!pbbs/nBody/common/spherical.h
pbbs/rayCast/*/ray.h
!pbbs/rayCast/common/ray.h
pbbs/spanningForest/*/ST.h
!pbbs/spanningForest/common/ST.h
pbbs/suffixArray/*/SA.h
!pbbs/suffixArray/common/SA.h
*miniFE*.yaml
reducers/dedup/data
reducers/dedup/out
reducers/dedup/src/cilk/dedup-reducer
reducers/dedup/src/cilk/dedup-serial
reducers/ferret/data
reducers/ferret/out
reducers/ferret/src/build