source: doc/theses/mike_brooks_MMath/plots/list-cmp-exout-swift.gp

stuck-waitfor-destruct
Last change on this file was 8eb85de, checked in by Michael Brooks <mlbrooks@…>, 6 days 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: 2.2 KB
Line 
1set terminal pdfcairo color enhanced size 3.625in,3.0in font "Times,17"
2
3# set size 1.0, 1.0 # scale of plot area inside terminal
4# set origin 0.0, 0.0 # bottom-left corner
5
6INDIR="build"
7OUTDIR="build"
8SRCDIR="plots"
9
10set output OUTDIR.'/plot-list-cmp-exout-swift.pdf'
11
12set xrange [1:9]
13set xlabel " " offset 0,-1,0
14set xtics offset 2.1,0
15
16set logscale y 2
17set yrange [0.3:2.0];
18set ytics ( \
19 "+40%%" 1.666666667, \
20 "+20%%" 1.25, \
21 "0" 1, \
22 "-20%%" 0.833333333, \
23 "-60%%" 0.625, \
24 "-100%%" 0.5, \
25 "-200%%" 0.333333333 \
26)
27set ylabel "Duration (tailq-Relative)" offset -1.0,0
28
29# Draw axis-like line at speedup=0% (y=1.0)
30set arrow from graph 0, first 1 to graph 1, first 1 nohead lt -1 lw 2
31
32set grid
33set key top center horizontal
34
35BOXSPACING=0.25
36BOXWIDTH=BOXSPACING * .88
37set boxwidth BOXWIDTH absolute
38
39NUM_FXS=3
40
41offset(opNum, fxNum) = opNum + fxNum * BOXSPACING - (NUM_FXS+1) * BOXSPACING / 2 + 0.5
42
43# One row, to plot one-off points
44$Singleton <<EOD
450
46EOD
47
48# empty candlesticks for quantiles, then
49# varyiously styled points for means, then
50# x axis values, then
51# legend symbol augmentation
52plot INDIR.'/plot-list-cmp-exout-swift.dat' \
53 using ($2 == 1 ? (offset($1, $2)) : 1/0):10:9:13:12 title 'cfa-cfa' with candlesticks lt rgb "blue" , \
54 '' using ($2 == 2 ? (offset($1, $2)) : 1/0):10:9:13:12 title 'upp-upp' with candlesticks lt rgb "dark-orange", \
55 '' using ($2 == 3 ? (offset($1, $2)) : 1/0):10:9:13:12 title 'lq-list' with candlesticks lt rgb "purple" , \
56 '' using ($2 == 1 ? (offset($1, $2)) : 1/0):4 notitle with points pt 7 lt rgb "blue" , \
57 '' using ($2 == 2 ? (offset($1, $2)) : 1/0):4 notitle with points pt 9 lt rgb "dark-orange", \
58 '' using ($2 == 3 ? (offset($1, $2)) : 1/0):4 notitle with points pt 13 lt rgb "purple" , \
59 SRCDIR.'/list-cmp-exout-meta.dat' \
60 using 1:(-999):xtic(2) notitle with points, \
61 $Singleton using (3.73):(7.50) notitle with points pt 7 lt rgb "blue" , \
62 $Singleton using (5.44):(7.50) notitle with points pt 9 lt rgb "dark-orange", \
63 $Singleton using (7.14):(7.50) notitle with points pt 13 lt rgb "purple"
Note: See TracBrowser for help on using the repository browser.