summaryrefslogtreecommitdiffstats
path: root/rteval/cyclictest.py
blob: 977756dde831694b5a6f979984677bc91baf5b64 (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
#
#   cyclictest.py - object to manage a cyclictest executable instance
#
#   Copyright 2009,2010   Clark Williams <williams@redhat.com>
#
#   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 2 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, write to the Free Software
#   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
#
#   For the avoidance of doubt the "preferred form" of this code is one which
#   is in an open unpatent encumbered format. Where cryptographic key signing
#   forms part of the process of creating an executable the information
#   including keys needed to generate an equivalently functional executable
#   are deemed to be part of the source code.
#

import os
import sys
import subprocess
import tempfile
import time
import signal
import schedutils
from threading import *
import libxml2
import xmlout

class RunData(object):
    '''class to keep instance data from a cyclictest run'''
    def __init__(self, id, type, priority):
        self.id = id
        self.type = type
        self.priority = int(priority)
        self.description = ''
        # histogram of data
        self.samples = {}
        self.numsamples = 0
        self.min = 100000000
        self.max = 0
        self.stddev = 0.0
        self.mean = 0.0
        self.mode = 0.0
        self.median = 0.0
        self.range = 0.0
        self.mad = 0.0
        self.variance = 0.0

    def sample(self, value):
        self.samples[value] += self.samples.setdefault(value, 0) + 1
        if value > self.max: self.max = value
        if value < self.min: self.min = value
        self.numsamples += 1

    def bucket(self, index, value):
        self.samples[index] = self.samples.setdefault(index, 0) + value
        if value and index > self.max: self.max = index
        if value and index < self.min: self.min = index
        self.numsamples += value

    def reduce(self):
        import math

        # check to see if we have any samples and if we
        # only have 1 (or none) set the calculated values
        # to zero and return
        if self.numsamples <= 1:
            print "skipping %s (%d samples)" % (self.id, self.numsamples)
            self.variance = 0
            self.mad = 0
            self.stddev = 0
            return

        print "reducing %s" % self.id
        total = 0
        keys = self.samples.keys()
        keys.sort()
        sorted = []

        mid = self.numsamples / 2

        # mean, mode, and median
        occurances = 0
        lastkey = -1
        for i in keys:
            if mid > total and mid <= (total + self.samples[i]):
                if self.numsamples & 1 and mid == total+1:
                    self.median = (lastkey + i) / 2
                else:
                    self.median = i
            total += (i * self.samples[i])
            if self.samples[i] > occurances:
                occurances = self.samples[i]
                self.mode = i
        self.mean = float(total) / float(self.numsamples)

        # range
        for i in keys:
            if self.samples[i]:
                low = i
                break
        high = keys[-1]
        while high and self.samples[high] == 0:
            high -= 1
        self.range = high - low

        # Mean Absolute Deviation and Variance
        madsum = 0
        varsum = 0
        for i in keys:
            madsum += float(abs(float(i) - self.mean) * self.samples[i])
            varsum += float(((float(i) - self.mean) ** 2) * self.samples[i])
        self.mad = madsum / self.numsamples
        self.variance = varsum / (self.numsamples - 1)
        
        # standard deviation
        self.stddev = math.sqrt(self.variance)

    def genxml(self, x):
        if self.type == 'system':
            x.openblock(self.type, {'description':self.description})
        else:
            x.openblock(self.type, {'id': self.id, 'priority': self.priority})
        x.openblock('statistics')
        x.taggedvalue('samples', str(self.numsamples))
        x.taggedvalue('minimum', str(self.min), {"unit": "us"})
        x.taggedvalue('maximum', str(self.max), {"unit": "us"})
        x.taggedvalue('median', str(self.median), {"unit": "us"})
        x.taggedvalue('mode', str(self.mode), {"unit": "us"})
        x.taggedvalue('range', str(self.range), {"unit": "us"})
        x.taggedvalue('mean', str(self.mean), {"unit": "us"})
        x.taggedvalue('mean_absolute_deviation', str(self.mad), {"unit": "us"})
        x.taggedvalue('variance', str(self.variance), {"unit": "us"})
        x.taggedvalue('standard_deviation', str(self.stddev), {"unit": "us"})
        x.closeblock()
        h = libxml2.newNode('histogram')
        h.newProp('nbuckets', str(len(self.samples)))
        keys = self.samples.keys()
        keys.sort()
        for k in keys:
            b = libxml2.newNode('bucket')
            b.newProp('index', str(k))
            b.newProp('value', str(self.samples[k]))
            h.addChild(b)
        x.AppendXMLnodes(h)
        x.closeblock()


class Cyclictest(Thread):
    def __init__(self, params={}):
        Thread.__init__(self)
        self.duration = params.setdefault('duration', None)
        self.keepdata = params.setdefault('keepdata', False)
        self.stopevent = Event()
        self.finished = Event()
        self.threads = params.setdefault('threads', None)
        self.priority = int(params.setdefault('priority', 95))
        self.interval = int(params.setdefault('interval', 100))
        self.distance = int(params.setdefault('distance', 0))
        self.buckets =  int(params.setdefault('buckets', 2000))
        self.debugging = params.setdefault('debugging', False)
        self.reportfile = 'cyclictest.rpt'
        self.params = params
        f = open('/proc/cpuinfo')
        self.data = {}
        numcores = 0
        for line in f:
            if line.startswith('processor'):
                core = line.split()[-1]
                self.data[core] = RunData(core, 'core', self.priority)
                numcores += 1
            if line.startswith('model name'):
                desc = line.split(': ')[-1][:-1]
                self.data[core].description = ' '.join(desc.split())
        f.close()
        self.numcores = numcores
        self.data['system'] = RunData('system', 'system', self.priority)
        self.data['system'].description = ("(%d cores) " % numcores) + self.data['0'].description
        self.dataitems = len(self.data.keys())
        self.debug("system has %d cpu cores" % (self.dataitems - 1))
        self.numanodes = params.setdefault('numanodes', 0)

    def __del__(self):
        pass

    def debug(self, str):
        if self.debugging: print "cyclictest: %s" % str

    def getmode(self):
        if self.numanodes > 1:
            self.debug("running in NUMA mode (%d nodes)" % self.numanodes)
            return '--numa'
        self.debug("running in SMP mode")
        return '--smp'

    def run(self):

        self.cmd = ['cyclictest', 
                    '-qm', 
                    '-i %d' % self.interval,
                    '-d %d' % self.distance, 
                    '-h %d' % self.buckets,
                    "-p %d" % self.priority,
                    self.getmode(),
                    ]

        if self.threads:
            self.cmd.append("-t%d" % int(self.threads))

        self.debug("starting with cmd: %s" % " ".join(self.cmd))
        null = os.open('/dev/null', os.O_RDWR)
        c = subprocess.Popen(self.cmd, stdout=subprocess.PIPE, stderr=null, stdin=null)
        while True:
            if self.stopevent.isSet():
                break
            if c.poll():
                self.debug("process died! bailng out...")
                break
            time.sleep(1.0)
        self.debug("stopping")
        if c.poll() == None:
            os.kill(c.pid, signal.SIGINT)
        # now parse the histogram output
        for line in c.stdout:
            if line.startswith('#'): continue
            vals = line.split()
            index = int(vals[0])
            for i in range(0, len(self.data)-1):
                if str(i) not in self.data: continue
                self.data[str(i)].bucket(index, int(vals[i+1]))
                self.data['system'].bucket(index, int(vals[i+1]))
        for n in self.data.keys():
            self.data[n].reduce()
        self.finished.set()
        os.close(null)

    def genxml(self, x):
        x.openblock('cyclictest')
        x.taggedvalue('command_line', " ".join(self.cmd))

        self.data["system"].genxml(x)
        for t in range(0, self.numcores):
            if str(t) not in self.data: continue
            self.data[str(t)].genxml(x)
        x.closeblock()


if __name__ == '__main__':
    c = CyclicTest()
    c.run()