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)
1279
if (
_rowsInLastBlock
== 0)
1425
int rows = bi == blockSteps - 1 ?
_rowsInLastBlock
: _rowsPerBlock;
2080
int correction = _rowsPerBlock -
_rowsInLastBlock
;
2081
long firstPositionToCorrect = ((long)lastBlockIdx * _rowsPerBlock) +
_rowsInLastBlock
;