source: doc/papers/llheap/plotreallocsim.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
RevLine 
[73475a5]1DIR=GRAPH
2SCALE=100000000
3set macros
4set output GRAPH.".reallocsim.tex"
5#set pointsize 2.0
6set grid linetype 0
7set xtics (32,64,128,256)
8set logscale x
9#set yrange [5:1000]
10#set ytics (5,10,25,100,250,1000)
11#set format y "%4g"
12#set logscale y
13
14if ( GRAPH eq "prolog" ) {
15 set terminal pslatex size 1.2, 2.125 color solid 9;
16# set ylabel sprintf( "Elapse Time, sec.", SCALE ) offset 1,0
17# set key maxrows 1 at screen 4.5, screen 1.03 samplen 1 font "Helvetica,18"
18 set key off
19 set title "ARM"
20} else {
21 set terminal pslatex size 1.2, 2.125 color solid 9;
22 set key off
23 if ( GRAPH eq "swift" ) {
24 set title "AMD"
25} else { if ( GRAPH eq "java" ) {
26 set title "Intel"
27} else {
28 print "unknown machine name"
29 exit
30}}}
31
32plot DIR."/reallocsim" \
33 i 0 using 2:5 title columnheader(1) lt rgb "blue" pt 2 ps 2 lw 1, \
34 '' i 1 using 2:5 title columnheader(1) lt rgb "dark-green" pt 3 ps 2 lw 1, \
35 '' i 2 using 2:5 title columnheader(1) lt rgb "coral" pt 14 ps 2 lw 4, \
36 '' i 3 using 2:5 title columnheader(1) lt rgb "black" pt 16 ps 2 lw 2, \
37 '' i 4 using 2:5 title columnheader(1) lt rgb "red" pt 8 ps 2 lw 2, \
38 '' i 5 using 2:5 title columnheader(1) lt rgb "dark-violet" pt 10 ps 2 lw 1, \
39 '' i 6 using 2:5 title columnheader(1) lt rgb "brown" pt 4 ps 2 lw 1
Note: See TracBrowser for help on using the repository browser.