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