forked from danielwood95/heavyHitters
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrunHash.sh
More file actions
executable file
·27 lines (27 loc) · 1.02 KB
/
runHash.sh
File metadata and controls
executable file
·27 lines (27 loc) · 1.02 KB
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
echo "eviction rate = 1"
python hashPipe.py 1 > resultsHash5.txt
python countFalseNegatives.py resultsHash5.txt
echo "eviction rate = 0.5"
python hashPipe.py 0.5 > resultsHash5.txt
python countFalseNegatives.py resultsHash5.txt
echo "eviction rate = 0.3"
python hashPipe.py 0.3 > resultsHash5.txt
python countFalseNegatives.py resultsHash5.txt
echo "eviction rate = 0.1"
python hashPipe.py 0.1 > resultsHash5.txt
python countFalseNegatives.py resultsHash5.txt
echo "eviction rate = 0.07"
python hashPipe.py 0.07 > resultsHash5.txt
python countFalseNegatives.py resultsHash5.txt
echo "eviction rate = 0.05"
python hashPipe.py 0.05 > resultsHash5.txt
python countFalseNegatives.py resultsHash5.txt
echo "eviction rate = 0.04"
python hashPipe.py 0.04 > resultsHash5.txt
python countFalseNegatives.py resultsHash5.txt
echo "eviction rate = 0.02"
python hashPipe.py 0.02 > resultsHash5.txt
python countFalseNegatives.py resultsHash5.txt
echo "eviction rate = 0.01"
python hashPipe.py 0.01 > resultsHash5.txt
python countFalseNegatives.py resultsHash5.txt