Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
0fcdfbd3371a5df4aae64b7ab8f1e91090d16a57
[simgrid.git] / include / simgrid / simdag.h
1 /* Copyright (c) 2006-2010, 2012-2016. 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 #ifndef SIMDAG_SIMDAG_H
8 #define SIMDAG_SIMDAG_H
9
10 #include "xbt/misc.h"
11 #include "xbt/dynar.h"
12 #include "xbt/dict.h"
13
14 #include "simgrid/link.h"
15
16 SG_BEGIN_DECL()
17
18 /** @brief Link datatype
19     @ingroup SD_datatypes_management
20
21     A link is a network node represented as a <em>name</em>, a <em>current
22     bandwidth</em> and a <em>current latency</em>. A route is a list of
23     links between two workstations.
24
25     @see SD_link_management */
26 typedef Link *SD_link_t;
27
28 /** @brief Task datatype
29     @ingroup SD_datatypes_management
30
31     A task is some <em>computing amount</em> that can be executed
32     in parallel on several workstations. A task may depend on other
33     tasks, this means that the task cannot start until the other tasks are done.
34     Each task has a <em>\ref e_SD_task_state_t "state"</em> indicating whether
35     the task is scheduled, running, done, etc.
36
37     @see SD_task_management */
38 typedef struct SD_task *SD_task_t;
39
40 /** @brief Task states
41     @ingroup SD_datatypes_management
42
43     @see SD_task_management */
44 typedef enum {
45   SD_NOT_SCHEDULED = 0,      /**< @brief Initial state (not valid for SD_watch and SD_unwatch). */
46   SD_SCHEDULABLE = 0x0001,   /**< @brief A task becomes SD_SCHEDULABLE as soon as its dependencies are satisfied */
47   SD_SCHEDULED = 0x0002,     /**< @brief A task becomes SD_SCHEDULED when you call function
48                                   SD_task_schedule. SD_simulate will execute it when it becomes SD_RUNNABLE. */
49   SD_RUNNABLE = 0x0004,      /**< @brief A scheduled task becomes runnable is SD_simulate as soon as its dependencies are satisfied. */
50   SD_RUNNING = 0x0008,       /**< @brief An SD_RUNNABLE task becomes SD_RUNNING when it is launched. */
51   SD_DONE = 0x0010,          /**< @brief The task is successfully finished. */
52   SD_FAILED = 0x0020         /**< @brief A problem occurred during the execution of the task. */
53 } e_SD_task_state_t;
54
55 /** @brief Task kinds
56     @ingroup SD_datatypes_management
57
58     @see SD_task_management */
59 typedef enum {
60   SD_TASK_NOT_TYPED = 0,      /**< @brief no specified type */
61   SD_TASK_COMM_E2E = 1,       /**< @brief end to end communication */
62   SD_TASK_COMP_SEQ = 2,        /**< @brief sequential computation */
63   SD_TASK_COMP_PAR_AMDAHL = 3, /**< @brief parallel computation (Amdahl's law) */
64   SD_TASK_COMM_PAR_MXN_1D_BLOCK = 4 /**< @brief MxN data redistribution (1D Block distribution) */
65 } e_SD_task_kind_t;
66
67
68 /** @brief Storage datatype
69     @ingroup SD_datatypes_management
70
71  TODO PV: comment it !
72
73     @see SD_storage_management */
74 typedef xbt_dictelm_t SD_storage_t;
75
76 /************************** Workstation handling ****************************/
77
78 /** @defgroup sg_host_management Hosts
79  *  @brief Functions for managing the Hosts
80  *
81  *  This section describes the functions for managing the hosts.
82  *
83  *  A host is a place where a task can be executed.
84  *  A host is represented as a <em>physical resource with computing
85  *  capabilities</em> and has a <em>name</em>.
86  *
87  *  The hosts are created when you call the function SD_create_environment.
88  *
89  *  @see sg_host_t
90  *  @{
91  */
92 XBT_PUBLIC(const SD_link_t *) SD_route_get_list(sg_host_t src,
93                                                 sg_host_t dst);
94 XBT_PUBLIC(int) SD_route_get_size(sg_host_t src, sg_host_t dst);
95
96 XBT_PUBLIC(double) SD_route_get_latency(sg_host_t src, sg_host_t dst);
97 XBT_PUBLIC(double) SD_route_get_bandwidth(sg_host_t src, sg_host_t dst);
98
99 XBT_PUBLIC(const char*) SD_storage_get_host(SD_storage_t storage);
100 /** @} */
101
102 /************************** Task handling ************************************/
103
104 /** @defgroup SD_task_management Tasks
105  *  @brief Functions for managing the tasks
106  *
107  *  This section describes the functions for managing the tasks.
108  *
109  *  A task is some <em>working amount</em> that can be executed
110  *  in parallel on several workstations. A task may depend on other
111  *  tasks, this means that the task cannot start until the other tasks are done.
112  *  Each task has a <em>\ref e_SD_task_state_t "state"</em> indicating whether
113  *  the task is scheduled, running, done, etc.
114  *
115  *  @see SD_task_t, SD_task_dependency_management
116  *  @{
117  */
118 XBT_PUBLIC(SD_task_t) SD_task_create(const char *name, void *data,
119                                      double amount);
120 XBT_PUBLIC(void *) SD_task_get_data(SD_task_t task);
121 XBT_PUBLIC(void) SD_task_set_data(SD_task_t task, void *data);
122 XBT_PUBLIC(e_SD_task_state_t) SD_task_get_state(SD_task_t task);
123 XBT_PUBLIC(const char *) SD_task_get_name(SD_task_t task);
124 XBT_PUBLIC(void) SD_task_set_name(SD_task_t task, const char *name);
125 XBT_PUBLIC(void) SD_task_set_rate(SD_task_t task, double rate);
126
127 XBT_PUBLIC(void) SD_task_watch(SD_task_t task, e_SD_task_state_t state);
128 XBT_PUBLIC(void) SD_task_unwatch(SD_task_t task, e_SD_task_state_t state);
129 XBT_PUBLIC(double) SD_task_get_amount(SD_task_t task);
130 XBT_PUBLIC(void) SD_task_set_amount(SD_task_t task, double amount);
131 XBT_PUBLIC(double) SD_task_get_alpha(SD_task_t task);
132 XBT_PUBLIC(double) SD_task_get_remaining_amount(SD_task_t task);
133 XBT_PUBLIC(double) SD_task_get_execution_time(SD_task_t task,
134                                               int workstation_nb,
135                                               const sg_host_t *
136                                               workstation_list,
137                                               const double *flops_amount,
138                                               const double *bytes_amount);
139 XBT_PUBLIC(e_SD_task_kind_t) SD_task_get_kind(SD_task_t task);
140 XBT_PUBLIC(void) SD_task_schedule(SD_task_t task, int workstation_nb,
141                                   const sg_host_t *
142                                   workstation_list,
143                                   const double *flops_amount,
144                                   const double *bytes_amount,
145                                   double rate);
146 XBT_PUBLIC(void) SD_task_unschedule(SD_task_t task);
147 XBT_PUBLIC(double) SD_task_get_start_time(SD_task_t task);
148 XBT_PUBLIC(double) SD_task_get_finish_time(SD_task_t task);
149 XBT_PUBLIC(xbt_dynar_t) SD_task_get_parents(SD_task_t task);
150 XBT_PUBLIC(xbt_dynar_t) SD_task_get_children(SD_task_t task);
151 XBT_PUBLIC(int) SD_task_get_workstation_count(SD_task_t task);
152 XBT_PUBLIC(sg_host_t *) SD_task_get_workstation_list(SD_task_t
153                                                             task);
154 XBT_PUBLIC(void) SD_task_destroy(SD_task_t task);
155 XBT_PUBLIC(void) SD_task_dump(SD_task_t task);
156 XBT_PUBLIC(void) SD_task_dotty(SD_task_t task, void *out_FILE);
157
158 XBT_PUBLIC(SD_task_t) SD_task_create_comp_seq(const char *name, void *data,
159                                               double amount);
160 XBT_PUBLIC(SD_task_t) SD_task_create_comp_par_amdahl(const char *name,
161                                                      void *data,
162                                                      double amount,
163                                                      double alpha);
164 XBT_PUBLIC(SD_task_t) SD_task_create_comm_e2e(const char *name, void *data,
165                                               double amount);
166 XBT_PUBLIC(SD_task_t) SD_task_create_comm_par_mxn_1d_block(const char *name,
167                                                            void *data,
168                                                            double amount);
169
170 XBT_PUBLIC(void) SD_task_distribute_comp_amdahl(SD_task_t task, int ws_count);
171 XBT_PUBLIC(void) SD_task_schedulev(SD_task_t task, int count,
172                                    const sg_host_t * list);
173 XBT_PUBLIC(void) SD_task_schedulel(SD_task_t task, int count, ...);
174
175
176 /** @brief A constant to use in SD_task_schedule to mean that there is no cost.
177  *
178  *  For example, create a pure computation task (no comm) like this:
179  *
180  *  SD_task_schedule(task, my_workstation_nb,
181  *                   my_workstation_list,
182  *                   my_flops_amount,
183  *                   SD_TASK_SCHED_NO_COST,
184  *                   my_rate);
185  */
186 #define SD_SCHED_NO_COST NULL
187
188 /** @} */
189
190
191 /** @defgroup SD_task_dependency_management Tasks dependencies
192  *  @brief Functions for managing the task dependencies
193  *
194  *  This section describes the functions for managing the dependencies between the tasks.
195  *
196  *  @see SD_task_management
197  *  @{
198  */
199 XBT_PUBLIC(void) SD_task_dependency_add(const char *name, void *data,
200                                         SD_task_t src, SD_task_t dst);
201 XBT_PUBLIC(void) SD_task_dependency_remove(SD_task_t src, SD_task_t dst);
202 XBT_PUBLIC(const char *) SD_task_dependency_get_name(SD_task_t src,
203                                                      SD_task_t dst);
204 XBT_PUBLIC(void *) SD_task_dependency_get_data(SD_task_t src,
205                                                SD_task_t dst);
206 XBT_PUBLIC(int) SD_task_dependency_exists(SD_task_t src, SD_task_t dst);
207 /** @} */
208
209 /************************** Global *******************************************/
210
211 /** @defgroup SD_simulation Simulation
212  *  @brief Functions for creating the environment and launching the simulation
213  *
214  *  This section describes the functions for initializing SimDag, launching
215  *  the simulation and exiting SimDag.
216  *
217  *  @{
218  */
219 XBT_PUBLIC(void) SD_init(int *argc, char **argv);
220 XBT_PUBLIC(void) SD_config(const char *key, const char *value);
221 XBT_PUBLIC(void) SD_application_reinit(void);
222 XBT_PUBLIC(void) SD_create_environment(const char *platform_file);
223 XBT_PUBLIC(xbt_dynar_t) SD_simulate(double how_long);
224 XBT_PUBLIC(double) SD_get_clock(void);
225 XBT_PUBLIC(void) SD_exit(void);
226 XBT_PUBLIC(xbt_dynar_t) SD_daxload(const char *filename);
227 XBT_PUBLIC(xbt_dynar_t) SD_dotload(const char *filename);
228 XBT_PUBLIC(xbt_dynar_t) SD_PTG_dotload(const char *filename);
229 XBT_PUBLIC(xbt_dynar_t) SD_dotload_with_sched(const char *filename);
230
231 /** @} */
232
233 SG_END_DECL()
234
235 #include "simgrid/instr.h"
236
237 #endif