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