Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot//simgrid/simgrid
[simgrid.git] / examples / simdag / goal / goal_test.c
1 /* GOAL loader prototype. Not ready for public usage yet */
2
3 /* Copyright (c) 2011. 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 <stdlib.h>
10 #include <stdio.h>
11 #include "simdag/simdag.h"
12 #include "xbt/log.h"
13 #include "xbt/ex.h"
14 #include <string.h>
15 #include "xbt/xbt_os_time.h"
16
17 XBT_LOG_NEW_DEFAULT_CATEGORY(goal, "The GOAL loader into SimDag");
18
19 typedef struct {
20   int i, j, k;
21 } s_bcast_task_t,*bcast_task_t;
22
23
24 const SD_workstation_t* ws_list;
25 int count = 0;
26
27 xbt_dynar_t reclaimed;
28
29 static void send_one(int from, int to) {
30   //XBT_DEBUG("send_one(%d, %d)",from,to);
31
32   if (count %100000 == 0)
33     XBT_INFO("Sending task #%d",count);
34   count++;
35
36   bcast_task_t bt;
37   if (!xbt_dynar_is_empty(reclaimed)) {
38      bt = xbt_dynar_pop_as(reclaimed,bcast_task_t);
39   } else {
40     bt = xbt_new(s_bcast_task_t,1);
41   }
42   bt->i=from;
43   bt->j=(from+to)/2;
44   bt->k=to;
45
46   SD_task_t task = SD_task_create_comm_e2e(NULL,bt,424242);
47
48   XBT_DEBUG("Schedule task between %d and %d",bt->i,bt->j);
49   SD_task_schedulel(task,2,ws_list[bt->i],ws_list[bt->j]);
50   SD_task_watch(task,SD_DONE);
51 }
52
53
54 int main(int argc, char **argv) {
55   xbt_os_timer_t timer = xbt_os_timer_new();
56
57   /* initialization of SD */
58   SD_init(&argc, argv);
59
60   if (argc > 1) {
61     SD_create_environment(argv[1]);
62   } else {
63     SD_create_environment("../../platforms/One_cluster_no_backbone.xml");
64   }
65
66   ws_list = SD_workstation_get_list();
67   reclaimed = xbt_dynar_new(sizeof(bcast_task_t),xbt_free_ref);
68   xbt_dynar_t done = NULL;
69
70   xbt_os_timer_start(timer);
71   send_one(0,SD_workstation_get_number());
72   do {
73     if (done != NULL && !xbt_dynar_is_empty(done)) {
74       unsigned int cursor;
75       SD_task_t task;
76
77       xbt_dynar_foreach(done, cursor, task) {
78         bcast_task_t bt = SD_task_get_data(task);
79
80         if (bt->i != bt->j -1)
81           send_one(bt->i,bt->j);
82         if (bt->j != bt->k -1)
83           send_one(bt->j,bt->k);
84
85         if (xbt_dynar_length(reclaimed)<100) {
86           xbt_dynar_push_as(reclaimed,bcast_task_t,bt);
87         } else {
88           free(bt);
89         }
90         SD_task_destroy(task);
91       }
92       xbt_dynar_free(&done);
93     }
94     done=SD_simulate(-1);
95   } while(!xbt_dynar_is_empty(done));
96   xbt_os_timer_stop(timer);
97   printf("%lf\n", xbt_os_timer_elapsed(timer) );
98
99   xbt_dynar_free(&done);
100   xbt_dynar_free(&reclaimed);
101
102   SD_exit();
103   XBT_INFO("Done. Bailing out");
104   return 0;
105 }