Merge pull request #2641 from SpecLad:merge-2.4
This commit is contained in:
commit
4211d8fbd9
@ -777,6 +777,66 @@ struct ZeroIterator
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Depending on processed distances, some of them are already squared (e.g. L2)
|
||||||
|
* and some are not (e.g.Hamming). In KMeans++ for instance we want to be sure
|
||||||
|
* we are working on ^2 distances, thus following templates to ensure that.
|
||||||
|
*/
|
||||||
|
template <typename Distance, typename ElementType>
|
||||||
|
struct squareDistance
|
||||||
|
{
|
||||||
|
typedef typename Distance::ResultType ResultType;
|
||||||
|
ResultType operator()( ResultType dist ) { return dist*dist; }
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template <typename ElementType>
|
||||||
|
struct squareDistance<L2_Simple<ElementType>, ElementType>
|
||||||
|
{
|
||||||
|
typedef typename L2_Simple<ElementType>::ResultType ResultType;
|
||||||
|
ResultType operator()( ResultType dist ) { return dist; }
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename ElementType>
|
||||||
|
struct squareDistance<L2<ElementType>, ElementType>
|
||||||
|
{
|
||||||
|
typedef typename L2<ElementType>::ResultType ResultType;
|
||||||
|
ResultType operator()( ResultType dist ) { return dist; }
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template <typename ElementType>
|
||||||
|
struct squareDistance<MinkowskiDistance<ElementType>, ElementType>
|
||||||
|
{
|
||||||
|
typedef typename MinkowskiDistance<ElementType>::ResultType ResultType;
|
||||||
|
ResultType operator()( ResultType dist ) { return dist; }
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename ElementType>
|
||||||
|
struct squareDistance<HellingerDistance<ElementType>, ElementType>
|
||||||
|
{
|
||||||
|
typedef typename HellingerDistance<ElementType>::ResultType ResultType;
|
||||||
|
ResultType operator()( ResultType dist ) { return dist; }
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename ElementType>
|
||||||
|
struct squareDistance<ChiSquareDistance<ElementType>, ElementType>
|
||||||
|
{
|
||||||
|
typedef typename ChiSquareDistance<ElementType>::ResultType ResultType;
|
||||||
|
ResultType operator()( ResultType dist ) { return dist; }
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template <typename Distance>
|
||||||
|
typename Distance::ResultType ensureSquareDistance( typename Distance::ResultType dist )
|
||||||
|
{
|
||||||
|
typedef typename Distance::ElementType ElementType;
|
||||||
|
|
||||||
|
squareDistance<Distance, ElementType> dummy;
|
||||||
|
return dummy( dist );
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif //OPENCV_FLANN_DIST_H_
|
#endif //OPENCV_FLANN_DIST_H_
|
||||||
|
@ -209,8 +209,11 @@ private:
|
|||||||
assert(index >=0 && index < n);
|
assert(index >=0 && index < n);
|
||||||
centers[0] = dsindices[index];
|
centers[0] = dsindices[index];
|
||||||
|
|
||||||
|
// Computing distance^2 will have the advantage of even higher probability further to pick new centers
|
||||||
|
// far from previous centers (and this complies to "k-means++: the advantages of careful seeding" article)
|
||||||
for (int i = 0; i < n; i++) {
|
for (int i = 0; i < n; i++) {
|
||||||
closestDistSq[i] = distance(dataset[dsindices[i]], dataset[dsindices[index]], dataset.cols);
|
closestDistSq[i] = distance(dataset[dsindices[i]], dataset[dsindices[index]], dataset.cols);
|
||||||
|
closestDistSq[i] = ensureSquareDistance<Distance>( closestDistSq[i] );
|
||||||
currentPot += closestDistSq[i];
|
currentPot += closestDistSq[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -236,7 +239,10 @@ private:
|
|||||||
|
|
||||||
// Compute the new potential
|
// Compute the new potential
|
||||||
double newPot = 0;
|
double newPot = 0;
|
||||||
for (int i = 0; i < n; i++) newPot += std::min( distance(dataset[dsindices[i]], dataset[dsindices[index]], dataset.cols), closestDistSq[i] );
|
for (int i = 0; i < n; i++) {
|
||||||
|
DistanceType dist = distance(dataset[dsindices[i]], dataset[dsindices[index]], dataset.cols);
|
||||||
|
newPot += std::min( ensureSquareDistance<Distance>(dist), closestDistSq[i] );
|
||||||
|
}
|
||||||
|
|
||||||
// Store the best result
|
// Store the best result
|
||||||
if ((bestNewPot < 0)||(newPot < bestNewPot)) {
|
if ((bestNewPot < 0)||(newPot < bestNewPot)) {
|
||||||
@ -248,7 +254,10 @@ private:
|
|||||||
// Add the appropriate center
|
// Add the appropriate center
|
||||||
centers[centerCount] = dsindices[bestNewIndex];
|
centers[centerCount] = dsindices[bestNewIndex];
|
||||||
currentPot = bestNewPot;
|
currentPot = bestNewPot;
|
||||||
for (int i = 0; i < n; i++) closestDistSq[i] = std::min( distance(dataset[dsindices[i]], dataset[dsindices[bestNewIndex]], dataset.cols), closestDistSq[i] );
|
for (int i = 0; i < n; i++) {
|
||||||
|
DistanceType dist = distance(dataset[dsindices[i]], dataset[dsindices[bestNewIndex]], dataset.cols);
|
||||||
|
closestDistSq[i] = std::min( ensureSquareDistance<Distance>(dist), closestDistSq[i] );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
centers_length = centerCount;
|
centers_length = centerCount;
|
||||||
|
@ -210,6 +210,7 @@ public:
|
|||||||
|
|
||||||
for (int i = 0; i < n; i++) {
|
for (int i = 0; i < n; i++) {
|
||||||
closestDistSq[i] = distance_(dataset_[indices[i]], dataset_[indices[index]], dataset_.cols);
|
closestDistSq[i] = distance_(dataset_[indices[i]], dataset_[indices[index]], dataset_.cols);
|
||||||
|
closestDistSq[i] = ensureSquareDistance<Distance>( closestDistSq[i] );
|
||||||
currentPot += closestDistSq[i];
|
currentPot += closestDistSq[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -235,7 +236,10 @@ public:
|
|||||||
|
|
||||||
// Compute the new potential
|
// Compute the new potential
|
||||||
double newPot = 0;
|
double newPot = 0;
|
||||||
for (int i = 0; i < n; i++) newPot += std::min( distance_(dataset_[indices[i]], dataset_[indices[index]], dataset_.cols), closestDistSq[i] );
|
for (int i = 0; i < n; i++) {
|
||||||
|
DistanceType dist = distance_(dataset_[indices[i]], dataset_[indices[index]], dataset_.cols);
|
||||||
|
newPot += std::min( ensureSquareDistance<Distance>(dist), closestDistSq[i] );
|
||||||
|
}
|
||||||
|
|
||||||
// Store the best result
|
// Store the best result
|
||||||
if ((bestNewPot < 0)||(newPot < bestNewPot)) {
|
if ((bestNewPot < 0)||(newPot < bestNewPot)) {
|
||||||
@ -247,7 +251,10 @@ public:
|
|||||||
// Add the appropriate center
|
// Add the appropriate center
|
||||||
centers[centerCount] = indices[bestNewIndex];
|
centers[centerCount] = indices[bestNewIndex];
|
||||||
currentPot = bestNewPot;
|
currentPot = bestNewPot;
|
||||||
for (int i = 0; i < n; i++) closestDistSq[i] = std::min( distance_(dataset_[indices[i]], dataset_[indices[bestNewIndex]], dataset_.cols), closestDistSq[i] );
|
for (int i = 0; i < n; i++) {
|
||||||
|
DistanceType dist = distance_(dataset_[indices[i]], dataset_[indices[bestNewIndex]], dataset_.cols);
|
||||||
|
closestDistSq[i] = std::min( ensureSquareDistance<Distance>(dist), closestDistSq[i] );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
centers_length = centerCount;
|
centers_length = centerCount;
|
||||||
|
@ -40,6 +40,7 @@ if __name__ == "__main__":
|
|||||||
parser.add_option("", "--with-cycles-reduction", action="store_true", dest="calc_cr", default=False, help="output cycle reduction percentages")
|
parser.add_option("", "--with-cycles-reduction", action="store_true", dest="calc_cr", default=False, help="output cycle reduction percentages")
|
||||||
parser.add_option("", "--with-score", action="store_true", dest="calc_score", default=False, help="output automatic classification of speedups")
|
parser.add_option("", "--with-score", action="store_true", dest="calc_score", default=False, help="output automatic classification of speedups")
|
||||||
parser.add_option("", "--progress", action="store_true", dest="progress_mode", default=False, help="enable progress mode")
|
parser.add_option("", "--progress", action="store_true", dest="progress_mode", default=False, help="enable progress mode")
|
||||||
|
parser.add_option("", "--regressions", dest="regressions", default=None, metavar="LIST", help="comma-separated custom regressions map: \"[r][c]#current-#reference\" (indexes of columns are 0-based, \"r\" - reverse flag, \"c\" - color flag for base data)")
|
||||||
parser.add_option("", "--show-all", action="store_true", dest="showall", default=False, help="also include empty and \"notrun\" lines")
|
parser.add_option("", "--show-all", action="store_true", dest="showall", default=False, help="also include empty and \"notrun\" lines")
|
||||||
parser.add_option("", "--match", dest="match", default=None)
|
parser.add_option("", "--match", dest="match", default=None)
|
||||||
parser.add_option("", "--match-replace", dest="match_replace", default="")
|
parser.add_option("", "--match-replace", dest="match_replace", default="")
|
||||||
@ -56,6 +57,24 @@ if __name__ == "__main__":
|
|||||||
if options.columns:
|
if options.columns:
|
||||||
options.columns = [s.strip().replace("\\n", "\n") for s in options.columns.split(",")]
|
options.columns = [s.strip().replace("\\n", "\n") for s in options.columns.split(",")]
|
||||||
|
|
||||||
|
if options.regressions:
|
||||||
|
assert not options.progress_mode, 'unsupported mode'
|
||||||
|
|
||||||
|
def parseRegressionColumn(s):
|
||||||
|
""" Format: '[r][c]<uint>-<uint>' """
|
||||||
|
reverse = s.startswith('r')
|
||||||
|
if reverse:
|
||||||
|
s = s[1:]
|
||||||
|
addColor = s.startswith('c')
|
||||||
|
if addColor:
|
||||||
|
s = s[1:]
|
||||||
|
parts = s.split('-', 1)
|
||||||
|
link = (int(parts[0]), int(parts[1]), reverse, addColor)
|
||||||
|
assert link[0] != link[1]
|
||||||
|
return link
|
||||||
|
|
||||||
|
options.regressions = [parseRegressionColumn(s) for s in options.regressions.split(',')]
|
||||||
|
|
||||||
# expand wildcards and filter duplicates
|
# expand wildcards and filter duplicates
|
||||||
files = []
|
files = []
|
||||||
seen = set()
|
seen = set()
|
||||||
@ -90,8 +109,18 @@ if __name__ == "__main__":
|
|||||||
sys.stderr.write("Error: no test data found" + os.linesep)
|
sys.stderr.write("Error: no test data found" + os.linesep)
|
||||||
quit()
|
quit()
|
||||||
|
|
||||||
# find matches
|
|
||||||
setsCount = len(test_sets)
|
setsCount = len(test_sets)
|
||||||
|
|
||||||
|
if options.regressions is None:
|
||||||
|
reference = -1 if options.progress_mode else 0
|
||||||
|
options.regressions = [(i, reference, False, True) for i in range(1, len(test_sets))]
|
||||||
|
|
||||||
|
for link in options.regressions:
|
||||||
|
(i, ref, reverse, addColor) = link
|
||||||
|
assert i >= 0 and i < setsCount
|
||||||
|
assert ref < setsCount
|
||||||
|
|
||||||
|
# find matches
|
||||||
test_cases = {}
|
test_cases = {}
|
||||||
|
|
||||||
name_extractor = lambda name: str(name)
|
name_extractor = lambda name: str(name)
|
||||||
@ -117,29 +146,29 @@ if __name__ == "__main__":
|
|||||||
|
|
||||||
# header
|
# header
|
||||||
tbl.newColumn("name", "Name of Test", align = "left", cssclass = "col_name")
|
tbl.newColumn("name", "Name of Test", align = "left", cssclass = "col_name")
|
||||||
i = 0
|
for i in range(setsCount):
|
||||||
for set in test_sets:
|
tbl.newColumn(str(i), getSetName(test_sets[i], i, options.columns, False), align = "center")
|
||||||
tbl.newColumn(str(i), getSetName(set, i, options.columns, False), align = "center")
|
|
||||||
i += 1
|
def addHeaderColumns(suffix, description, cssclass):
|
||||||
metric_sets = test_sets[1:]
|
for link in options.regressions:
|
||||||
|
(i, ref, reverse, addColor) = link
|
||||||
|
if reverse:
|
||||||
|
i, ref = ref, i
|
||||||
|
current_set = test_sets[i]
|
||||||
|
current = getSetName(current_set, i, options.columns)
|
||||||
|
if ref >= 0:
|
||||||
|
reference_set = test_sets[ref]
|
||||||
|
reference = getSetName(reference_set, ref, options.columns)
|
||||||
|
else:
|
||||||
|
reference = 'previous'
|
||||||
|
tbl.newColumn(str(i) + '-' + str(ref) + suffix, '%s\nvs\n%s\n(%s)' % (current, reference, description), align='center', cssclass=cssclass)
|
||||||
|
|
||||||
if options.calc_cr:
|
if options.calc_cr:
|
||||||
i = 1
|
addHeaderColumns(suffix='$', description='cycles reduction', cssclass='col_cr')
|
||||||
for set in metric_sets:
|
|
||||||
reference = getSetName(test_sets[0], 0, options.columns) if not options.progress_mode else 'previous'
|
|
||||||
tbl.newColumn(str(i) + "$", getSetName(set, i, options.columns) + "\nvs\n" + reference + "\n(cycles reduction)", align = "center", cssclass = "col_cr")
|
|
||||||
i += 1
|
|
||||||
if options.calc_relatives:
|
if options.calc_relatives:
|
||||||
i = 1
|
addHeaderColumns(suffix='%', description='x-factor', cssclass='col_rel')
|
||||||
for set in metric_sets:
|
|
||||||
reference = getSetName(test_sets[0], 0, options.columns) if not options.progress_mode else 'previous'
|
|
||||||
tbl.newColumn(str(i) + "%", getSetName(set, i, options.columns) + "\nvs\n" + reference + "\n(x-factor)", align = "center", cssclass = "col_rel")
|
|
||||||
i += 1
|
|
||||||
if options.calc_score:
|
if options.calc_score:
|
||||||
i = 1
|
addHeaderColumns(suffix='S', description='score', cssclass='col_name')
|
||||||
for set in metric_sets:
|
|
||||||
reference = getSetName(test_sets[0], 0, options.columns) if not options.progress_mode else 'previous'
|
|
||||||
tbl.newColumn(str(i) + "S", getSetName(set, i, options.columns) + "\nvs\n" + reference + "\n(score)", align = "center", cssclass = "col_name")
|
|
||||||
i += 1
|
|
||||||
|
|
||||||
# rows
|
# rows
|
||||||
prevGroupName = None
|
prevGroupName = None
|
||||||
@ -166,68 +195,87 @@ if __name__ == "__main__":
|
|||||||
if options.intersect_logs:
|
if options.intersect_logs:
|
||||||
needNewRow = False
|
needNewRow = False
|
||||||
break
|
break
|
||||||
|
|
||||||
tbl.newCell(str(i), "-")
|
tbl.newCell(str(i), "-")
|
||||||
if options.calc_relatives and i > 0:
|
|
||||||
tbl.newCell(str(i) + "%", "-")
|
|
||||||
if options.calc_cr and i > 0:
|
|
||||||
tbl.newCell(str(i) + "$", "-")
|
|
||||||
if options.calc_score and i > 0:
|
|
||||||
tbl.newCell(str(i) + "$", "-")
|
|
||||||
else:
|
else:
|
||||||
status = case.get("status")
|
status = case.get("status")
|
||||||
if status != "run":
|
if status != "run":
|
||||||
tbl.newCell(str(i), status, color = "red")
|
tbl.newCell(str(i), status, color="red")
|
||||||
if status != "notrun":
|
|
||||||
needNewRow = True
|
|
||||||
if options.calc_relatives and i > 0:
|
|
||||||
tbl.newCell(str(i) + "%", "-", color = "red")
|
|
||||||
if options.calc_cr and i > 0:
|
|
||||||
tbl.newCell(str(i) + "$", "-", color = "red")
|
|
||||||
if options.calc_score and i > 0:
|
|
||||||
tbl.newCell(str(i) + "S", "-", color = "red")
|
|
||||||
else:
|
else:
|
||||||
val = getter(case, cases[0], options.units)
|
val = getter(case, cases[0], options.units)
|
||||||
def getter_fn(fn):
|
|
||||||
if fn and i > 0 and val:
|
|
||||||
for j in reversed(range(i)) if options.progress_mode else [0]:
|
|
||||||
r = cases[j]
|
|
||||||
if r is not None and r.get("status") == 'run':
|
|
||||||
return fn(case, r, options.units)
|
|
||||||
return None
|
|
||||||
valp = getter_fn(getter_p) if options.calc_relatives or options.progress_mode else None
|
|
||||||
valcr = getter_fn(getter_cr) if options.calc_cr else None
|
|
||||||
val_score = getter_fn(getter_score) if options.calc_score else None
|
|
||||||
if not valp or i == 0:
|
|
||||||
color = None
|
|
||||||
elif valp > 1.05:
|
|
||||||
color = "green"
|
|
||||||
elif valp < 0.95:
|
|
||||||
color = "red"
|
|
||||||
else:
|
|
||||||
color = None
|
|
||||||
if val:
|
if val:
|
||||||
needNewRow = True
|
needNewRow = True
|
||||||
tbl.newCell(str(i), formatValue(val, options.metric, options.units), val, color = color)
|
tbl.newCell(str(i), formatValue(val, options.metric, options.units), val)
|
||||||
if options.calc_relatives and i > 0:
|
|
||||||
tbl.newCell(str(i) + "%", formatValue(valp, "%"), valp, color = color, bold = color)
|
if needNewRow:
|
||||||
if options.calc_cr and i > 0:
|
for link in options.regressions:
|
||||||
tbl.newCell(str(i) + "$", formatValue(valcr, "$"), valcr, color = color, bold = color)
|
(i, reference, reverse, addColor) = link
|
||||||
if options.calc_score and i > 0:
|
if reverse:
|
||||||
tbl.newCell(str(i) + "S", formatValue(val_score, "S"), val_score, color = color, bold = color)
|
i, reference = reference, i
|
||||||
|
tblCellID = str(i) + '-' + str(reference)
|
||||||
|
case = cases[i]
|
||||||
|
if case is None:
|
||||||
|
if options.calc_relatives:
|
||||||
|
tbl.newCell(tblCellID + "%", "-")
|
||||||
|
if options.calc_cr:
|
||||||
|
tbl.newCell(tblCellID + "$", "-")
|
||||||
|
if options.calc_score:
|
||||||
|
tbl.newCell(tblCellID + "$", "-")
|
||||||
|
else:
|
||||||
|
status = case.get("status")
|
||||||
|
if status != "run":
|
||||||
|
tbl.newCell(str(i), status, color="red")
|
||||||
|
if status != "notrun":
|
||||||
|
needNewRow = True
|
||||||
|
if options.calc_relatives:
|
||||||
|
tbl.newCell(tblCellID + "%", "-", color="red")
|
||||||
|
if options.calc_cr:
|
||||||
|
tbl.newCell(tblCellID + "$", "-", color="red")
|
||||||
|
if options.calc_score:
|
||||||
|
tbl.newCell(tblCellID + "S", "-", color="red")
|
||||||
|
else:
|
||||||
|
val = getter(case, cases[0], options.units)
|
||||||
|
def getRegression(fn):
|
||||||
|
if fn and val:
|
||||||
|
for j in reversed(range(i)) if reference < 0 else [reference]:
|
||||||
|
r = cases[j]
|
||||||
|
if r is not None and r.get("status") == 'run':
|
||||||
|
return fn(case, r, options.units)
|
||||||
|
valp = getRegression(getter_p) if options.calc_relatives or options.progress_mode else None
|
||||||
|
valcr = getRegression(getter_cr) if options.calc_cr else None
|
||||||
|
val_score = getRegression(getter_score) if options.calc_score else None
|
||||||
|
if not valp:
|
||||||
|
color = None
|
||||||
|
elif valp > 1.05:
|
||||||
|
color = 'green'
|
||||||
|
elif valp < 0.95:
|
||||||
|
color = 'red'
|
||||||
|
else:
|
||||||
|
color = None
|
||||||
|
if addColor:
|
||||||
|
if not reverse:
|
||||||
|
tbl.newCell(str(i), formatValue(val, options.metric, options.units), val, color=color)
|
||||||
|
else:
|
||||||
|
r = cases[reference]
|
||||||
|
if r is not None and r.get("status") == 'run':
|
||||||
|
val = getter(r, cases[0], options.units)
|
||||||
|
tbl.newCell(str(reference), formatValue(val, options.metric, options.units), val, color=color)
|
||||||
|
if options.calc_relatives:
|
||||||
|
tbl.newCell(tblCellID + "%", formatValue(valp, "%"), valp, color=color, bold=color)
|
||||||
|
if options.calc_cr:
|
||||||
|
tbl.newCell(tblCellID + "$", formatValue(valcr, "$"), valcr, color=color, bold=color)
|
||||||
|
if options.calc_score:
|
||||||
|
tbl.newCell(tblCellID + "S", formatValue(val_score, "S"), val_score, color = color, bold = color)
|
||||||
|
|
||||||
if not needNewRow:
|
if not needNewRow:
|
||||||
tbl.trimLastRow()
|
tbl.trimLastRow()
|
||||||
|
|
||||||
if options.regressionsOnly:
|
if options.regressionsOnly:
|
||||||
for r in reversed(range(len(tbl.rows))):
|
for r in reversed(range(len(tbl.rows))):
|
||||||
delete = True
|
for i in range(1, len(options.regressions) + 1):
|
||||||
i = 1
|
val = tbl.rows[r].cells[len(tbl.rows[r].cells) - i].value
|
||||||
for set in metric_sets:
|
|
||||||
val = tbl.rows[r].cells[len(tbl.rows[r].cells)-i].value
|
|
||||||
if val is not None and val < float(options.regressionsOnly):
|
if val is not None and val < float(options.regressionsOnly):
|
||||||
delete = False
|
break
|
||||||
i += 1
|
else:
|
||||||
if (delete):
|
|
||||||
tbl.rows.pop(r)
|
tbl.rows.pop(r)
|
||||||
|
|
||||||
# output table
|
# output table
|
||||||
|
Loading…
x
Reference in New Issue
Block a user