Lines Matching refs:groups
2 """Groups memory by allocation sizes.
4 Takes a log entry and sorts sorts everything into groups based on what size
5 chunks the memory has been allocated in. groups is an array that contains the
10 timestamp, percent of memory in chunks < groups[0], percent between groups[0]
11 and groups[1], etc.
26 output_file = open('groups.csv', 'a')
29 groups = [1024, 8192, 65536, 524288, 4194304]
44 half_entry = (total_diff, [0] * (len(groups) + 1))
50 for cutoff_index in range(len(groups)):
51 if mem_per_sample <= groups[cutoff_index]:
54 if mem_per_sample > groups[-1]: