Home
last modified time | relevance | path

Searched refs:iter_counts (Results 1 – 7 of 7) sorted by relevance

/external/rust/crates/criterion/src/plot/gnuplot_backend/
Dpdf.rs22 let iter_counts = measurements.iter_counts(); in pdf() localVariable
23 let &max_iters = iter_counts in pdf()
106 .zip(iter_counts.iter()) in pdf()
140 .zip(iter_counts.iter()) in pdf()
174 .zip(iter_counts.iter()) in pdf()
/external/toolchain-utils/crosperf/
Dresults_report.py186 iter_counts = benchmark_results.iter_counts
190 iterations = iter_counts[bench_name]
216 iterations = benchmark_results.iter_counts[benchmark]
242 (table, new_keyvals, iter_counts) = SamplesTableGenerator(
244 benchmark_results.iter_counts, benchmark_results.weights).GetTable()
249 return (tables, new_keyvals, iter_counts)
273 self.benchmark_results.iter_counts = ret[2]
645 self.iter_counts = dict(benchmark_names_and_iterations)
/external/rust/crates/criterion/src/plot/plotters_backend/
Dpdf.rs186 let iter_counts = measurements.iter_counts(); in pdf() localVariable
187 let &max_iters = iter_counts in pdf()
281 .zip(iter_counts.iter()) in pdf()
/external/toolchain-utils/cros_utils/
Dtabulator_test.py143 iter_counts = {'bench1': 2, 'bench2': 2}
145 tg = tabulator.SamplesTableGenerator(keyvals, labels, iter_counts, weights)
Dtabulator.py240 def __init__(self, run_keyvals, label_list, iter_counts, weights): argument
243 self._iter_counts = iter_counts
/external/rust/crates/criterion/src/
Dcsv_report.rs43 for (count, measured_value) in data.iter_counts().iter().zip(data_scaled.into_iter()) { in write_data()
Dreport.rs45 pub fn iter_counts(&self) -> &Sample<f64> { in iter_counts() method