2 writes to _rowsInLastBlock
Microsoft.ML.Data (2)
DataLoadSave\Binary\BinaryLoader.cs (2)
1278_rowsInLastBlock = _parent.RowCount == 0 ? 0 : (int)(_parent.RowCount % _rowsPerBlock); 1280_rowsInLastBlock = _rowsPerBlock;
4 references to _rowsInLastBlock
Microsoft.ML.Data (4)
DataLoadSave\Binary\BinaryLoader.cs (4)
1279if (_rowsInLastBlock == 0) 1425int rows = bi == blockSteps - 1 ? _rowsInLastBlock : _rowsPerBlock; 2080int correction = _rowsPerBlock - _rowsInLastBlock; 2081long firstPositionToCorrect = ((long)lastBlockIdx * _rowsPerBlock) + _rowsInLastBlock;