Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Rename directory.
[simgrid.git] / examples / msg / parallel_task / parallel_task.c
1 /* Copyright (c) 2007, 2008, 2009, 2010. 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 "msg/msg.h"            /* Yeah! If you want to use msg, you need to include msg/msg.h */
9 #include "xbt/sysdep.h"         /* calloc, printf */
10
11 /* Create a log channel to have nice outputs. */
12 #include "xbt/log.h"
13 #include "xbt/asserts.h"
14 XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test,
15                              "Messages specific for this msg example");
16
17 int test(int argc, char *argv[]);
18 MSG_error_t test_all(const char *platform_file);
19
20 /** Emitter function  */
21 int test(int argc, char *argv[])
22 {
23   int slaves_count = 0;
24   m_host_t *slaves = NULL;
25   double task_comp_size = 100000;
26   double task_comm_size = 10000;
27   double *computation_amount = NULL;
28   double *communication_amount = NULL;
29   m_task_t ptask = NULL;
30   int i, j;
31
32   slaves_count = MSG_get_host_number();
33   slaves = MSG_get_host_table();
34
35   computation_amount = xbt_new0(double, slaves_count);
36   communication_amount = xbt_new0(double, slaves_count * slaves_count);
37
38   for (i = 0; i < slaves_count; i++)
39     computation_amount[i] = task_comp_size;
40
41   for (i = 0; i < slaves_count; i++)
42     for (j = i + 1; j < slaves_count; j++)
43       communication_amount[i * slaves_count + j] = task_comm_size;
44
45   ptask = MSG_parallel_task_create("parallel task",
46                                    slaves_count, slaves,
47                                    computation_amount,
48                                    communication_amount, NULL);
49   MSG_parallel_task_execute(ptask);
50
51   /* There is no need to free that! */
52 /*   free(communication_amount); */
53 /*   free(computation_amount); */
54
55   INFO0("Goodbye now!");
56   free(slaves);
57   return 0;
58 }
59
60 /** Test function */
61 MSG_error_t test_all(const char *platform_file)
62 {
63   MSG_error_t res = MSG_OK;
64
65   MSG_config("workstation/model", "ptask_L07");
66   MSG_set_channel_number(1);
67   MSG_create_environment(platform_file);
68
69   MSG_process_create("test", test, NULL, MSG_get_host_table()[0]);
70   res = MSG_main();
71
72   INFO1("Simulation time %g", MSG_get_clock());
73   return res;
74 }
75
76 int main(int argc, char *argv[])
77 {
78   MSG_error_t res = MSG_OK;
79
80   MSG_global_init(&argc, argv);
81   if (argc < 2) {
82     printf("Usage: %s platform_file\n", argv[0]);
83     printf("example: %s msg_platform.xml\n", argv[0]);
84     exit(1);
85   }
86   res = test_all(argv[1]);
87   MSG_clean();
88
89   if (res == MSG_OK)
90     return 0;
91   else
92     return 1;
93 }