Searched refs:d_old (Results 1 – 7 of 7) sorted by relevance
/external/swiftshader/third_party/llvm-7.0/llvm/utils/release/ |
D | findRegressions-simple.py | 64 def diffResults(d_old, d_new): argument 73 for t in sorted(d_old.keys()) : 79 if not d_old[t].has_key(x) and not d_new[t].has_key(x): 82 if d_old[t].has_key(x): 85 if d_old[t][x] == 'PASS': 99 if not d_old[t].has_key(x) and not d_new[t].has_key(x): 103 elif not d_old[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]): 112 elif not math.isnan(d_old[t][x]) and math.isnan(d_new[t][x]): [all …]
|
D | findRegressions-nightly.py | 72 def diffResults(d_old, d_new): argument 74 for t in sorted(d_old.keys()) : 82 if d_old[t].has_key(x): 84 if d_old[t][x] == 'PASS': 96 if d_old[t].has_key(tp + x): 106 if d_old[t].has_key(exp + x): 124 d_old = parse(sys.argv[1]) variable 128 diffResults(d_old, d_new)
|
/external/llvm/utils/release/ |
D | findRegressions-simple.py | 64 def diffResults(d_old, d_new): argument 73 for t in sorted(d_old.keys()) : 79 if not d_old[t].has_key(x) and not d_new[t].has_key(x): 82 if d_old[t].has_key(x): 85 if d_old[t][x] == 'PASS': 99 if not d_old[t].has_key(x) and not d_new[t].has_key(x): 103 elif not d_old[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]): 112 elif not math.isnan(d_old[t][x]) and math.isnan(d_new[t][x]): [all …]
|
D | findRegressions-nightly.py | 72 def diffResults(d_old, d_new): argument 74 for t in sorted(d_old.keys()) : 82 if d_old[t].has_key(x): 84 if d_old[t][x] == 'PASS': 96 if d_old[t].has_key(tp + x): 106 if d_old[t].has_key(exp + x): 124 d_old = parse(sys.argv[1]) variable 128 diffResults(d_old, d_new)
|
/external/swiftshader/third_party/LLVM/utils/release/ |
D | findRegressions.py | 64 def diffResults(d_old, d_new): argument 66 for t in sorted(d_old.keys()) : 72 if not d_old[t].has_key(x) and not d_new[t].has_key(x): 75 if d_old[t].has_key(x): 78 if d_old[t][x] == 'PASS': 92 if not d_old[t].has_key(x) and not d_new[t].has_key(x): 96 elif not d_old[t].has_key(x): 99 if math.isnan(d_old[t][x]) and math.isnan(d_new[t][x]): 102 elif math.isnan(d_old[t][x]) and not math.isnan(d_new[t][x]): 105 elif not math.isnan(d_old[t][x]) and math.isnan(d_new[t][x]): [all …]
|
/external/tensorflow/tensorflow/core/framework/ |
D | shape_inference.cc | 437 void InferenceContext::Relax(DimensionHandle d_old, DimensionHandle d_new, in Relax() argument 439 if (d_old.SameHandle(d_new)) { in Relax() 440 *out = d_old; in Relax() 441 } else if (!ValueKnown(d_old) && !ValueKnown(d_new)) { in Relax() 452 } else if (Value(d_old) == Value(d_new)) { in Relax() 455 *out = d_old; in Relax()
|
D | shape_inference.h | 717 void Relax(DimensionHandle d_old, DimensionHandle d_new,
|