Lines Matching refs:config
45 help="suffix to append on config (e.g. '_before', '_after')")
70 __argparse.add_argument('-c', '--config',
190 def run_warmup(cls, warmup_time, config):
195 '--config', config,
207 def __init__(self, src, config, max_stddev, best_result=None):
209 self.config = config
230 commandline = self.ARGV + ['--config', self.config,
234 pngfile = _path.join(FLAGS.write_path, self.config,
279 (result.config, result.bench, self.best_result.stddev,
300 benches = collections.deque([(src, config, FLAGS.max_stddev)
302 for config in configs])
319 print("WARNING: no result for %s with config %s" %
320 (skpbench.src, skpbench.config), file=sys.stderr)
327 (skpbench.best_result.config, skpbench.best_result.bench,
331 benches.append((skpbench.src, skpbench.config, retry_max_stddev,
350 configs = re.split(DELIMITER, FLAGS.config)