Skip to content

Commit 441927d

Browse files
committed
Initial commit, including benchmarks used for Tapir journal paper submission.
0 parents  commit 441927d

File tree

1,011 files changed

+290605
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,011 files changed

+290605
-0
lines changed

.gitignore

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
*~
2+
*Run-*.txt
3+
*Cilksan*.txt
4+
*Cilkscale*.txt
5+
*.o
6+
7+
# Compiled benchmarks
8+
cilk5/cholesky
9+
cilk5/cilksort
10+
cilk5/fib
11+
cilk5/heat
12+
cilk5/lu
13+
cilk5/matmul
14+
cilk5/qsort
15+
cilk5/rectmul
16+
cilk5/strassen
17+
18+
intel/*/release
19+
intel/Mandelbrot*/*.bmp
20+
21+
pbbs/breadthFirstSearch/*/BFS
22+
pbbs/comparisonSort/*/sort
23+
pbbs/convexHull/*/hull
24+
pbbs/delaunayTriangulation/*/delaunay
25+
pbbs/delaunayRefine/*/refine
26+
pbbs/dictionary/*/dict
27+
pbbs/integerSort/*/isort
28+
pbbs/maximalIndependentSet/*/MIS
29+
pbbs/maximalMatching/*/matching
30+
pbbs/minSpanningForest/*/MST
31+
pbbs/nBody/*/nbody
32+
pbbs/nearestNeighbors/*/neighbors
33+
pbbs/rayCast/*/ray
34+
pbbs/removeDuplicates/*/remDups
35+
pbbs/spanningForest/*/ST
36+
pbbs/suffixArray/*/SA
37+
pbbs/testData/geometryData/data
38+
pbbs/testData/geometryData/addRays
39+
pbbs/testData/geometryData/plummer
40+
pbbs/testData/geometryData/uniform
41+
pbbs/testData/graphData/data
42+
pbbs/testData/graphData/addWeights
43+
pbbs/testData/graphData/gridGraph
44+
pbbs/testData/graphData/maxFlowGens
45+
pbbs/testData/graphData/randLocalGraph
46+
pbbs/testData/graphData/rMatGraph
47+
pbbs/testData/sequenceData/data
48+
pbbs/testData/sequenceData/addDataSeq
49+
pbbs/testData/sequenceData/exptSeq
50+
pbbs/testData/sequenceData/randomSeq
51+
pbbs/testData/sequenceData/trigramSeq
52+
pbbs/testData/sequenceData/trigramString
53+
!pbbs/testData/*/data/Makefile
54+
55+

cilk5/Makefile

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
ALL_TESTS = fft cholesky nqueens qsort rectmul strassen
2+
3+
CC ?= gcc
4+
CXX ?= g++
5+
6+
CFLAGS = -Wall -O3 # -DPIR # -fcilkplus
7+
CXXFLAGS = -Wall -O3 # -DPIR # -fcilkplus
8+
LDFLAGS =
9+
10+
ifeq ($(SERIAL),1)
11+
SERIAL_FLAGS=-Dcilk_for=for -Dcilk_spawn= -Dcilk_sync=
12+
CFLAGS += $(SERIAL_FLAGS)
13+
CXXFLAGS += $(SERIAL_FLAGS)
14+
endif
15+
16+
CFLAGS += $(EXTRA_CFLAGS)
17+
CXXFLAGS += $(EXTRA_CXXFLAGS)
18+
LDFLAGS += $(EXTRA_LDFLAGS)
19+
LDLIBS += $(EXTRA_LDLIBS)
20+
21+
.PHONY : default clean
22+
23+
default: all
24+
25+
all: $(ALL_TESTS)
26+
27+
%.o : %.c
28+
$(CC) $(CFLAGS) -c $<
29+
30+
%.o : %.cpp
31+
$(CXX) $(CXXFLAGS) -c $<
32+
33+
%.o : %.cc
34+
$(CXX) $(CXXFLAGS) -c $<
35+
36+
cholesky: getoptions.o cholesky.o
37+
cilksort: getoptions.o cilksort.o
38+
fft: getoptions.o fft.o
39+
heat: getoptions.o heat.o
40+
knapsack: getoptions.o knapsack.o
41+
lu: getoptions.o lu.o
42+
matmul: getoptions.o matmul.o
43+
nqueens: getoptions.o nqueens.o
44+
rectmul: getoptions.o rectmul.o
45+
strassen: getoptions.o strassen.o
46+
loop-matmul: loop-matmul.o
47+
qsort: qsort.o
48+
49+
fft cholesky : LDLIBS += -lm
50+
51+
% : %.o
52+
$(CXX) $(LDFLAGS) $^ $(LDLIBS) -o $@
53+
54+
clean :
55+
rm -f $(ALL_TESTS) *.o *.d* *~

0 commit comments

Comments
 (0)