-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpresent_plot_mem.gp
More file actions
21 lines (21 loc) · 1.3 KB
/
present_plot_mem.gp
File metadata and controls
21 lines (21 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
set title "Memory Access Distribution for 32MB Bloom filter\n 256M Queries" font ",18"
set ylabel "Memory Access counts (100K each)" font ",16"
set xlabel "Bit value in MB (Bins of 8KB)" font ",16"
set yrange [0:6]
set terminal pdfcairo size 5in,3in enhanced color font 'Helvetica,11' linewidth 2 rounded
set output "csbbf-sort.pdf"
set border linewidth 1
set key font ',14'
set tics font ',14'
set bmargin 4
set rmargin 4
plot \
"results/bins/bf_rm_no_sort.txt" using ($1/1000):($2/100) with lines lt 1 title "conventional-bf", \
"results/bins/bf_rm_part_0_16.txt" using ($1/1000):($2/100) with lines lt 4 title "partial-16", \
"results/bins/sbbf.txt" using ($1/1000):($2/100) with lines lt 3 title "sbbf", \
"results/bins/csbbf.txt" using ($1/1000):($2/100) with lines lt 2 title "csbbf", \
# "results/bins/bf_rm_full_sort.txt" using ($1/1000):($2/100) with lines lt 3 title "full-sort", \
# "results/bins/cbf_rm_no_sort.txt" using ($1/1000):($2/100) with lines lt 6 title "cbf", \
# "results/bins/pbf_rm_no_sort.txt" using ($1/1000):($2/100) with lines lt 7 title "pbf", \
# "results/bins/bf_lds_rm_full_sort.txt" using ($1/1000):($2/100) with lines lt 5 title "lds-full-sort", \
# "results/bins/bf_lds_rm_partial_0_0_16.txt" using ($1/1000):($2/100) with lines lt 6 title "lds-part-16", \