Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Usage of xbt_new0 instead calloc
[simgrid.git] / examples / msg / parallel_task / parallel_task.c
1 /*      $Id$     */
2
3 /* Copyright (c) 2002,2003,2004 Arnaud Legrand. All rights reserved.        */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #include <stdio.h>
9 #include "msg/msg.h" /* Yeah! If you want to use msg, you need to include msg/msg.h */
10 #include "xbt/sysdep.h" /* calloc, printf */
11
12 /* Create a log channel to have nice outputs. */
13 #include "xbt/log.h"
14 #include "xbt/asserts.h"
15 XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test,"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,
49                                    NULL);
50   MSG_parallel_task_execute(ptask);
51
52   
53   INFO0("Goodbye now!");
54   free(communication_amount);
55   free(computation_amount);
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","KCCFLN05"); */
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 }