Lines Matching refs:partition
135 (i.e. partition/filter into groups with common name)
185 def extract_field(partition, field_name):
187 lhs = [x[field_name] for x in partition[0]]
188 rhs = [x[field_name] for x in partition[1]]
256 for partition in partitions:
257 benchmark_name = partition[0][0]['name']
258 label = partition[0][0]['label'] if 'label' in partition[0][0] else ''
259 time_unit = partition[0][0]['time_unit']
263 for i in range(min(len(partition[0]), len(partition[1]))):
264 bn = partition[0][i]
265 other_bench = partition[1][i]
275 # After processing the whole partition, if requested, do the U test.
277 timings_cpu = extract_field(partition, 'cpu_time')
278 timings_time = extract_field(partition, 'real_time')
295 run_type = partition[0][0]['run_type'] if 'run_type' in partition[0][0] else ''
296 aggregate_name = partition[0][0]['aggregate_name'] if run_type == 'aggregate' and 'aggregate_name' in partition[0][0] else ''