CMS 3D CMS Logo

Functions | Variables
heppy_loop Namespace Reference

Functions

def callBack (result)
 
def chunks (l, n)
 
def createOutputDir (dir, components, force)
 
def getHeppyOption (name, default=None)
 
def main (options, args, parser)
 
def runLoop (comp, outDir, config, options)
 
def runLoopAsync (comp, outDir, configName, options)
 
def setHeppyOption (name, value=True)
 
def split (comps)
 

Variables

 _heppyGlobalOptions
 
 action
 
 args
 
 argv
 
 default
 
 dest
 
 help
 
 loop
 
 oldv
 
 options
 
 parser
 
 type
 
 usage
 

Function Documentation

◆ callBack()

def heppy_loop.callBack (   result)

Definition at line 30 of file heppy_loop.py.

References print(), and str.

Referenced by cond::persistency::CoralMsgReporter.subscribe().

30 def callBack( result ):
31  pass
32  print('production done:', str(result))
33 
void print(TMatrixD &m, const char *label=nullptr, bool mathematicaFormat=false)
Definition: Utilities.cc:47
#define str(s)
def callBack(result)
Definition: heppy_loop.py:30

◆ chunks()

def heppy_loop.chunks (   l,
  n 
)

Definition at line 95 of file heppy_loop.py.

References isotrackApplyRegressor.range.

Referenced by split().

95 def chunks(l, n):
96  return [l[i:i+n] for i in range(0, len(l), n)]
97 
def chunks(l, n)
Definition: heppy_loop.py:95

◆ createOutputDir()

def heppy_loop.createOutputDir (   dir,
  components,
  force 
)
Creates the output dir, dealing with the case where dir exists.

Definition at line 68 of file heppy_loop.py.

References join(), and print().

Referenced by main().

68 def createOutputDir(dir, components, force):
69  '''Creates the output dir, dealing with the case where dir exists.'''
70  answer = None
71  try:
72  os.mkdir(dir)
73  return True
74  except OSError:
75  print('directory %s already exists' % dir)
76  print('contents: ')
77  dirlist = [path for path in os.listdir(dir) if os.path.isdir( '/'.join([dir, path]) )]
78  pprint( dirlist )
79  print('component list: ')
80  print([comp.name for comp in components])
81  if force is True:
82  print('force mode, continue.')
83  return True
84  else:
85  while answer not in ['Y','y','yes','N','n','no']:
86  answer = raw_input('Continue? [y/n]')
87  if answer.lower().startswith('n'):
88  return False
89  elif answer.lower().startswith('y'):
90  return True
91  else:
92  raise ValueError( ' '.join(['answer can not have this value!',
93  answer]) )
94 
void print(TMatrixD &m, const char *label=nullptr, bool mathematicaFormat=false)
Definition: Utilities.cc:47
static std::string join(char **cmd)
Definition: RemoteFile.cc:21
def createOutputDir(dir, components, force)
Definition: heppy_loop.py:68

◆ getHeppyOption()

def heppy_loop.getHeppyOption (   name,
  default = None 
)

Definition at line 129 of file heppy_loop.py.

129 def getHeppyOption(name,default=None):
130  global _heppyGlobalOptions
131  return _heppyGlobalOptions[name] if name in _heppyGlobalOptions else default
def getHeppyOption(name, default=None)
Definition: heppy_loop.py:129

◆ main()

def heppy_loop.main (   options,
  args,
  parser 
)

Definition at line 136 of file heppy_loop.py.

References createOutputDir(), SiStripPI.min, print(), runLoop(), and split().

136 def main( options, args, parser ):
137 
138  if len(args) != 2:
139  parser.print_help()
140  print('ERROR: please provide the processing name and the component list')
141  sys.exit(1)
142 
143  outDir = args[0]
144  if os.path.exists(outDir) and not os.path.isdir( outDir ):
145  parser.print_help()
146  print('ERROR: when it exists, first argument must be a directory.')
147  sys.exit(2)
148  cfgFileName = args[1]
149  if not os.path.isfile( cfgFileName ):
150  parser.print_help()
151  print('ERROR: second argument must be an existing file (your input cfg).')
152  sys.exit(3)
153 
154  if options.verbose:
155  import logging
156  logging.basicConfig(level=logging.INFO)
157 
158  # Propagate global options to _heppyGlobalOptions within this module
159  # I have to import it explicitly, 'global' does not work since the
160  # module is not set when executing the main
161  from PhysicsTools.HeppyCore.framework.heppy_loop import _heppyGlobalOptions
162  for opt in options.extraOptions:
163  if "=" in opt:
164  (key,val) = opt.split("=",1)
165  _heppyGlobalOptions[key] = val
166  else:
167  _heppyGlobalOptions[opt] = True
168 
169  file = open( cfgFileName, 'r' )
170  cfg = imp.load_source( 'PhysicsTools.HeppyCore.__cfg_to_run__', cfgFileName, file)
171 
172  selComps = [comp for comp in cfg.config.components if len(comp.files)>0]
173  selComps = split(selComps)
174  # for comp in selComps:
175  # print comp
176  if len(selComps)>options.ntasks:
177  print("WARNING: too many threads {tnum}, will just use a maximum of {jnum}.".format(tnum=len(selComps),jnum=options.ntasks))
178  if not createOutputDir(outDir, selComps, options.force):
179  print('exiting')
180  sys.exit(0)
181  if len(selComps)>1:
182  shutil.copy( cfgFileName, outDir )
183  pool = Pool(processes=min(len(selComps),options.ntasks))
184 
185  import PhysicsTools.HeppyCore.framework.heppy_loop as ML
186  for comp in selComps:
187  print('submitting', comp.name)
188  pool.apply_async( ML.runLoopAsync, [comp, outDir, 'PhysicsTools.HeppyCore.__cfg_to_run__', options],
189  callback=ML.callBack)
190  pool.close()
191  pool.join()
192  else:
193  # when running only one loop, do not use multiprocessor module.
194  # then, the exceptions are visible -> use only one sample for testing
195  global loop
196  loop = runLoop( comp, outDir, cfg.config, options )
197  return loop
198 
def split(comps)
Definition: heppy_loop.py:98
void print(TMatrixD &m, const char *label=nullptr, bool mathematicaFormat=false)
Definition: Utilities.cc:47
def runLoop(comp, outDir, config, options)
Definition: heppy_loop.py:46
def main(options, args, parser)
Definition: heppy_loop.py:136
def createOutputDir(dir, components, force)
Definition: heppy_loop.py:68

◆ runLoop()

def heppy_loop.runLoop (   comp,
  outDir,
  config,
  options 
)

Definition at line 46 of file heppy_loop.py.

References createfilelist.int, and join().

Referenced by main(), and runLoopAsync().

46 def runLoop( comp, outDir, config, options):
47  fullName = '/'.join( [outDir, comp.name ] )
48  # import pdb; pdb.set_trace()
49  config.components = [comp]
50  loop = Looper( fullName,
51  config,
52  options.nevents, 0,
53  nPrint = options.nprint,
54  timeReport = options.timeReport,
55  quiet = options.quiet)
56  # print loop
57  if options.iEvent is None:
58  loop.loop()
59  loop.write()
60  # print loop
61  else:
62  # loop.InitOutput()
63  iEvent = int(options.iEvent)
64  loop.process( iEvent )
65  return loop
66 
67 
def runLoop(comp, outDir, config, options)
Definition: heppy_loop.py:46
static std::string join(char **cmd)
Definition: RemoteFile.cc:21

◆ runLoopAsync()

def heppy_loop.runLoopAsync (   comp,
  outDir,
  configName,
  options 
)

Definition at line 34 of file heppy_loop.py.

References print(), and runLoop().

34 def runLoopAsync(comp, outDir, configName, options):
35  try:
36  loop = runLoop( comp, outDir, copy.copy(sys.modules[configName].config), options)
37  return loop.name
38  except Exception:
39  import traceback
40  print("ERROR processing component %s" % comp.name)
41  print(comp)
42  print("STACK TRACE: ")
43  print(traceback.format_exc())
44  raise
45 
def runLoopAsync(comp, outDir, configName, options)
Definition: heppy_loop.py:34
void print(TMatrixD &m, const char *label=nullptr, bool mathematicaFormat=false)
Definition: Utilities.cc:47
def runLoop(comp, outDir, config, options)
Definition: heppy_loop.py:46

◆ setHeppyOption()

def heppy_loop.setHeppyOption (   name,
  value = True 
)

Definition at line 132 of file heppy_loop.py.

132 def setHeppyOption(name,value=True):
133  global _heppyGlobalOptions
134  _heppyGlobalOptions[name] = value
135 
def setHeppyOption(name, value=True)
Definition: heppy_loop.py:132

◆ split()

def heppy_loop.split (   comps)

Definition at line 98 of file heppy_loop.py.

References chunks(), and isotrackApplyRegressor.range.

Referenced by main().

98 def split(comps):
99  # import pdb; pdb.set_trace()
100  splitComps = []
101  for comp in comps:
102  if hasattr( comp, 'fineSplitFactor') and comp.fineSplitFactor>1:
103  subchunks = list(range(comp.fineSplitFactor))
104  for ichunk, chunk in enumerate([(f,i) for f in comp.files for i in subchunks]):
105  newComp = copy.deepcopy(comp)
106  newComp.files = [chunk[0]]
107  newComp.fineSplit = ( chunk[1], comp.fineSplitFactor )
108  newComp.name = '{name}_Chunk{index}'.format(name=newComp.name,
109  index=ichunk)
110  splitComps.append( newComp )
111  elif hasattr( comp, 'splitFactor') and comp.splitFactor>1:
112  chunkSize = len(comp.files) / comp.splitFactor
113  if len(comp.files) % comp.splitFactor:
114  chunkSize += 1
115  # print 'chunk size',chunkSize, len(comp.files), comp.splitFactor
116  for ichunk, chunk in enumerate( chunks( comp.files, chunkSize)):
117  newComp = copy.deepcopy(comp)
118  newComp.files = chunk
119  newComp.name = '{name}_Chunk{index}'.format(name=newComp.name,
120  index=ichunk)
121  splitComps.append( newComp )
122  else:
123  splitComps.append( comp )
124  return splitComps
125 
126 
def split(comps)
Definition: heppy_loop.py:98
def chunks(l, n)
Definition: heppy_loop.py:95

Variable Documentation

◆ _heppyGlobalOptions

heppy_loop._heppyGlobalOptions
private

Definition at line 127 of file heppy_loop.py.

◆ action

heppy_loop.action

Definition at line 27 of file heppy_loop.py.

◆ args

heppy_loop.args

Definition at line 62 of file heppy_loop.py.

◆ argv

heppy_loop.argv

Definition at line 19 of file heppy_loop.py.

◆ default

heppy_loop.default

Definition at line 16 of file heppy_loop.py.

◆ dest

heppy_loop.dest

Definition at line 13 of file heppy_loop.py.

◆ help

heppy_loop.help

Definition at line 15 of file heppy_loop.py.

◆ loop

◆ oldv

heppy_loop.oldv

Definition at line 18 of file heppy_loop.py.

◆ options

heppy_loop.options

Definition at line 62 of file heppy_loop.py.

◆ parser

heppy_loop.parser

Definition at line 5 of file heppy_loop.py.

◆ type

heppy_loop.type

Definition at line 14 of file heppy_loop.py.

◆ usage

heppy_loop.usage

Definition at line 6 of file heppy_loop.py.