summaryrefslogtreecommitdiff
path: root/generate-speed
blob: 472c8f2bc87e1b06d787cbe524a342ba3373c730 (plain)
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
34
35
36
37
38
39
40
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
#!/usr/bin/python
# Copyright 2010  Lars Wirzenius
# 
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.


import cProfile
import sys
import time

import genbackupdatalib


def measure(repeats, func, arg, do_profile, profname):
    def helper():
        for i in range(repeats):
            func(arg)

    print 'measuring', profname
    start_time = time.time()
    start = time.clock()
    if do_profile:
        globaldict = globals().copy()
        localdict = locals().copy()
        cProfile.runctx('helper()', globaldict, localdict, 
                        '%s.prof' % profname)
    else:
        helper()
    end = time.clock()
    end_time = time.time()
    return end - start, end_time - start_time
    

def nop(size):
    pass
    

def main():
    repeats = int(sys.argv[1])
    size1 = int(sys.argv[2])
    do_profile = sys.argv[3] == 'yes'
    looptime = measure(repeats, nop, None, do_profile, 'calibrate')

    g = genbackupdatalib.DataGenerator(0)
    result = measure(repeats, g.generate, size1, do_profile, 'generate')
    
    def speed(result, i):
        total_data = repeats * size1
        return total_data / (result[i] - looptime[i])
    def humansize(size):
        return '%4.1f MiB/s' % (size / 1024 / 1024)
    def report(label, result):
        cpu, wall = result
        print '%-12s: %5.3f s (%8s)' % \
            (label, cpu, humansize(speed(result, 0)))
    report('generate', result)
    
if __name__ == '__main__':
    main()