Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines with new year.
[simgrid.git] / teshsuite / simdag / comp-only-par / comp-only-par.c
1 /* Copyright (c) 2007-2019. 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   sg_host_t *hosts = sg_host_list();
20   SD_task_schedule(task, 2, hosts, comp_cost, comm_amount, -1.0);
21   xbt_free(hosts);
22
23   SD_simulate(-1.0);
24
25   printf("%g\n", SD_get_clock());
26   fflush(stdout);
27
28   SD_task_destroy(task);
29
30   return 0;
31 }