The Gaudi Framework  v30r3 (a5ef0a68)
brunelWrapper Namespace Reference

Functions

def createParser ()
 
def replaceValues (cfg_name, n, eif, aif, nthreads, scale, clone, dumpQueues, verbosity)
 

Variables

 options = createParser()
 
 newcfg
 
 logfile = newcfg.replace(".py", ".log")
 
string gaudirun = "`alias gaudirun`"
 
string command = "/usr/bin/time -f %%S -o timing_%s %s %s >& %s "
 

Detailed Description

This script acts as a wrapper in order to generate Gaudi configs for running 
with different parameters in order to perform performance measurements.
It takes command line arguments.

Function Documentation

def brunelWrapper.createParser ( )

Definition at line 20 of file brunelWrapper.py.

21  usage = "%prog [options]"
22  parser = optparse.OptionParser(usage)
23  parser.add_option('-n', help='Number of events', dest='nevts', default=15)
24  parser.add_option('--eif', help='Events in flight', dest='eif', default=5)
25  parser.add_option('--aif', help='Algos in flight', dest='aif', default=10)
26  parser.add_option('--nthreads', help='Number of threads',
27  dest='nthreads', default=10)
28  parser.add_option('--clone', help='Clone Algos',
29  dest='clone', action='store_true', default=False)
30  parser.add_option('--dumpQueues', help='Dump Queues',
31  dest='dumpqueues', action='store_true', default=False)
32  parser.add_option('-v', help='Verbosity level',
33  dest='verbosity', default=5)
34  parser.add_option('--exec', help='ExecuteWorkflow',
35  dest='execbrunel', action='store_true', default=False)
36  parser.add_option('--bg', help='Launch in background',
37  dest='bg', action='store_true', default=False)
38  parser.add_option('--scale', help='Scale Algorithms time',
39  dest='scale', default=1)
40  options, args = parser.parse_args()
41  return options
42 
43 
def createParser()
def brunelWrapper.replaceValues (   cfg_name,
  n,
  eif,
  aif,
  nthreads,
  scale,
  clone,
  dumpQueues,
  verbosity 
)

Definition at line 44 of file brunelWrapper.py.

44 def replaceValues(cfg_name, n, eif, aif, nthreads, scale, clone, dumpQueues, verbosity):
45 
46  newcfglines = open(cfg_name, "r").readlines()
47  cfg_name = cfg_name.replace(".py", "")
48  verb = ""
49  if verbosity != 6:
50  verb = "_v%s" % verbosity
51  scale_s = ""
52  if scale != 1:
53  scale_s = "_s%s" % scale
54  newcfgname = "measurement_%s_n%s_eif%s_aif%s_nthreads%s_c%s_dq%s%s%s.py" % (
55  cfg_name, n, eif, aif, nthreads, clone, dumpQueues, scale_s, verb)
56  newcfg = open(newcfgname, "w")
57  for line in newcfglines:
58  if ('NumberOfEvents' in line and 'NUMBEROFEVENTS' in line and not "FLIGHT" in line):
59  line = line.replace("NUMBEROFEVENTS", str(n))
60  if ('NumberOfEventsInFlight' in line and 'NUMBEROFEVENTSINFLIGHT' in line):
61  line = line.replace("NUMBEROFEVENTSINFLIGHT", str(eif))
62  if ('NumberOfAlgosInFlight' in line and 'NUMBEROFALGOSINFLIGHT' in line):
63  line = line.replace("NUMBEROFALGOSINFLIGHT", str(aif))
64  if ('NumberOfThreads' in line and 'NUMBEROFTHREADS' in line):
65  line = line.replace("NUMBEROFTHREADS", str(nthreads))
66  if ('DumpQueues'in line and 'DUMPQUEUES' in line):
67  line = line.replace("DUMPQUEUES", str(dumpQueues))
68  if ('CloneAlgos'in line and 'CLONEALGOS' in line):
69  line = line.replace("CLONEALGOS", str(clone))
70  if ('Verbosity'in line and 'VERBOSITY' in line):
71  line = line.replace("VERBOSITY", str(verbosity))
72  if ('Scale'in line and 'SCALE' in line):
73  line = line.replace("SCALE", str(scale))
74  newcfg.write(line)
75  newcfg.close()
76  return newcfgname
77 
78 
def replaceValues(cfg_name, n, eif, aif, nthreads, scale, clone, dumpQueues, verbosity)

Variable Documentation

string brunelWrapper.command = "/usr/bin/time -f %%S -o timing_%s %s %s >& %s "

Definition at line 94 of file brunelWrapper.py.

string brunelWrapper.gaudirun = "`alias gaudirun`"

Definition at line 92 of file brunelWrapper.py.

brunelWrapper.logfile = newcfg.replace(".py", ".log")

Definition at line 91 of file brunelWrapper.py.

brunelWrapper.newcfg
Initial value:
1 = replaceValues("BrunelScenario.py",
2  options.nevts,
3  options.eif,
4  options.aif,
5  options.nthreads,
6  float(options.scale),
7  options.clone,
8  options.dumpqueues,
9  options.verbosity)
def replaceValues(cfg_name, n, eif, aif, nthreads, scale, clone, dumpQueues, verbosity)

Definition at line 81 of file brunelWrapper.py.

brunelWrapper.options = createParser()

Definition at line 80 of file brunelWrapper.py.