Lines Matching refs:run_count
247 def write_output(f, table, headers, run_count, format="table"):
256 summary_count = len(headers) - 2 * run_count - 1
257 floatfmt = ("",) + (".0f", ".2f") * run_count + (".2f",) * summary_count
264 def __init__(self, name, run_count):
266 self.durations = [0] * run_count
267 self.counts = [0] * run_count
317 def __init__(self, name, run_count):
319 self.run_count = run_count
336 self.data[name] = Row(name, self.run_count)
346 self.total_row = Row("Total", self.run_count)
350 for i in range(0, self.run_count)
354 for i in range(0, self.run_count)