Lines Matching refs:bench
50 def collect_data(infile, bench, it): argument
53 if bench not in config.bench_parser_dict:
55 raise ValueError('Wrong benchmark name: %s' % bench)
56 parse = config.bench_parser_dict[bench]
57 result_dict = parse(bench, fin)
61 def create_outfile(outfile, bench): argument
63 obj_null = {'data': {bench.lower(): []}, 'platforms': []}
67 def get_outfile(outfile, bench): argument
71 create_outfile(outfile, bench)
77 bench = arguments.bench
85 result += collect_data(infile, bench, i)
87 with get_outfile(outfile, bench) as fout:
90 obj['data'][bench.lower()].append(result)