6 references to MaxRowsPerBlock
Microsoft.ML.Data (6)
DataLoadSave\Binary\BinarySaver.cs (6)
195
_host.CheckUserArg(!args.
MaxRowsPerBlock
.HasValue || args.
MaxRowsPerBlock
> 0, nameof(args.
MaxRowsPerBlock
), "Must be positive.");
198
_host.CheckUserArg(args.
MaxRowsPerBlock
.HasValue || args.MaxBytesPerBlock.HasValue, nameof(args.MaxBytesPerBlock),
199
"Either " + nameof(args.
MaxRowsPerBlock
) + " or " + nameof(args.MaxBytesPerBlock) + " must have a value.");
205
_maxRowsPerBlock = args.
MaxRowsPerBlock
;