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
|
#
# hackbench.py - class to manage an instance of hackbench load
#
# Copyright 2009 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 sys
import os
import time
import glob
import subprocess
from signal import SIGTERM
from signal import SIGKILL
sys.pathconf = "."
import load
class Hackbench(load.Load):
def __init__(self, builddir=None, srcdir=None, debug=False, num_cpus=1, params={}):
load.Load.__init__(self, "hackbench", builddir, srcdir, debug, num_cpus, params)
def __del__(self):
null = open("/dev/null", "w")
subprocess.call(['killall', '-9', 'hackbench'],
stdout=null, stderr=null)
os.close(null)
def setup(self):
mult = 1
if self.params.has_key('jobspercore'):
mult = int(self.params.jobspercore)
self.jobs = self.num_cpus * mult
def build(self):
self.ready = True
def runload(self):
self.args = ['hackbench', '-g', str(self.jobs)]
null = os.open("/dev/null", os.O_RDWR)
self.debug("starting loop (jobs: %d)" % self.jobs)
while not self.stopevent.isSet():
p = subprocess.Popen(self.args, stdin=null, stdout=null)
time.sleep(1.0)
if p.poll() != None:
p.wait()
self.debug("stopping")
if p.poll() == None:
os.kill(p.pid, SIGKILL)
p.wait()
self.debug("returning from runload()")
os.close(null)
def genxml(self, x):
x.taggedvalue('command_line', ' '.join(self.args), {'name':'hackbench'})
def create(builddir, srcdir, debug, num_cpus, params = {}):
return Hackbench(builddir, srcdir, debug, num_cpus, params)
|