Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
improve a bunch of CMake files
[simgrid.git] / teshsuite / simdag / partask / par-comp_only_par.c
1 /* Copyright (c) 2007, 2009-2011, 2013-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <stdio.h>
8 #include "simgrid/simdag.h"
9
10 int main(int argc, char **argv)
11 {
12   double comm_amount[] = { 0.0, 0.0, 0.0, 0.0 };
13   double comp_cost[] = { 1.0, 1.0 };
14
15   SD_init(&argc, argv);
16   SD_create_environment(argv[1]);
17
18   SD_task_t task = SD_task_create("partask", NULL, 1.0);
19   SD_task_schedule(task, 2, sg_host_list(), comp_cost, comm_amount, -1.0);
20
21   SD_simulate(-1.0);
22
23   printf("%g\n", SD_get_clock());
24   fflush(stdout);
25
26   SD_task_destroy(task);
27
28   SD_exit();
29   return 0;
30 }