-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplot_final-long-1.gp
More file actions
21 lines (21 loc) · 1.38 KB
/
plot_final-long-1.gp
File metadata and controls
21 lines (21 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
set title "Speedup compared to no-sort baseline" font ",22"
set ylabel "Speedup" font ",17"
set xlabel "Bloom Filter size (MB)" font ",17"
set grid ytics
set key font ",16"
set tics font ',14'
set key top left
set terminal pdfcairo size 6in,4in enhanced color font 'Helvetica,11' linewidth 2 rounded
set output "relative-lines-final-long-1.pdf"
set yrange [0.85:1.55]
set xrange [24.5:30.5]
set bmargin 4
set xtics ("4" 25, "8" 26, "16" 27, "32" 28, "64" 29, "128" 30)
plot \
"results/plots/final-long-1/CustomRangeMapping--no-sort-16-pbf.dat" using 1:2:3 with yerrorlines pt 1 ps 0.5 title "pbf", \
"results/plots/final-long-1/LdsRangeMapping--partial-lut-big-0-16.dat" using 1:2:3 with yerrorlines pt 2 ps 0.4 title "lds-partial-16", \
"results/plots/final-long-1/CustomRangeMapping--partial-lut-big-0-16.dat" using 1:2:3 with yerrorlines pt 8 ps 0.4 title "partial-16", \
"results/plots/final-long-1/CustomRangeMapping--partial-lut-small-1-0.dat" using 1:2:3 with yerrorlines pt 4 ps 0.4 title "partial-1", \
"results/plots/final-long-1/LdsRangeMapping--full-sort.dat" using 1:2:3 with yerrorlines pt 5 ps 0.4 title "lds-full-sort", \
"results/plots/final-long-1/CustomRangeMapping--full-sort.dat" using 1:2:3 with yerrorlines pt 6 ps 0.4 title "full-sort", \
"results/plots/final-long-1/CustomRangeMapping--no-sort.dat" using 1:2:3 with yerrorlines pt 7 ps 0.4 title "no-sort", \