Lines Matching refs:match
89 match = re.match("DRAM sweep with "
91 if match:
92 burst_size = int(match.groups(0)[0])
93 banks = int(match.groups(0)[1])
94 max_size = int(match.groups(0)[2])
109 match = re.match(".*busUtil\s+(\d+\.\d+)\s+#.*", line)
110 if match:
111 bus_util.append(float(match.groups(0)[0]))
113 match = re.match(".*peakBW\s+(\d+\.\d+)\s+#.*", line)
114 if match:
115 peak_bw.append(float(match.groups(0)[0]))
117 match = re.match(".*averagePower\s+(\d+\.?\d*)\s+#.*", line)
118 if match:
119 avg_pwr.append(float(match.groups(0)[0]))
125 print "Peak bandwidth, bus utilisation, and average power do not match"