1 write to MaxBytesPerBlock
Microsoft.ML.Data (1)
DataView\Transposer.cs (1)
128
args.
MaxBytesPerBlock
= 1 << 28;
7 references to MaxBytesPerBlock
Microsoft.ML.Data (7)
DataLoadSave\Binary\BinarySaver.cs (7)
196
_host.CheckUserArg(!args.
MaxBytesPerBlock
.HasValue || args.
MaxBytesPerBlock
> 0, nameof(args.
MaxBytesPerBlock
), "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.");
206
_maxBytesPerBlock = args.
MaxBytesPerBlock
;