-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
81 lines (53 loc) · 8.59 KB
/
Makefile
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
bloom_faoso_std_h1h2: bloom_faoso.cpp bloom_faoso.h bloom.h common.h xxhash.h xxhash.cpp
g++ -O3 -std=c++11 -Wno-unused-result -lpthread -pthread -DVARIANT=1 -DHASH_FUNCTION=hashFunction_h1h2 -o bloom_faoso_std_h1h2 bloom_faoso.cpp xxhash.h xxhash.cpp -L ./ -I ./ -lrt
bloom_faoso_std_h1h2_th1: bloom_faoso.cpp bloom_faoso.h bloom.h common.h xxhash.h xxhash.cpp
g++ -O3 -std=c++11 -Wno-unused-result -lpthread -pthread -DVARIANT=1 -DNUMBER_OF_THREADS=1 -DHASH_FUNCTION=hashFunction_h1h2 -o bloom_faoso_std_h1h2_th1 bloom_faoso.cpp xxhash.h xxhash.cpp -L ./ -I ./ -lrt
bloom_faoso_std_h1h2_th2: bloom_faoso.cpp bloom_faoso.h bloom.h common.h xxhash.h xxhash.cpp
g++ -O3 -std=c++11 -Wno-unused-result -lpthread -pthread -DVARIANT=1 -DNUMBER_OF_THREADS=2 -DHASH_FUNCTION=hashFunction_h1h2 -o bloom_faoso_std_h1h2_th2 bloom_faoso.cpp xxhash.h xxhash.cpp -L ./ -I ./ -lrt
bloom_faoso_std_h1h2_th4: bloom_faoso.cpp bloom_faoso.h bloom.h common.h xxhash.h xxhash.cpp
g++ -O3 -std=c++11 -Wno-unused-result -lpthread -pthread -DVARIANT=1 -DNUMBER_OF_THREADS=4 -DHASH_FUNCTION=hashFunction_h1h2 -o bloom_faoso_std_h1h2_th4 bloom_faoso.cpp xxhash.h xxhash.cpp -L ./ -I ./ -lrt
bloom_faoso_std_h1h2_th6: bloom_faoso.cpp bloom_faoso.h bloom.h common.h xxhash.h xxhash.cpp
g++ -O3 -std=c++11 -Wno-unused-result -lpthread -pthread -DVARIANT=1 -DNUMBER_OF_THREADS=6 -DHASH_FUNCTION=hashFunction_h1h2 -o bloom_faoso_std_h1h2_th6 bloom_faoso.cpp xxhash.h xxhash.cpp -L ./ -I ./ -lrt
bloom_faoso_std_h1h2_th8: bloom_faoso.cpp bloom_faoso.h bloom.h common.h xxhash.h xxhash.cpp
g++ -O3 -std=c++11 -Wno-unused-result -lpthread -pthread -DVARIANT=1 -DNUMBER_OF_THREADS=8 -DHASH_FUNCTION=hashFunction_h1h2 -o bloom_faoso_std_h1h2_th8 bloom_faoso.cpp xxhash.h xxhash.cpp -L ./ -I ./ -lrt
bloom_faoso_std_h1h2_th10: bloom_faoso.cpp bloom_faoso.h bloom.h common.h xxhash.h xxhash.cpp
g++ -O3 -std=c++11 -Wno-unused-result -lpthread -pthread -DVARIANT=1 -DNUMBER_OF_THREADS=10 -DHASH_FUNCTION=hashFunction_h1h2 -o bloom_faoso_std_h1h2_th10 bloom_faoso.cpp xxhash.h xxhash.cpp -L ./ -I ./ -lrt
bloom_faoso_std_h1h2_th12: bloom_faoso.cpp bloom_faoso.h bloom.h common.h xxhash.h xxhash.cpp
g++ -O3 -std=c++11 -Wno-unused-result -lpthread -pthread -DVARIANT=1 -DNUMBER_OF_THREADS=12 -DHASH_FUNCTION=hashFunction_h1h2 -o bloom_faoso_std_h1h2_th12 bloom_faoso.cpp xxhash.h xxhash.cpp -L ./ -I ./ -lrt
bloom_faoso_eq_h1h2: bloom_faoso.cpp bloom_faoso.h bloom.h common.h xxhash.h xxhash.cpp
g++ -O3 -std=c++11 -Wno-unused-result -lpthread -pthread -DVARIANT=2 -DHASH_FUNCTION=hashFunction_h1h2 -o bloom_faoso_eq_h1h2 bloom_faoso.cpp xxhash.h xxhash.cpp -L ./ -I ./ -lrt
bloom_faoso_eq_h1h2_th1: bloom_faoso.cpp bloom_faoso.h bloom.h common.h xxhash.h xxhash.cpp
g++ -O3 -std=c++11 -Wno-unused-result -lpthread -pthread -DVARIANT=2 -DNUMBER_OF_THREADS=1 -DHASH_FUNCTION=hashFunction_h1h2 -o bloom_faoso_eq_h1h2_th1 bloom_faoso.cpp xxhash.h xxhash.cpp -L ./ -I ./ -lrt
bloom_faoso_eq_h1h2_th2: bloom_faoso.cpp bloom_faoso.h bloom.h common.h xxhash.h xxhash.cpp
g++ -O3 -std=c++11 -Wno-unused-result -lpthread -pthread -DVARIANT=2 -DNUMBER_OF_THREADS=2 -DHASH_FUNCTION=hashFunction_h1h2 -o bloom_faoso_eq_h1h2_th2 bloom_faoso.cpp xxhash.h xxhash.cpp -L ./ -I ./ -lrt
bloom_faoso_eq_h1h2_th4: bloom_faoso.cpp bloom_faoso.h bloom.h common.h xxhash.h xxhash.cpp
g++ -O3 -std=c++11 -Wno-unused-result -lpthread -pthread -DVARIANT=2 -DNUMBER_OF_THREADS=4 -DHASH_FUNCTION=hashFunction_h1h2 -o bloom_faoso_eq_h1h2_th4 bloom_faoso.cpp xxhash.h xxhash.cpp -L ./ -I ./ -lrt
bloom_faoso_eq_h1h2_th6: bloom_faoso.cpp bloom_faoso.h bloom.h common.h xxhash.h xxhash.cpp
g++ -O3 -std=c++11 -Wno-unused-result -lpthread -pthread -DVARIANT=2 -DNUMBER_OF_THREADS=6 -DHASH_FUNCTION=hashFunction_h1h2 -o bloom_faoso_eq_h1h2_th6 bloom_faoso.cpp xxhash.h xxhash.cpp -L ./ -I ./ -lrt
bloom_faoso_eq_h1h2_th8: bloom_faoso.cpp bloom_faoso.h bloom.h common.h xxhash.h xxhash.cpp
g++ -O3 -std=c++11 -Wno-unused-result -lpthread -pthread -DVARIANT=2 -DNUMBER_OF_THREADS=8 -DHASH_FUNCTION=hashFunction_h1h2 -o bloom_faoso_eq_h1h2_th8 bloom_faoso.cpp xxhash.h xxhash.cpp -L ./ -I ./ -lrt
bloom_faoso_eq_h1h2_th10: bloom_faoso.cpp bloom_faoso.h bloom.h common.h xxhash.h xxhash.cpp
g++ -O3 -std=c++11 -Wno-unused-result -lpthread -pthread -DVARIANT=2 -DNUMBER_OF_THREADS=10 -DHASH_FUNCTION=hashFunction_h1h2 -o bloom_faoso_eq_h1h2_th10 bloom_faoso.cpp xxhash.h xxhash.cpp -L ./ -I ./ -lrt
bloom_faoso_eq_h1h2_th12: bloom_faoso.cpp bloom_faoso.h bloom.h common.h xxhash.h xxhash.cpp
g++ -O3 -std=c++11 -Wno-unused-result -lpthread -pthread -DVARIANT=2 -DNUMBER_OF_THREADS=12 -DHASH_FUNCTION=hashFunction_h1h2 -o bloom_faoso_eq_h1h2_th12 bloom_faoso.cpp xxhash.h xxhash.cpp -L ./ -I ./ -lrt
bloom_faoso_eq_h1h2_all: bloom_faoso_eq_h1h2 bloom_faoso_eq_h1h2_th1 bloom_faoso_eq_h1h2_th2 bloom_faoso_eq_h1h2_th4 bloom_faoso_eq_h1h2_th6 bloom_faoso_eq_h1h2_th8 bloom_faoso_eq_h1h2_th10 bloom_faoso_eq_h1h2_th12
bloom_faoso_std_h1h2_all: bloom_faoso_std_h1h2 bloom_faoso_std_h1h2_th1 bloom_faoso_std_h1h2_th2 bloom_faoso_std_h1h2_th4 bloom_faoso_std_h1h2_th6 bloom_faoso_std_h1h2_th8 bloom_faoso_std_h1h2_th10 bloom_faoso_std_h1h2_th12
bloom_faoso_min_h1h2: bloom_faoso.cpp bloom_faoso.h bloom.h common.h xxhash.h xxhash.cpp
g++ -O3 -std=c++11 -Wno-unused-result -lpthread -pthread -DVARIANT=3 -DHASH_FUNCTION=hashFunction_h1h2 -o bloom_faoso_min_h1h2 bloom_faoso.cpp xxhash.h xxhash.cpp -L ./ -I ./ -lrt
bloom_faoso_min_h1h2_th1: bloom_faoso.cpp bloom_faoso.h bloom.h common.h xxhash.h xxhash.cpp
g++ -O3 -std=c++11 -Wno-unused-result -lpthread -pthread -DVARIANT=3 -DNUMBER_OF_THREADS=1 -DHASH_FUNCTION=hashFunction_h1h2 -o bloom_faoso_min_h1h2_th1 bloom_faoso.cpp xxhash.h xxhash.cpp -L ./ -I ./ -lrt
bloom_faoso_min_h1h2_th2: bloom_faoso.cpp bloom_faoso.h bloom.h common.h xxhash.h xxhash.cpp
g++ -O3 -std=c++11 -Wno-unused-result -lpthread -pthread -DVARIANT=3 -DNUMBER_OF_THREADS=2 -DHASH_FUNCTION=hashFunction_h1h2 -o bloom_faoso_min_h1h2_th2 bloom_faoso.cpp xxhash.h xxhash.cpp -L ./ -I ./ -lrt
bloom_faoso_min_h1h2_th4: bloom_faoso.cpp bloom_faoso.h bloom.h common.h xxhash.h xxhash.cpp
g++ -O3 -std=c++11 -Wno-unused-result -lpthread -pthread -DVARIANT=3 -DNUMBER_OF_THREADS=4 -DHASH_FUNCTION=hashFunction_h1h2 -o bloom_faoso_min_h1h2_th4 bloom_faoso.cpp xxhash.h xxhash.cpp -L ./ -I ./ -lrt
bloom_faoso_min_h1h2_th6: bloom_faoso.cpp bloom_faoso.h bloom.h common.h xxhash.h xxhash.cpp
g++ -O3 -std=c++11 -Wno-unused-result -lpthread -pthread -DVARIANT=3 -DNUMBER_OF_THREADS=6 -DHASH_FUNCTION=hashFunction_h1h2 -o bloom_faoso_min_h1h2_th6 bloom_faoso.cpp xxhash.h xxhash.cpp -L ./ -I ./ -lrt
bloom_faoso_min_h1h2_th8: bloom_faoso.cpp bloom_faoso.h bloom.h common.h xxhash.h xxhash.cpp
g++ -O3 -std=c++11 -Wno-unused-result -lpthread -pthread -DVARIANT=3 -DNUMBER_OF_THREADS=8 -DHASH_FUNCTION=hashFunction_h1h2 -o bloom_faoso_min_h1h2_th8 bloom_faoso.cpp xxhash.h xxhash.cpp -L ./ -I ./ -lrt
bloom_faoso_min_h1h2_th10: bloom_faoso.cpp bloom_faoso.h bloom.h common.h xxhash.h xxhash.cpp
g++ -O3 -std=c++11 -Wno-unused-result -lpthread -pthread -DVARIANT=3 -DNUMBER_OF_THREADS=10 -DHASH_FUNCTION=hashFunction_h1h2 -o bloom_faoso_min_h1h2_th10 bloom_faoso.cpp xxhash.h xxhash.cpp -L ./ -I ./ -lrt
bloom_faoso_min_h1h2_th12: bloom_faoso.cpp bloom_faoso.h bloom.h common.h xxhash.h xxhash.cpp
g++ -O3 -std=c++11 -Wno-unused-result -lpthread -pthread -DVARIANT=3 -DNUMBER_OF_THREADS=12 -DHASH_FUNCTION=hashFunction_h1h2 -o bloom_faoso_min_h1h2_th12 bloom_faoso.cpp xxhash.h xxhash.cpp -L ./ -I ./ -lrt
all: bloom_faoso_std_h1h2 bloom_faoso_eq_h1h2 bloom_faoso_min_h1h2 bloom_faoso_min_h1h2_th1 bloom_faoso_min_h1h2_th2 bloom_faoso_min_h1h2_th4 bloom_faoso_min_h1h2_th6 bloom_faoso_min_h1h2_th8 bloom_faoso_min_h1h2_th10 bloom_faoso_min_h1h2_th12 bloom_faoso_eq_h1h2_th1 bloom_faoso_eq_h1h2_th2 bloom_faoso_eq_h1h2_th4 bloom_faoso_eq_h1h2_th6 bloom_faoso_eq_h1h2_th8 bloom_faoso_eq_h1h2_th10 bloom_faoso_eq_h1h2_th12 bloom_faoso_std_h1h2_th1 bloom_faoso_std_h1h2_th2 bloom_faoso_std_h1h2_th4 bloom_faoso_std_h1h2_th6 bloom_faoso_std_h1h2_th8 bloom_faoso_std_h1h2_th10 bloom_faoso_std_h1h2_th12
clean:
rm -f bloom_faoso_std_h1h2 bloom_faoso_eq_h1h2 bloom_faoso_min_h1h2 bloom_faoso_min_h1h2_th1 bloom_faoso_min_h1h2_th2 bloom_faoso_min_h1h2_th4 bloom_faoso_min_h1h2_th6 bloom_faoso_min_h1h2_th8 bloom_faoso_min_h1h2_th10 bloom_faoso_min_h1h2_th12 bloom_faoso_eq_h1h2_th1 bloom_faoso_eq_h1h2_th2 bloom_faoso_eq_h1h2_th4 bloom_faoso_eq_h1h2_th6 bloom_faoso_eq_h1h2_th8 bloom_faoso_eq_h1h2_th10 bloom_faoso_eq_h1h2_th12 bloom_faoso_std_h1h2_th1 bloom_faoso_std_h1h2_th2 bloom_faoso_std_h1h2_th4 bloom_faoso_std_h1h2_th6 bloom_faoso_std_h1h2_th8 bloom_faoso_std_h1h2_th10 bloom_faoso_std_h1h2_th12