We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f8a308 commit 8688101Copy full SHA for 8688101
selector/best_conf.py
@@ -106,11 +106,11 @@ def safe_best(path, penalty):
106
best_perf = perfs[isize][best]
107
break
108
109
- elif nn_1 < nn_2 and nn_sum_1 < nn_sum_2:
+ elif nn_1 >= nn_2 and nn_sum_1 <= nn_sum_2:
110
best = list(perfs[isize].keys())[0]
111
112
113
- elif nn_1 > nn_2 and nn_sum_1 > nn_sum_2:
+ elif nn_1 <= nn_2 and nn_sum_1 >= nn_sum_2:
114
best = list(perfs[inst_sizes[i + 1]].keys())[0]
115
best_perf = perfs[inst_sizes[i + 1]][best]
116
0 commit comments