4 references to _batchShift
Microsoft.ML.Data (4)
DataView\CacheDataView.cs (4)
36
private const int _batchSize = 1 <<
_batchShift
;
37
private const int _batchMask = (1 <<
_batchShift
) - 1;
993
_curr = _batch <<
_batchShift
;
1096
_curr = (int)(_batch <<
_batchShift
);