1 type derived from OutPipe
Microsoft.ML.Data (1)
Data\DataViewUtils.cs (1)
906private abstract class Impl<T> : OutPipe
22 references to OutPipe
Microsoft.ML.Data (22)
Data\DataViewUtils.cs (22)
351OutPipe[] outPipes = new OutPipe[activeToCol.Length + (int)ExtraIndex._Lim]; 357outPipes[i] = OutPipe.Create(type, pool); 360outPipes[idIdx] = OutPipe.Create(RowIdDataViewType.Instance, GetPool(RowIdDataViewType.Instance, ourPools, idIdx)); 474foreach (var outPipe in myOutPipes) 529OutPipe[][] outPipes = new OutPipe[cthd][]; 531outPipes[i] = new OutPipe[inPipes.Length]; 624foreach (var outPipe in myOutPipes) 699public abstract OutPipe CreateOutPipe(DataViewType type); 734public override OutPipe CreateOutPipe(DataViewType type) 738return OutPipe.Create(type, _pool); 746/// object, and eventually one is consumed by an <see cref="OutPipe"/> instance. 829public void SetAll(OutPipe[] pipes) 861public static OutPipe Create(DataViewType type, object pool) 875return (OutPipe)constructor.Invoke(new object[] { pool }); 885/// Sets this <see cref="OutPipe"/> to start presenting the output of a batch column. 995/// values stored therein through the help of <see cref="OutPipe"/> objects. 1002private readonly OutPipe[] _pipes; 1028OutPipe[] pipes, BlockingCollection<Batch> batchInputs, Action quitAction) 1060foreach (var pipe in _pipes) 1076foreach (var pipe in _pipes)