aboutsummaryrefslogtreecommitdiffstats
path: root/plot_sched
diff options
context:
space:
mode:
authorBjoern Brandenburg <bbb@bbb1-cs.cs.unc.edu>2008-06-05 08:12:11 -0400
committerBjoern Brandenburg <bbb@bbb1-cs.cs.unc.edu>2008-06-05 08:12:11 -0400
commit156b45e57f3e5c91991a3fe7b026edf8c0a84aa4 (patch)
tree902e2e4615fedbb8eaff80c282d9475b256007f6 /plot_sched
parent48354b21ae13e4a653dba9c0435249ada6997659 (diff)
add G-EDF experiments support
Diffstat (limited to 'plot_sched')
-rwxr-xr-xplot_sched12
1 files changed, 11 insertions, 1 deletions
diff --git a/plot_sched b/plot_sched
index b955c85..5c657d0 100755
--- a/plot_sched
+++ b/plot_sched
@@ -102,6 +102,16 @@ case "$KIND" in
102 ;; 102 ;;
103 esac 103 esac
104 ;; 104 ;;
105 gedf)
106 YLABEL="schedulability"
107 YRANGE="set yrange [-0.1:1.1]"
108 PLOT="plot '$CSV1' using 1:2 title 'P-EDF' with linespoints, \
109 '$CSV1' using 1:3 title 'G-EDF [GFB]' with linespoints, \
110 '$CSV1' using 1:4 title 'G-EDF [BAK]' with linespoints, \
111 '$CSV1' using 1:5 title 'G-EDF [BCL]' with linespoints, \
112 '$CSV1' using 1:6 title 'G-EDF [SKB]' with linespoints \
113 "
114 ;;
105 *) 115 *)
106 YLABEL="" 116 YLABEL=""
107 YRANGE="" 117 YRANGE=""
@@ -114,7 +124,7 @@ XRANGE="set xrange [0.5:32.5]; set xtics 0, 2"
114 124
115BASE=`basename $CSV1 | sed -e s/.csv//g -e s/dist=//g ` 125BASE=`basename $CSV1 | sed -e s/.csv//g -e s/dist=//g `
116 126
117echo $BASE 127#echo $BASE
118 128
119if [ "$OUT" == "" ]; then 129if [ "$OUT" == "" ]; then
120 OUT="${BASE}.${EXT}" 130 OUT="${BASE}.${EXT}"