Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Can compile out of source now.
[simgrid.git] / teshsuite / simdag / basic6.c
1 /* test scheduling 2 tasks at the same time without artificial dependencies */
2
3 /* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include <stdio.h>
10 #include <stdlib.h>
11 #include "simdag/simdag.h"
12 #include "xbt/log.h"
13
14 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(basic6, sd, "SimDag test basic6");
15
16 int main(int argc, char **argv)
17 {
18   double comm_cost[] = { 0.0, 0.0, 0.0, 0.0 };
19   double comp_cost[] = { 1.0 };
20   SD_task_t taskA, taskB;
21
22   SD_init(&argc, argv);
23   SD_create_environment(argv[1]);
24
25   taskA = SD_task_create("Task A", NULL, 1.0);
26   taskB = SD_task_create("Task B", NULL, 1.0);
27
28   SD_task_schedule(taskA, 1, SD_workstation_get_list(), comp_cost,
29                    comm_cost, -1.0);
30   SD_task_schedule(taskB, 1, SD_workstation_get_list(), comp_cost,
31                    comm_cost, -1.0);
32
33   SD_simulate(-1.0);
34
35   INFO1("Simulation time: %f", SD_get_clock());
36
37   SD_exit();
38   return 0;
39 }