add data for power from kessels counter
[fleet.git] / chips / marina / data / marina13-data.gnuplot
1 #
2 # Test Data from Marina Chip #13
3 #
4
5 set terminal pdf
6 set title "Vdd vs Energy Per Operation (at various speeds), Chip #13"
7 set output "marina13-vdd.vs.energy.per.op.pdf"
8 set xlabel "Vdd"
9 set ylabel "PicoJoules Per Operation"
10 plot 'marina13-data.txt' using ($1):(1000*($1*$4)/($3)) title "" with linespoints
11
12 set title "Performance vs Energy Per Operation (at various Vdd), Chip #13"
13 set output "marina13-performance.vs.energy.per.op.pdf"
14 set xlabel "Giga Operations Per Second"
15 set ylabel "PicoJoules Per Operation"
16 plot 'marina13-data.txt' using ($3):(1000*($1*$4)/($3)) title "" with linespoints
17
18 set title "Occupancy vs Energy Per Operation (at various Vdd 0.45v-3.00v), Chip #13"
19 set output "marina13-occupancy.vs.energy.per.op.pdf"
20 set xlabel "Occupancy"
21 set ylabel "PicoJoules Per Operation"
22 plot 'marina13-data.txt' using ($2):(1000*($1*$4)/($3)) title "" with linespoints
23
24 set title "Occupancy vs Energy Per Operation (at minimum vdd=0.40), Chip #20"
25 set output "superlow.pdf"
26 set xlabel "Occupancy"
27 set ylabel "PicoJoules Per Operation"
28 set arrow 1 from 1.9,2.0 to 12,2.0 nohead linetype 4 lc rgb "#000000"
29 set label 1 "2 picojoules/op" at 0.3,2.0 left
30 plot 'superlow.txt' using ($2):(1000*($1*$4)/($3)) title "" with linespoints
31
32 set title "Occupancy vs Energy Per Operation (at nominal vdd=1.00), Chip #20"
33 set output "nominal.pdf"
34 set xlabel "Occupancy"
35 set ylabel "PicoJoules Per Operation"
36 set arrow 1 from 1.9,2.0 to 12,2.0 nohead linetype 4 lc rgb "#000000"
37 set label 1 "2 picojoules/op" at 0.3,2.0 left
38 plot '< grep "^1.3 " marina13-data.txt' using ($2):(1000*($1*$4)/($3)) title "" with linespoints
39
40
41
42