2 instantiations of Block
Microsoft.ML.Data (2)
DataLoadSave\Binary\BinaryLoader.cs (2)
1586
var block = new
Block
(blockSequence, rowLim, rowLim + rowCount);
1592
Block sentBlock = new
Block
(blockSequence);
10 references to Block
Microsoft.ML.Data (10)
DataLoadSave\Binary\BinaryLoader.cs (10)
1507
private readonly BlockingCollection<
Block
> _toDecompress;
1508
private readonly IEnumerator<
Block
> _toDecompressEnumerator;
1509
private readonly BlockingCollection<
Block
> _toRead;
1510
private readonly IEnumerator<
Block
> _toReadEnumerator;
1516
private
Block
_curr;
1570
_toDecompress = new BlockingCollection<
Block
>(_bufferSize);
1576
_toRead = new BlockingCollection<
Block
>(bufferSize);
1586
var
block = new Block(blockSequence, rowLim, rowLim + rowCount);
1592
Block
sentBlock = new Block(blockSequence);
1599
Block
block;