8 references to RowCount
Microsoft.ML.Data (8)
DataLoadSave\Binary\BinaryLoader.cs (8)
741
public long? GetRowCount() =>
RowCount
;
904
h.CheckDecode(retVal.
RowCount
== 0);
1264
_pipes = new ReadPipe[parent.
RowCount
> 0 ? _actives.Length : 0];
1278
_rowsInLastBlock = _parent.
RowCount
== 0 ? 0 : (int)(_parent.
RowCount
% _rowsPerBlock);
1282
_numBlocks = checked((int)((_parent.
RowCount
- 1) / _rowsPerBlock + 1));
1418
int blockSteps = checked((int)((_parent.
RowCount
- 1) / _rowsPerBlock + 1));
2093
Ch.Assert(0 <= blockPos && blockPos < _parent.
RowCount
);