2003-08-18 20:07:54 +00:00
|
|
|
set terminal png
|
|
|
|
|
|
|
|
##------- Plot small Date vs LOC ----
|
|
|
|
set output "running_loc.png"
|
2003-11-08 20:33:04 +00:00
|
|
|
set xlabel "Date"
|
|
|
|
set ylabel "Lines of Code"
|
2003-08-18 20:07:54 +00:00
|
|
|
set xdata time
|
2004-11-23 06:51:14 +00:00
|
|
|
set timefmt "%Y-%m-%d-%H:%M:%S:"
|
2003-08-20 15:33:33 +00:00
|
|
|
set format x "%b %d, %Y"
|
2003-08-18 20:07:54 +00:00
|
|
|
|
2003-08-19 14:27:44 +00:00
|
|
|
set size .75,.75
|
2004-07-06 17:04:09 +00:00
|
|
|
set xtics rotate
|
2004-07-05 19:09:32 +00:00
|
|
|
set xlabel 0,-1
|
2003-11-08 20:33:04 +00:00
|
|
|
plot "running_loc.txt" using 1:2 title '' with lines, \
|
2003-08-18 20:07:54 +00:00
|
|
|
"running_loc.txt" using 1:2 title "Date vs. Lines of Code" with lines
|
|
|
|
|
|
|
|
##------- Plot large Date vs LOC ----
|
|
|
|
set size 1.5,1.5
|
2004-07-05 19:09:32 +00:00
|
|
|
set xtics norotate
|
|
|
|
set xlabel 0,0
|
2003-08-18 20:07:54 +00:00
|
|
|
set output "running_loc_large.png"
|
|
|
|
plot "running_loc.txt" using 1:2 title '', \
|
|
|
|
"running_loc.txt" using 1:2 title "Date vs. Lines of Code" with lines
|
|
|
|
|
|
|
|
|
|
|
|
# Delete all labels...
|
|
|
|
set nolabel
|
|
|
|
|
2003-11-08 20:33:04 +00:00
|
|
|
##------- Olden CBE performance ----
|
|
|
|
|
|
|
|
set size .75,.75
|
2004-07-06 17:04:09 +00:00
|
|
|
set xtics rotate
|
2004-07-05 19:09:32 +00:00
|
|
|
set xlabel 0,-1
|
2003-11-08 20:33:04 +00:00
|
|
|
set output "running_Olden_cbe_time.png"
|
2003-11-08 20:48:39 +00:00
|
|
|
set ylabel "CBE compiled execution time (s)"
|
2003-11-08 20:33:04 +00:00
|
|
|
plot "running_Olden_cbe_time.txt" u 1:2 t '' with lines, \
|
|
|
|
"running_Olden_cbe_time.txt" u 1:2 t "bh" with lines, \
|
2005-10-02 21:51:38 +00:00
|
|
|
"running_Olden_cbe_time.txt" u 1:3 t "em3d" with lines, \
|
|
|
|
"running_Olden_cbe_time.txt" u 1:4 t "mst" with lines, \
|
|
|
|
"running_Olden_cbe_time.txt" u 1:5 t "power" with lines, \
|
|
|
|
"running_Olden_cbe_time.txt" u 1:6 t "tsp" with lines, \
|
|
|
|
"running_Olden_cbe_time.txt" u 1:7 t "bisort" with lines, \
|
|
|
|
"running_Olden_cbe_time.txt" u 1:8 t "health" with lines, \
|
|
|
|
"running_Olden_cbe_time.txt" u 1:9 t "perimeter" with lines, \
|
|
|
|
"running_Olden_cbe_time.txt" u 1:10 t "treeadd" with lines, \
|
2003-11-08 20:33:04 +00:00
|
|
|
"running_Olden_cbe_time.txt" u 1:11 t "voronoi" \
|
|
|
|
with lines
|
|
|
|
|
|
|
|
set size 1.5,1.5
|
2004-07-05 19:09:32 +00:00
|
|
|
set xtics norotate
|
|
|
|
set xlabel 0,0
|
2003-11-08 20:33:04 +00:00
|
|
|
set output "running_Olden_cbe_time_large.png"
|
|
|
|
plot "running_Olden_cbe_time.txt" u 1:2 t '' with lines, \
|
|
|
|
"running_Olden_cbe_time.txt" u 1:2 t "bh" with lines, \
|
2005-10-02 21:51:38 +00:00
|
|
|
"running_Olden_cbe_time.txt" u 1:3 t "em3d" with lines, \
|
|
|
|
"running_Olden_cbe_time.txt" u 1:4 t "mst" with lines, \
|
|
|
|
"running_Olden_cbe_time.txt" u 1:5 t "power" with lines, \
|
|
|
|
"running_Olden_cbe_time.txt" u 1:6 t "tsp" with lines, \
|
|
|
|
"running_Olden_cbe_time.txt" u 1:7 t "bisort" with lines, \
|
|
|
|
"running_Olden_cbe_time.txt" u 1:8 t "health" with lines, \
|
|
|
|
"running_Olden_cbe_time.txt" u 1:9 t "perimeter" with lines, \
|
|
|
|
"running_Olden_cbe_time.txt" u 1:10 t "treeadd" with lines, \
|
2003-11-08 20:33:04 +00:00
|
|
|
"running_Olden_cbe_time.txt" u 1:11 t "voronoi" \
|
|
|
|
with lines
|
|
|
|
|
|
|
|
##------- Olden JIT performance ----
|
|
|
|
|
|
|
|
set size .75,.75
|
2004-07-06 17:04:09 +00:00
|
|
|
set xtics rotate
|
2004-07-05 19:09:32 +00:00
|
|
|
set xlabel 0,-1
|
2003-11-08 20:33:04 +00:00
|
|
|
set output "running_Olden_jit_time.png"
|
2003-11-08 20:48:39 +00:00
|
|
|
set ylabel "JIT execution time (s)"
|
2003-11-08 20:33:04 +00:00
|
|
|
plot "running_Olden_jit_time.txt" u 1:2 t '' with lines, \
|
|
|
|
"running_Olden_jit_time.txt" u 1:2 t "bh" with lines, \
|
2005-10-02 21:51:38 +00:00
|
|
|
"running_Olden_jit_time.txt" u 1:3 t "em3d" with lines, \
|
|
|
|
"running_Olden_jit_time.txt" u 1:4 t "mst" with lines, \
|
|
|
|
"running_Olden_jit_time.txt" u 1:5 t "power" with lines, \
|
|
|
|
"running_Olden_jit_time.txt" u 1:6 t "tsp" with lines, \
|
|
|
|
"running_Olden_jit_time.txt" u 1:7 t "bisort" with lines, \
|
|
|
|
"running_Olden_jit_time.txt" u 1:8 t "health" with lines, \
|
|
|
|
"running_Olden_jit_time.txt" u 1:9 t "perimeter" with lines, \
|
|
|
|
"running_Olden_jit_time.txt" u 1:10 t "treeadd" with lines, \
|
2003-11-08 20:33:04 +00:00
|
|
|
"running_Olden_jit_time.txt" u 1:11 t "voronoi" \
|
|
|
|
with lines
|
|
|
|
|
|
|
|
set size 1.5,1.5
|
2004-07-05 19:09:32 +00:00
|
|
|
set xtics norotate
|
|
|
|
set xlabel 0,0
|
2003-11-08 20:33:04 +00:00
|
|
|
set output "running_Olden_jit_time_large.png"
|
|
|
|
plot "running_Olden_jit_time.txt" u 1:2 t '' with lines, \
|
|
|
|
"running_Olden_jit_time.txt" u 1:2 t "bh" with lines, \
|
2005-10-02 21:51:38 +00:00
|
|
|
"running_Olden_jit_time.txt" u 1:3 t "em3d" with lines, \
|
|
|
|
"running_Olden_jit_time.txt" u 1:4 t "mst" with lines, \
|
|
|
|
"running_Olden_jit_time.txt" u 1:5 t "power" with lines, \
|
|
|
|
"running_Olden_jit_time.txt" u 1:6 t "tsp" with lines, \
|
|
|
|
"running_Olden_jit_time.txt" u 1:7 t "bisort" with lines, \
|
|
|
|
"running_Olden_jit_time.txt" u 1:8 t "health" with lines, \
|
|
|
|
"running_Olden_jit_time.txt" u 1:9 t "perimeter" with lines, \
|
|
|
|
"running_Olden_jit_time.txt" u 1:10 t "treeadd" with lines, \
|
2003-11-08 20:33:04 +00:00
|
|
|
"running_Olden_jit_time.txt" u 1:11 t "voronoi" \
|
|
|
|
with lines
|
|
|
|
|
|
|
|
##------- Olden LLC performance ----
|
|
|
|
|
|
|
|
set size .75,.75
|
2004-07-06 17:04:09 +00:00
|
|
|
set xtics rotate
|
2004-07-05 19:09:32 +00:00
|
|
|
set xlabel 0,-1
|
2003-11-08 20:33:04 +00:00
|
|
|
set output "running_Olden_llc_time.png"
|
2003-11-08 20:48:39 +00:00
|
|
|
set ylabel "LLC compiled execution time (s)"
|
2003-11-08 20:33:04 +00:00
|
|
|
plot "running_Olden_llc_time.txt" u 1:2 t '' with lines, \
|
|
|
|
"running_Olden_llc_time.txt" u 1:2 t "bh" with lines, \
|
2005-10-02 21:51:38 +00:00
|
|
|
"running_Olden_llc_time.txt" u 1:3 t "em3d" with lines, \
|
|
|
|
"running_Olden_llc_time.txt" u 1:4 t "mst" with lines, \
|
|
|
|
"running_Olden_llc_time.txt" u 1:5 t "power" with lines, \
|
|
|
|
"running_Olden_llc_time.txt" u 1:6 t "tsp" with lines, \
|
|
|
|
"running_Olden_llc_time.txt" u 1:7 t "bisort" with lines, \
|
|
|
|
"running_Olden_llc_time.txt" u 1:8 t "health" with lines, \
|
|
|
|
"running_Olden_llc_time.txt" u 1:9 t "perimeter" with lines, \
|
|
|
|
"running_Olden_llc_time.txt" u 1:10 t "treeadd" with lines, \
|
2003-11-08 20:33:04 +00:00
|
|
|
"running_Olden_llc_time.txt" u 1:11 t "voronoi" \
|
|
|
|
with lines
|
|
|
|
|
|
|
|
set size 1.5,1.5
|
2004-07-05 19:09:32 +00:00
|
|
|
set xtics norotate
|
|
|
|
set xlabel 0,0
|
2003-11-08 20:33:04 +00:00
|
|
|
set output "running_Olden_llc_time_large.png"
|
|
|
|
plot "running_Olden_llc_time.txt" u 1:2 t '' with lines, \
|
|
|
|
"running_Olden_llc_time.txt" u 1:2 t "bh" with lines, \
|
2005-10-02 21:51:38 +00:00
|
|
|
"running_Olden_llc_time.txt" u 1:3 t "em3d" with lines, \
|
|
|
|
"running_Olden_llc_time.txt" u 1:4 t "mst" with lines, \
|
|
|
|
"running_Olden_llc_time.txt" u 1:5 t "power" with lines, \
|
|
|
|
"running_Olden_llc_time.txt" u 1:6 t "tsp" with lines, \
|
|
|
|
"running_Olden_llc_time.txt" u 1:7 t "bisort" with lines, \
|
|
|
|
"running_Olden_llc_time.txt" u 1:8 t "health" with lines, \
|
|
|
|
"running_Olden_llc_time.txt" u 1:9 t "perimeter" with lines, \
|
|
|
|
"running_Olden_llc_time.txt" u 1:10 t "treeadd" with lines, \
|
2003-11-08 20:33:04 +00:00
|
|
|
"running_Olden_llc_time.txt" u 1:11 t "voronoi" \
|
|
|
|
with lines
|
|
|
|
|
2003-08-18 20:07:54 +00:00
|
|
|
|
2003-11-08 20:33:04 +00:00
|
|
|
##------- Olden optimizer time ----
|
|
|
|
|
|
|
|
set size .75,.75
|
2004-07-06 17:04:09 +00:00
|
|
|
set xtics rotate
|
2004-07-05 19:09:32 +00:00
|
|
|
set xlabel 0,-1
|
2003-11-08 20:33:04 +00:00
|
|
|
set output "running_Olden_opt_time.png"
|
2003-11-08 20:48:39 +00:00
|
|
|
set ylabel "Time to run the optimizer (s)"
|
2003-11-08 20:33:04 +00:00
|
|
|
plot "running_Olden_opt_time.txt" u 1:2 t '' with lines, \
|
|
|
|
"running_Olden_opt_time.txt" u 1:2 t "bh" with lines, \
|
2005-10-02 21:51:38 +00:00
|
|
|
"running_Olden_opt_time.txt" u 1:3 t "em3d" with lines, \
|
|
|
|
"running_Olden_opt_time.txt" u 1:4 t "mst" with lines, \
|
|
|
|
"running_Olden_opt_time.txt" u 1:5 t "power" with lines, \
|
|
|
|
"running_Olden_opt_time.txt" u 1:6 t "tsp" with lines, \
|
|
|
|
"running_Olden_opt_time.txt" u 1:7 t "bisort" with lines, \
|
|
|
|
"running_Olden_opt_time.txt" u 1:8 t "health" with lines, \
|
|
|
|
"running_Olden_opt_time.txt" u 1:9 t "perimeter" with lines, \
|
|
|
|
"running_Olden_opt_time.txt" u 1:10 t "treeadd" with lines, \
|
2003-11-08 20:33:04 +00:00
|
|
|
"running_Olden_opt_time.txt" u 1:11 t "voronoi" \
|
|
|
|
with lines
|
|
|
|
|
|
|
|
set size 1.5,1.5
|
2004-07-05 19:09:32 +00:00
|
|
|
set xtics norotate
|
|
|
|
set xlabel 0,0
|
2003-11-08 20:33:04 +00:00
|
|
|
set output "running_Olden_opt_time_large.png"
|
|
|
|
plot "running_Olden_opt_time.txt" u 1:2 t '' with lines, \
|
|
|
|
"running_Olden_opt_time.txt" u 1:2 t "bh" with lines, \
|
2005-10-02 21:51:38 +00:00
|
|
|
"running_Olden_opt_time.txt" u 1:3 t "em3d" with lines, \
|
|
|
|
"running_Olden_opt_time.txt" u 1:4 t "mst" with lines, \
|
|
|
|
"running_Olden_opt_time.txt" u 1:5 t "power" with lines, \
|
|
|
|
"running_Olden_opt_time.txt" u 1:6 t "tsp" with lines, \
|
|
|
|
"running_Olden_opt_time.txt" u 1:7 t "bisort" with lines, \
|
|
|
|
"running_Olden_opt_time.txt" u 1:8 t "health" with lines, \
|
|
|
|
"running_Olden_opt_time.txt" u 1:9 t "perimeter" with lines, \
|
|
|
|
"running_Olden_opt_time.txt" u 1:10 t "treeadd" with lines, \
|
2003-11-08 20:33:04 +00:00
|
|
|
"running_Olden_opt_time.txt" u 1:11 t "voronoi" \
|
|
|
|
with lines
|
|
|
|
|
|
|
|
|
|
|
|
##------- Bytecode size ----
|
|
|
|
|
|
|
|
set size .75,.75
|
2004-07-06 17:04:09 +00:00
|
|
|
set xtics rotate
|
2004-07-05 19:09:32 +00:00
|
|
|
set xlabel 0,-1
|
2003-11-08 20:33:04 +00:00
|
|
|
set output "running_Olden_bytecode.png"
|
2003-11-08 20:48:39 +00:00
|
|
|
set ylabel "Program bytecode size (bytes)"
|
2003-11-08 20:33:04 +00:00
|
|
|
plot "running_Olden_bytecode.txt" u 1:2 t '' with lines, \
|
|
|
|
"running_Olden_bytecode.txt" u 1:2 t "bh" with lines, \
|
2005-10-02 21:51:38 +00:00
|
|
|
"running_Olden_bytecode.txt" u 1:3 t "em3d" with lines, \
|
|
|
|
"running_Olden_bytecode.txt" u 1:4 t "mst" with lines, \
|
|
|
|
"running_Olden_bytecode.txt" u 1:5 t "power" with lines, \
|
|
|
|
"running_Olden_bytecode.txt" u 1:6 t "tsp" with lines, \
|
|
|
|
"running_Olden_bytecode.txt" u 1:7 t "bisort" with lines, \
|
|
|
|
"running_Olden_bytecode.txt" u 1:8 t "health" with lines, \
|
|
|
|
"running_Olden_bytecode.txt" u 1:9 t "perimeter" with lines, \
|
|
|
|
"running_Olden_bytecode.txt" u 1:10 t "treeadd" with lines, \
|
2003-11-08 20:33:04 +00:00
|
|
|
"running_Olden_bytecode.txt" u 1:11 t "voronoi" \
|
|
|
|
with lines
|
|
|
|
|
|
|
|
set size 1.5,1.5
|
2004-07-05 19:09:32 +00:00
|
|
|
set xtics norotate
|
|
|
|
set xlabel 0,0
|
2003-11-08 20:33:04 +00:00
|
|
|
set output "running_Olden_bytecode_large.png"
|
|
|
|
plot "running_Olden_bytecode.txt" u 1:2 t '' with lines, \
|
|
|
|
"running_Olden_bytecode.txt" u 1:2 t "bh" with lines, \
|
2005-10-02 21:51:38 +00:00
|
|
|
"running_Olden_bytecode.txt" u 1:3 t "em3d" with lines, \
|
|
|
|
"running_Olden_bytecode.txt" u 1:4 t "mst" with lines, \
|
|
|
|
"running_Olden_bytecode.txt" u 1:5 t "power" with lines, \
|
|
|
|
"running_Olden_bytecode.txt" u 1:6 t "tsp" with lines, \
|
|
|
|
"running_Olden_bytecode.txt" u 1:7 t "bisort" with lines, \
|
|
|
|
"running_Olden_bytecode.txt" u 1:8 t "health" with lines, \
|
|
|
|
"running_Olden_bytecode.txt" u 1:9 t "perimeter" with lines, \
|
|
|
|
"running_Olden_bytecode.txt" u 1:10 t "treeadd" with lines, \
|
2003-11-08 20:33:04 +00:00
|
|
|
"running_Olden_bytecode.txt" u 1:11 t "voronoi" \
|
|
|
|
with lines
|