We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c357a87 commit 54071c6Copy full SHA for 54071c6
lib/results_table_builder.rb
@@ -146,10 +146,12 @@ def stddev_percent(values)
146
end
147
148
def compute_bench_names
149
- # Get keys from all rows in case a benchmark failed for only some executables
150
- all_bench_names = @bench_data.map { |k, v| v.keys }.flatten.uniq
151
benchmarks_metadata = YAML.load_file('benchmarks.yml')
152
- sort_benchmarks(all_bench_names, benchmarks_metadata)
+ sort_benchmarks(all_benchmark_names, benchmarks_metadata)
+ end
+
153
+ def all_benchmark_names
154
+ @bench_data.values.flat_map(&:keys).uniq
155
156
157
# Sort benchmarks with headlines first, then others, then micro
0 commit comments