1 write to MaxBytesPerBlock
Microsoft.ML.Data (1)
DataView\Transposer.cs (1)
128args.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;