• Home
  • Raw
  • Download

Lines Matching +full:baseline +full:- +full:file

4 compare.py - versatile benchmark output compare tool
21 output_file = find_benchmark_flag('--benchmark_out=', flags)
22 output_type = find_benchmark_flag('--benchmark_out_format=', flags)
24 print(("WARNING: '--benchmark_out=%s' will be passed to both "
30 print(("ERROR: passing '--benchmark_out_format=%s' to 'compare.py`"
44 help='The most simple use-case, compare all the output of these two benchmarks')
45 baseline = parser_a.add_argument_group(
46 'baseline', 'The benchmark baseline')
47 baseline.add_argument(
52 help='A benchmark executable or JSON output file')
54 'contender', 'The benchmark that will be compared against the baseline')
60 help='A benchmark executable or JSON output file')
69 baseline = parser_b.add_argument_group(
70 'baseline', 'The benchmark baseline')
71 baseline.add_argument(
76 help='A benchmark executable or JSON output file')
77 baseline.add_argument(
82 help='The first filter, that will be used as baseline')
84 'contender', 'The benchmark that will be compared against the baseline')
90 help='The second filter, that will be compared against the baseline')
100 baseline = parser_c.add_argument_group(
101 'baseline', 'The benchmark baseline')
102 baseline.add_argument(
107 help='A benchmark executable or JSON output file')
108 baseline.add_argument(
113 help='The first filter, that will be used as baseline')
115 'contender', 'The benchmark that will be compared against the baseline')
121 …elp='The second benchmark executable or JSON output file, that will be compared against the baseli…
127 help='The second filter, that will be compared against the baseline')
190 options_baseline = ['--benchmark_filter=%s' % filter_baseline]
191 options_contender = ['--benchmark_filter=%s' % filter_contender]
246 ['benchmarks', self.testInput0, self.testInput1, '--', 'e'])
272 ['filters', self.testInput0, 'c', 'd', '--', 'f'])
301 ['benchmarksfiltered', self.testInput0, 'c', self.testInput1, 'e', '--', 'g'])
315 # kate: tab-width: 4; replace-tabs on; indent-width 4; tab-indents: off;
316 # kate: indent-mode python; remove-trailing-spaces modified;