Lines Matching refs:d_new
66 def diffResults(d_old, d_new): argument
76 if t in d_new:
81 if x not in d_old[t] and x not in d_new[t]:
85 if x in d_new[t]:
88 if d_new[t][x] != 'PASS':
91 if d_new[t][x] == 'PASS':
101 if x not in d_old[t] and x not in d_new[t]:
103 elif x not in d_new[t]:
108 if math.isnan(d_old[t][x]) and math.isnan(d_new[t][x]):
111 elif math.isnan(d_old[t][x]) and not math.isnan(d_new[t][x]):
114 elif not math.isnan(d_old[t][x]) and math.isnan(d_new[t][x]):
117 if d_new[t][x] > d_old[t][x] and d_old[t][x] > 0.0 and \
118 (d_new[t][x] - d_old[t][x]) / d_old[t][x] > .05:
119 …regressions[x] += t + ": " + "{0:.1f}".format(100 * (d_new[t][x] - d_old[t][x]) / d_old[t][x]) + "…
158 d_new = parse(sys.argv[2]) variable
160 diffResults(d_old, d_new)