-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun-figure4-parallel
More file actions
executable file
·33 lines (21 loc) · 1.37 KB
/
run-figure4-parallel
File metadata and controls
executable file
·33 lines (21 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/perl -w
use strict;
use Cwd;
my $dir = getcwd;
my $whiskerdir = $dir . q{/../../../queue/kemy/jrats/};
print qq{doing: rm $dir/results/* -rf};
system qq{rm $dir/results/* -rf};
my $iterations = 1;
my $src_proto = "TCP";
for my $nsrc ( 8 ) { # maximum degree of multiplexing
system qq{python2.6 runkemy.py -c kemyconf/dumbbell-buf1000-rtt150-bneck15.tcl -d results/Dumbbell -q DropTail -p $src_proto -n $nsrc -a $iterations &};
system qq{python2.6 runkemy.py -c kemyconf/dumbbell-buf1000-rtt150-bneck15.tcl -d results/Dumbbell -q RED -p $src_proto -n $nsrc -a $iterations &};
system qq{python2.6 runkemy.py -c kemyconf/dumbbell-buf1000-rtt150-bneck15.tcl -d results/Dumbbell -q Blue -p $src_proto -n $nsrc -a $iterations &};
system qq{python2.6 runkemy.py -c kemyconf/dumbbell-buf1000-rtt150-bneck15.tcl -d results/Dumbbell -q CoDel -p $src_proto -n $nsrc -a $iterations &};
$ENV{ WHISKERS } = $whiskerdir . q{delta1-alpha0.5-1d-gen.1};
system qq{python2.6 runkemy.py -c ./kemyconf/dumbbell-buf1000-rtt150-bneck15.tcl -d results/Dumbbell-kemyqueue-delta1 -q KEMY -p $src_proto -n $nsrc -a $iterations &};
}
#chdir qq{$dir/../graphing-scripts} or die "chdir to ../graphing-scripts error:$!";
#system qq{./graphmaker ../congctrl/results/};
#chdir $dir or die "chdir to $dir error:$!";
#system qq{display ./results/graphdir/graph-8.png};