ns3-dctcp.sh 2.6 KB
Newer Older
1
#!/bin/bash
Antoine Kaufmann's avatar
Antoine Kaufmann committed
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright 2021 Max Planck Institute for Software Systems, and
# National University of Singapore
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

24

Hejing Li's avatar
Hejing Li committed
25
26
27
28
29
30
31
##### build dctcp-modes.cc example in ns-3
##### cp cp examples/tcp/dctcp-modes.cc scratch/dctcp-modes.cc
##### ./waf

##### ./ns3-dctcp.sh [num_core] 


32
33
EHSIM_BASE="$(readlink -f $(dirname ${BASH_SOURCE[0]})/../..)"
NS3_BASE="$EHSIM_BASE/ns-3"
Hejing Li's avatar
Hejing Li committed
34
OUTDIR_BASE="$EHSIM_BASE/experiments/pyexps"
35
36
37

cd $NS3_BASE
k_start=0
38
39
k_end=199680
k_step=2080
Hejing Li's avatar
Hejing Li committed
40
#k_end=199680
41
#k_step=8320
Hejing Li's avatar
Hejing Li committed
42
43
#mtus="1500 4000 9000"
mtus="1500"
44
45
46
# link latency corresponds to RTT latency 1us 10us 100us
#latencies="167ns 1670ns 16us 33us"
latencies="33us"
47
48
49
50
51
52
53
cores=$1

echo $cores

proc=0
pids=""

Hejing Li's avatar
Hejing Li committed
54
#for k in $(seq $k_start $k_step $k_end)
55
for lat in $latencies
56
do
57
    for m in $mtus
58
    do
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
        #echo $k
        #for m in 1500 4000 9000 # MTU size
        for k in $(seq $k_start $k_step $k_end)
        do
            echo "latency: $lat MtU: $m  K: $k  "
            ./cosim-dctcp-run.sh $k $m $lat &
            pid=$!
            pids="$pids $pid"
            proc=$(($proc + 1))
            
            if [ $proc -eq $cores ]; then
                for p in $pids; do
                    wait $p
                done
                proc=0
                pids=""

            fi
        done
78
79
80
    done
done

81
82
83
84
for p in $pids; do
    wait $p
done

85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105

cleanup() {
    echo Cleaning up
    for p in $pids ; do
        kill $p &>/dev/null
    done

    sleep 1
    for p in $pids ; do
        kill -KILL $p &>/dev/null
    done

}

sighandler() {
    echo "Caught Interrupt, aborting...."
    cleanup
    exit 1
}

trap "sighandler" SIGINT