2 overrides of WantParallelCursors
Microsoft.ML.Data (2)
Scorers\GenericScorer.cs (1)
249protected override bool WantParallelCursors(Func<int, bool> predicate)
Scorers\PredictedLabelScorerBase.cs (1)
390protected override bool WantParallelCursors(Func<int, bool> predicate)
3 references to WantParallelCursors
Microsoft.ML.Data (3)
Scorers\RowToRowScorerBase.cs (3)
111/// This produces either "true" or "null" according to whether <see cref="WantParallelCursors"/> 118if (WantParallelCursors(predicate)) 155if (inputs.Length == 1 && n > 1 && WantParallelCursors(predicate) && (Source.GetRowCount() ?? int.MaxValue) > n)