source: doc/theses/mike_brooks_MMath/plots/list-zoomout-shuf.gp

Last change on this file was 6c58850, checked in by Michael Brooks <mlbrooks@…>, 6 weeks ago

Revise data in linked-list plots with streamlined harness and data from runs on swift.

No change to text discussing the plots, so some of that discussion is now stale.

Harness changes allow more ifdef feature disabling and eliminate side-array usage, keeping all per-node harness state inside the list nodes.

Completely disable the interleaving experiment, which was not giving discernable data.

  • Property mode set to 100644
File size: 804 bytes
RevLine 
[16a843b]1set terminal pdf color enhanced size 6.0in,3.0in font "Times,17"
2
3INDIR="build"
4OUTDIR="build"
5
6set macros
7set output OUTDIR."/plot-list-zoomout-shuf.pdf"
8
9set grid
10set key top left
11set logscale x
[6c58850]12set logscale y
13set yrange [1:1000];
[16a843b]14set xlabel "List length (item count)" offset 2,0
15set ylabel "Duration (ns)"
16set linetype 3 dashtype 2
17set linetype 4 dashtype 2
18
19plot INDIR."/plot-list-zoomout-shuf.dat" \
20 i 2 using 1:2 title "STL" with points lt rgb "forest-green" pt 3 ps 1 lw 1, \
21 '' i 0 using 1:2 title "intrusives" with points lt rgb "black" pt 1 ps 1 lw 1, \
22 '' i 1 using 1:2 notitle with points lt rgb "black" pt 1 ps 1 lw 1, \
23 '' i 3 using 1:2 notitle with points lt rgb "black" pt 1 ps 1 lw 1, \
24 '' i 4 using 1:2 notitle with points lt rgb "black" pt 1 ps 1 lw 1
Note: See TracBrowser for help on using the repository browser.