dctcp.py 1.07 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
import itertools
import sys
import utils.iperf

if len(sys.argv) != 2:
    print('Usage: dctcp.py OUTDIR')
    sys.exit(1)

basedir = sys.argv[1] + '/'

11
types_of_host = ['tb', 'gt', 'qt']
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
mtus = [1500, 4000]
max_k = 199680
k_step = 16640

configs = list(itertools.product(types_of_host, mtus))
confignames = [h + '-' + str(mtu) for h, mtu in configs]
print('\t'.join(['threshold'] + confignames))


for k_val in range(0, max_k + 1, k_step):
    line = [str(k_val)]
    for h, mtu in configs:
        path_pat = '%s%s-ib-dumbbell-DCTCPm%d-%d' % (basedir, h, k_val, mtu)
        res = utils.iperf.parse_iperf(path_pat)

        if res['avg'] is None:
            line.append('')
            continue

        tp = res['avg']
Hejing Li's avatar
Hejing Li committed
32
        # TP * (MTU ) / (MTU - IP (20) - TCP w/option (24))
Hejing Li's avatar
Hejing Li committed
33
34
35
36
37
        if (h == 'gt' or h == 'qt'):
            tp_calib = tp * (mtu) / (mtu - 20 - 24)
        else:
            # TP * (MTU + ETH(14) + PHY(24)) / (MTU - IP (20) - TCP w/option (24))
            tp_calib = tp * (mtu + 14 + 24) / (mtu - 20 - 24)
38
39
40
        line.append('%.2f' % (tp_calib))

    print('\t'.join(line))