12 references to FindIndexSorted
Microsoft.ML.Core (3)
Utilities\Utils.cs (2)
253
index =
FindIndexSorted
(input, min, lim, value);
265
return
FindIndexSorted
(input.AsSpan(), min, lim, value);
Utilities\VBufferUtils.cs (1)
422
int lim = Utils.
FindIndexSorted
(dstIndices, 0, dstValues.Length, denseCount);
Microsoft.ML.Data (6)
Deprecated\Vector\VBufferMathUtils.cs (2)
268
int dMin = dstIndices.Length == 0 ? 0 : dstIndices.
FindIndexSorted
(0, dstIndices.Length, offset);
269
int dLim = dstIndices.Length == 0 ? 0 : dstIndices.
FindIndexSorted
(dMin, dstIndices.Length, offset + src.Length);
Deprecated\Vector\VectorUtils.cs (4)
270
int aMin = Utils.
FindIndexSorted
(aIndices, 0, aIndices.Length, offset);
271
int aLim = Utils.
FindIndexSorted
(aIndices, 0, aIndices.Length, offset + b.Length);
346
ia = Utils.
FindIndexSorted
(aIndices, ia, iaLim, bIndices[ib]);
354
ib = Utils.
FindIndexSorted
(bIndices, ib, ibLim, aIndices[ia]);
Microsoft.ML.FastTree (3)
TreeEnsemble\InternalRegressionTree.cs (3)
942
int end = featIndices.
FindIndexSorted
(0, count, CategoricalSplitFeatureRanges[node][1]);
943
for (int i = featIndices.
FindIndexSorted
(0, count, CategoricalSplitFeatureRanges[node][0]);
966
int ii = featIndices.
FindIndexSorted
(0, count, ifeat);