ScaleLoad.py 2.4 KB
Newer Older
Antoine Kaufmann's avatar
Antoine Kaufmann committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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.

Hejing Li's avatar
Hejing Li committed
23
24
25
26
27
import sys
import os
import pathlib
import shutil
import json
28
import math
Hejing Li's avatar
Hejing Li committed
29

30
num_runs = 3
Hejing Li's avatar
Hejing Li committed
31
if len(sys.argv) != 2:
Hejing Li's avatar
Hejing Li committed
32
    print('Usage: python3 ScaleLoad.py OUTDIR')
Hejing Li's avatar
Hejing Li committed
33
34
35
    sys.exit(1)

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

37
# FIXME: dropped 120 because it looks off
Hejing Li's avatar
Hejing Li committed
38
types_of_bw = [0, 100, 200, 300, 400, 500, 600, 700, 800, 900, 1000]
Hejing Li's avatar
Hejing Li committed
39
40

for bw in types_of_bw:
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
    total_time = 0
    avg_time = 0
    std = 0
    all_time = []
    for i in range(1, num_runs+1):
        log_path = '%sgt-ib-sw-Load-%dm-%d.json' % (basedir, bw, i)
        if os.path.exists(log_path):
            log = open(log_path, 'r')
            exp_log = json.load(log)
            start_time = exp_log["start_time"]
            end_time = exp_log["end_time"]
            diff_time = (end_time - start_time)/60 #min
            total_time += diff_time
            all_time.append(diff_time)
            diff_time = str(diff_time)

            log.close()
        else:
            diff_time = ''

        #print('%d\t%s' % (bw, diff_time))

    avg_time = total_time/num_runs
    #print('avg_time: ' + str(avg_time))
    

    for i in range(0, num_runs):
        std += (all_time[i] - avg_time) * (all_time[i] - avg_time)
    
    std = std/num_runs
    std = math.sqrt(std)
    #print(str(std))
    print('%d %s %f' % (bw, avg_time, std))
Hejing Li's avatar
Hejing Li committed
74
75