use of edu.iu.dsc.tws.api.compute.schedule.elements.WorkerPlan in project twister2 by DSC-SPIDAL.
the class BatchTaskSchedulerTest method testUniqueSchedules2.
@Test
public void testUniqueSchedules2() {
int parallel = 16;
int workers = 2;
ComputeGraph graph = createGraph(parallel, "graph");
BatchTaskScheduler scheduler = new BatchTaskScheduler();
scheduler.initialize(Config.newBuilder().build());
WorkerPlan workerPlan = createWorkPlan(workers);
TaskSchedulePlan plan1 = scheduler.schedule(graph, workerPlan);
WorkerPlan workerPlan2 = createWorkPlan2(workers);
for (int i = 0; i < 1000; i++) {
TaskSchedulePlan plan2 = scheduler.schedule(graph, workerPlan2);
Assert.assertEquals(plan1.getContainers().size(), plan2.getContainers().size());
}
}
use of edu.iu.dsc.tws.api.compute.schedule.elements.WorkerPlan in project twister2 by DSC-SPIDAL.
the class BatchTaskSchedulerTest method testUniqueSchedules3.
@Test
public void testUniqueSchedules3() {
int parallel = 16;
int workers = 2;
ComputeGraph graph = createGraphWithComputeTaskAndConstraints(parallel, "graph");
BatchTaskScheduler scheduler = new BatchTaskScheduler();
scheduler.initialize(Config.newBuilder().build());
WorkerPlan workerPlan = createWorkPlan(workers);
TaskSchedulePlan plan1 = scheduler.schedule(graph, workerPlan);
Map<Integer, WorkerSchedulePlan> containersMap = plan1.getContainersMap();
for (Map.Entry<Integer, WorkerSchedulePlan> entry : containersMap.entrySet()) {
WorkerSchedulePlan workerSchedulePlan = entry.getValue();
Set<TaskInstancePlan> containerPlanTaskInstances = workerSchedulePlan.getTaskInstances();
Assert.assertEquals(containerPlanTaskInstances.size() / graph.getTaskVertexSet().size(), Integer.parseInt(graph.getGraphConstraints().get(Context.TWISTER2_MAX_TASK_INSTANCES_PER_WORKER)));
}
}
use of edu.iu.dsc.tws.api.compute.schedule.elements.WorkerPlan in project twister2 by DSC-SPIDAL.
the class BatchTaskSchedulerTest method testUniqueSchedules7.
@Test
public void testUniqueSchedules7() {
int parallel = 2;
int workers = 4;
ComputeGraph[] graph = new ComputeGraph[3];
graph[0] = createGraphWithDifferentParallelismInput(parallel, "graph" + 0, "a");
graph[1] = createGraphWithDifferentParallelismInput(parallel, "graph" + 1, "b");
// if you specify any parallel value other than 2, it will throw
// edu.iu.dsc.tws.api.exceptions.Twister2RuntimeException: Please verify the dependent
// collector(s) and receptor(s) parallelism values which are not equal
graph[2] = createGraphWithDifferentParallelismInput(parallel, "graph" + 2, "b");
BatchTaskScheduler scheduler = new BatchTaskScheduler();
scheduler.initialize(Config.newBuilder().build());
WorkerPlan workerPlan = createWorkPlan(workers);
Map<String, TaskSchedulePlan> plan1 = scheduler.schedule(workerPlan, graph);
for (Map.Entry<String, TaskSchedulePlan> taskSchedulePlanEntry : plan1.entrySet()) {
TaskSchedulePlan plan2 = taskSchedulePlanEntry.getValue();
Map<Integer, WorkerSchedulePlan> containersMap = plan2.getContainersMap();
int index = 0;
for (Map.Entry<Integer, WorkerSchedulePlan> entry : containersMap.entrySet()) {
WorkerSchedulePlan workerSchedulePlan = entry.getValue();
Set<TaskInstancePlan> containerPlanTaskInstances = workerSchedulePlan.getTaskInstances();
index++;
if (index <= parallel) {
Assert.assertEquals(containerPlanTaskInstances.size(), workers / parallel);
} else {
Assert.assertEquals(containerPlanTaskInstances.size(), 0);
}
}
}
}
use of edu.iu.dsc.tws.api.compute.schedule.elements.WorkerPlan in project twister2 by DSC-SPIDAL.
the class BatchTaskSchedulerTest method testUniqueSchedules5.
@Test
public void testUniqueSchedules5() {
int parallel = 200;
int workers = 400;
ComputeGraph[] graph = new ComputeGraph[3];
Arrays.setAll(graph, i -> createGraph(parallel, "graph" + i));
BatchTaskScheduler scheduler = new BatchTaskScheduler();
scheduler.initialize(Config.newBuilder().build());
WorkerPlan workerPlan = createWorkPlan(workers);
Map<String, TaskSchedulePlan> plan1 = scheduler.schedule(workerPlan, graph[0], graph[1]);
for (Map.Entry<String, TaskSchedulePlan> taskSchedulePlanEntry : plan1.entrySet()) {
TaskSchedulePlan plan2 = taskSchedulePlanEntry.getValue();
Map<Integer, WorkerSchedulePlan> containersMap = plan2.getContainersMap();
int index = 0;
for (Map.Entry<Integer, WorkerSchedulePlan> entry : containersMap.entrySet()) {
WorkerSchedulePlan workerSchedulePlan = entry.getValue();
Set<TaskInstancePlan> containerPlanTaskInstances = workerSchedulePlan.getTaskInstances();
index++;
if (index <= parallel) {
Assert.assertEquals(containerPlanTaskInstances.size(), workers / parallel);
} else {
Assert.assertEquals(containerPlanTaskInstances.size(), 0);
}
}
}
}
use of edu.iu.dsc.tws.api.compute.schedule.elements.WorkerPlan in project twister2 by DSC-SPIDAL.
the class RoundRobinBatchTaskSchedulerTest method testUniqueSchedules3.
@Test
public void testUniqueSchedules3() {
int parallel = 16;
int workers = 2;
ComputeGraph graph = createGraphWithComputeTaskAndConstraints(parallel);
RoundRobinBatchTaskScheduler scheduler = new RoundRobinBatchTaskScheduler();
scheduler.initialize(Config.newBuilder().build());
WorkerPlan workerPlan = createWorkPlan(workers);
TaskSchedulePlan plan1 = scheduler.schedule(graph, workerPlan);
Map<Integer, WorkerSchedulePlan> containersMap = plan1.getContainersMap();
for (Map.Entry<Integer, WorkerSchedulePlan> entry : containersMap.entrySet()) {
WorkerSchedulePlan workerSchedulePlan = entry.getValue();
Set<TaskInstancePlan> containerPlanTaskInstances = workerSchedulePlan.getTaskInstances();
Assert.assertEquals(containerPlanTaskInstances.size() / graph.getTaskVertexSet().size(), Integer.parseInt(graph.getGraphConstraints().get(Context.TWISTER2_MAX_TASK_INSTANCES_PER_WORKER)));
}
}
Aggregations