source: doc/papers/llheap/plotcacheS.gp

Last change on this file was 73475a5, checked in by Peter A. Buhr <pabuhr@…>, 4 weeks ago

updates for llheap paper

  • Property mode set to 100644
File size: 1.2 KB
Line 
1DIR=GRAPH
2SCALE=100000000
3set macros
4set output GRAPH.".cacheS.tex"
5#set pointsize 2.0
6set grid linetype 0
7set xtics (4,8,16,32)
8set logscale x
9set yrange [2:*]
10#set ytics 2
11#set format y "%3g"
12#set logscale y
13
14if ( GRAPH eq "prolog" ) {
15 set terminal pslatex size 1.25, 2.125 color solid 9;
16 set ylabel sprintf( "Elapse Time, sec.", SCALE ) # offset 1,0
17 set key maxrows 1 at screen 4.7, screen 1.03 samplen 0.1 font "Helvetica,18"
18 set title "ARM"
19} else {
20 set terminal pslatex size 1.15, 2.125 color solid 9;
21 set key off
22 if ( GRAPH eq "swift" ) {
23 set title "AMD"
24} else { if ( GRAPH eq "java" ) {
25 set title "Intel"
26} else {
27 print "unknown machine name"
28 exit
29}}}
30
31plot DIR."/cacheS" \
32 i 0 using 1:4 title columnheader(1) lt rgb "blue" pt 2 ps 2 lw 1, \
33 '' i 1 using 1:4 title columnheader(1) lt rgb "dark-green" pt 3 ps 2 lw 1, \
34 '' i 2 using 1:4 title columnheader(1) lt rgb "coral" pt 14 ps 2 lw 4, \
35 '' i 3 using 1:4 title columnheader(1) lt rgb "black" pt 16 ps 2 lw 2, \
36 '' i 4 using 1:4 title columnheader(1) lt rgb "red" pt 8 ps 2 lw 2, \
37 '' i 5 using 1:4 title columnheader(1) lt rgb "dark-violet" pt 10 ps 2 lw 1, \
38 '' i 6 using 1:4 title columnheader(1) lt rgb "brown" pt 4 ps 2 lw 1
Note: See TracBrowser for help on using the repository browser.