4 writes to BatchSize
Microsoft.ML.Sweeper.Tests (4)
TestSweeper.cs (4)
185args.BatchSize = 5; 235args.BatchSize = 5; 306args.BatchSize = batchSize; 358args.BatchSize = batchSize;
11 references to BatchSize
Microsoft.ML.Sweeper (4)
AsyncSweeper.cs (4)
197_host.CheckUserArg(options.BatchSize > 0, nameof(options.BatchSize), "Batch size must be positive"); 199_host.CheckUserArg(options.Relaxation <= options.BatchSize, nameof(options.Relaxation), 201_batchSize = options.BatchSize;
Microsoft.ML.Sweeper.Tests (7)
TestSweeper.cs (7)
208if (i < args.BatchSize - args.Relaxation) 226Assert.Equal(args.BatchSize + args.BatchSize, numCompleted); 236args.Relaxation = args.BatchSize - 1; 273for (int i = 0; i < args.BatchSize; i++) 284for (int i = args.BatchSize; i < 2 * args.BatchSize; i++)