diff options
author | Bjoern Brandenburg <bbb@bbb1-cs.cs.unc.edu> | 2008-06-05 08:12:11 -0400 |
---|---|---|
committer | Bjoern Brandenburg <bbb@bbb1-cs.cs.unc.edu> | 2008-06-05 08:12:11 -0400 |
commit | 156b45e57f3e5c91991a3fe7b026edf8c0a84aa4 (patch) | |
tree | 902e2e4615fedbb8eaff80c282d9475b256007f6 /plot_sched | |
parent | 48354b21ae13e4a653dba9c0435249ada6997659 (diff) |
add G-EDF experiments support
Diffstat (limited to 'plot_sched')
-rwxr-xr-x | plot_sched | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -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 | ||
115 | BASE=`basename $CSV1 | sed -e s/.csv//g -e s/dist=//g ` | 125 | BASE=`basename $CSV1 | sed -e s/.csv//g -e s/dist=//g ` |
116 | 126 | ||
117 | echo $BASE | 127 | #echo $BASE |
118 | 128 | ||
119 | if [ "$OUT" == "" ]; then | 129 | if [ "$OUT" == "" ]; then |
120 | OUT="${BASE}.${EXT}" | 130 | OUT="${BASE}.${EXT}" |