Lines Matching refs:opts
51 self.opts = defaultOptions
66 def optionsToString(self, **opts): argument
69 for key,value in opts.items():
98 def run(self, numProcs = 1, log = True, **opts): argument
106 ….example(self.library, self.num), self.optionsToString(**self.opts), self.optionsToString(**opts)])
107 if 'batch' in opts and opts['batch']:
108 del opts['batch']
110 …pt(self.num, numProcs, 120, ' '+self.optionsToString(**self.opts)+' '+self.optionsToString(**opts))
428 def processOptions(opts, name, n): argument
430 for key, val in opts.items():
431 val = opts[key]
439 def getLogName(opts): argument
440 if 'log_view' in opts:
441 val = opts['log_view']
448 def run_DMDA(ex, name, opts, args, sizes, times, events, log=True, execute=True): argument
450 newopts = processOptions(opts, name, n)
456 def run_DMPlex(ex, name, opts, args, sizes, times, events, log=True, execute=True): argument
457 newopts = processOptions(opts, name, args.refine)
535 …opts = dict([t if len(t) == 2 else (t[0], None) for t in [arg.split('=', 1) for arg in stropts.spl… variable
537 opts['log_view'] = 'summary.dat' if args.batch else ':'+args.module+'%s%d.csv:ascii_csv'
538 meshExp[name] = float(opts['meshExp'])
539 timeExp[name] = float(opts['timeExp'])
544 …getattr(__main__, 'run_'+args.dmType)(ex, name, opts, args, sizes, times, events, log=log, execute…