Home
last modified time | relevance | path

Searched refs:d_new (Results 1 – 6 of 6) sorted by relevance

/external/llvm/utils/release/
DfindRegressions-simple.py64 def diffResults(d_old, d_new): argument
74 if d_new.has_key(t):
79 if not d_old[t].has_key(x) and not d_new[t].has_key(x):
83 if d_new[t].has_key(x):
86 if d_new[t][x] != 'PASS':
89 if d_new[t][x] == 'PASS':
99 if not d_old[t].has_key(x) and not d_new[t].has_key(x):
101 elif not d_new[t].has_key(x):
106 if math.isnan(d_old[t][x]) and math.isnan(d_new[t][x]):
109 elif math.isnan(d_old[t][x]) and not math.isnan(d_new[t][x]):
[all …]
DfindRegressions-nightly.py72 def diffResults(d_old, d_new): argument
78 if d_new.has_key(t) :
83 if d_new[t].has_key(x):
85 if d_new[t][x] != 'PASS':
88 if d_new[t][x] == 'PASS':
97 if not d_new[t].has_key(tp + x):
101 if d_new[t].has_key(tp + x):
107 if not d_new[t].has_key(exp + x):
111 if d_new[t].has_key(exp + x):
125 d_new = parse(sys.argv[2]) variable
[all …]
/external/llvm-project/llvm/utils/release/
DfindRegressions-simple.py66 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]):
[all …]
DfindRegressions-nightly.py74 def diffResults(d_old, d_new): argument
80 if t in d_new :
85 if x in d_new[t]:
87 if d_new[t][x] != 'PASS':
90 if d_new[t][x] == 'PASS':
99 if tp + x not in d_new[t]:
103 if tp + x in d_new[t]:
109 if exp + x not in d_new[t]:
113 if exp + x in d_new[t]:
127 d_new = parse(sys.argv[2]) variable
[all …]
/external/tensorflow/tensorflow/core/framework/
Dshape_inference.cc379 void InferenceContext::Relax(DimensionHandle d_old, DimensionHandle d_new, in Relax() argument
381 if (d_old.SameHandle(d_new)) { in Relax()
383 } else if (!ValueKnown(d_old) && !ValueKnown(d_new)) { in Relax()
390 *out = d_new; in Relax()
391 } else if (!ValueKnown(d_new)) { in Relax()
393 *out = d_new; in Relax()
394 } else if (Value(d_old) == Value(d_new)) { in Relax()
Dshape_inference.h702 void Relax(DimensionHandle d_old, DimensionHandle d_new,