source: doc/theses/mike_brooks_MMath/plots/list-zoomin-abs-swift.gp

Last change on this file was 8eb85de, checked in by Michael Brooks <mlbrooks@…>, 7 weeks ago

Add data for Intel host 'java', alongside incumbent AMD host 'swift'.

Revise analysis--presentation to show both side by side. Remove presentation of CFA Attribution, which is now seen to be chasing a red herring.

Data continue to be from harness of commit 78bc398830.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1set terminal pdfcairo color enhanced size 3.625in,2.0in font "Times,17"
2
3set size 1.0, 1.0 # scale of plot area inside terminal
4set origin 0.0, 0.0 # bottom-left corner
5
6INDIR="build"
7OUTDIR="build"
8
9set macros
10set output OUTDIR."/plot-list-zoomin-abs-swift.pdf"
11
12set lmargin 10
13
14set grid
15unset key
16set logscale x 2
17set logscale y
18set yrange [1:15];
19set ytics (1,2,3,4,5,6,7,8,10,12,14)
20set xrange [0.75:180];
21# set xlabel "List length (item count)" offset 2,0
22set format x ""
23set ylabel "Duration (ns)" offset -3.0,0
24set errorbars 2.0
25set pointintervalbox 0
26
27plot INDIR."/plot-list-zoomin-abs-swift.dat" \
28 i 0 using ($1 * 0.98):8:4:5 title columnheader(1) with yerrorbars lt rgb "blue" pt 6 ps 0.85 lw 1, \
29 '' i 9 using ($1 * 0.94):8:4:5 title columnheader(1) with yerrorbars lt rgb "dark-orange" pt 8 ps 0.75 lw 1, \
30 '' i 8 using ($1 * 1.02):8:4:5 title columnheader(1) with yerrorbars lt rgb "magenta" pt 10 ps 0.85 lw 1, \
31 '' i 7 using ($1 * 1.06):8:4:5 title columnheader(1) with yerrorbars lt rgb "purple" pt 12 ps 1.0 lw 1
Note: See TracBrowser for help on using the repository browser.