# # Test Data from Marina Chip #13 # set terminal pdf set title "Vdd vs Energy Per Operation (at various speeds), Chip #13" set output "marina13-vdd.vs.energy.per.op.pdf" set xlabel "Vdd" set ylabel "PicoJoules Per Operation" plot 'marina13-data.txt' using ($1):(1000*($1*$4)/($3)) title "" with linespoints set title "Performance vs Energy Per Operation (at various Vdd), Chip #13" set output "marina13-performance.vs.energy.per.op.pdf" set xlabel "Giga Operations Per Second" set ylabel "PicoJoules Per Operation" plot 'marina13-data.txt' using ($3):(1000*($1*$4)/($3)) title "" with linespoints set title "Occupancy vs Energy Per Operation (at various Vdd 0.45v-3.00v), Chip #13" set output "marina13-occupancy.vs.energy.per.op.pdf" set xlabel "Occupancy" set ylabel "PicoJoules Per Operation" plot 'marina13-data.txt' using ($2):(1000*($1*$4)/($3)) title "" with linespoints set title "Occupancy vs Energy Per Operation (at minimum vdd=0.40), Chip #20" set output "superlow.pdf" set xlabel "Occupancy" set ylabel "PicoJoules Per Operation" set arrow 1 from 1.9,2.0 to 12,2.0 nohead linetype 4 lc rgb "#000000" set label 1 "2 picojoules/op" at 0.3,2.0 left plot 'superlow.txt' using ($2):(1000*($1*$4)/($3)) title "" with linespoints set title "Occupancy vs Energy Per Operation (at nominal vdd=1.00), Chip #20" set output "nominal.pdf" set xlabel "Occupancy" set ylabel "PicoJoules Per Operation" set arrow 1 from 1.9,2.0 to 12,2.0 nohead linetype 4 lc rgb "#000000" set label 1 "2 picojoules/op" at 0.3,2.0 left plot '< grep "^1.3 " marina13-data.txt' using ($2):(1000*($1*$4)/($3)) title "" with linespoints