Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Cleanup some gtk-doc-tools leftover
[simgrid.git] / doc / modules.doc
1 /** 
2   \defgroup SimGrid_API  API of SimGrid */
3
4 /** \defgroup XBT_API      XBT (eXtended Bundle of tools)
5        \ingroup SimGrid_API
6        \brief The core toolbox of SimGrid, containing usefull datatypes,
7        portability support and so on.
8 */
9 /**    \defgroup XBT_ground Grounding features of the XBT (logging and error reporting)
10        \ingroup XBT_API        */
11        /** \addtogroup  XBT_log
12            \ingroup XBT_ground  */
13            /** \defgroup XBT_log_cats Existing log categories
14                \ingroup XBT_log
15                \brief (automatically extracted) 
16                
17                This is the list of all existing log categories in SimGrid.
18                This list was automatically extracted from the source code by
19                the src/xbt_log_extract_hierarchy utility.
20                
21                You can thus be certain that it is uptodate, but it may somehow
22                lack a final manual touch.
23                Anyway, nothing's perfect ;)
24                */
25        /** \addtogroup  XBT_error
26            \ingroup XBT_ground  */
27
28 /**    \defgroup XBT_structs  Datatypes defined in the XBT
29        \ingroup XBT_API        */
30 /**       \addtogroup XBT_dict
31           \ingroup XBT_structs */
32 /**       \addtogroup XBT_dynar
33           \ingroup XBT_structs */
34 /**       \addtogroup XBT_fifo
35           \ingroup XBT_structs */
36 /**       \addtogroup XBT_set
37           \ingroup XBT_structs */
38 /**        \addtogroup XBT_swag
39           \ingroup XBT_structs */
40 /**       \addtogroup XBT_heap
41           \ingroup XBT_structs */
42      
43 /**    \defgroup XBT_port     Portability support defined in the XBT 
44                               (you shouldn't use it directly) 
45        \ingroup XBT_API        */
46 /**       \addtogroup XBT_context 
47           \ingroup XBT_port    */
48 /**       \addtogroup XBT_sysdep
49           \ingroup XBT_port    */
50
51 /** \defgroup SURF_API       SURF (simulator kernel)
52     \ingroup SimGrid_API
53     \brief Kernel of all the simulators used in SimGrid, and associated models.
54  
55       SURF provides the core functionnalities to simulate a virtual
56       platform. It is very low-level and is not intended to be used as
57       such but rather to serve as a basis for higher-level simulators.
58       We're still working on it and the structure is a little bit
59       complex. So we'll document it only when we'll be completely satisfied of 
60       the way it is organized.
61
62       It is where platform models are encoded. If you need a model that is not 
63       encoded yet, please tell me (<arnaud.legrand@imag.fr>) and we'll
64       see if it is feasible or not (hopefully it should be but who knows).
65
66       Please note that as it is not really intended for public use,
67       this module is only partially documented.
68 */
69
70 /** \defgroup MSG_API      MSG
71     \ingroup SimGrid_API
72     \brief Simple programming environment 
73   
74       MSG was the first distributed programming environment provided within
75       SimGrid. While almost realistic, it remains quite simple (simplistic?).
76
77       \section MSG_who Who should use this (and who shouldn't)
78       
79       You should use this model if you want to study some heuristics for a
80       given problem you don't really want to implement. If you want to get a
81       real implementation of your solution, have a look at the \ref GRAS_API 
82       programming environment. If you want to study an existing MPI program,
83       have a look at the \ref SMPI_API one. If none of those programming
84       environments fits your needs, you may consider implementing your own 
85       directly on top of \ref SURF_API (but you probably want to contact us
86       before). 
87 */
88 /**     \addtogroup m_datatypes_management
89         \ingroup MSG_API  */
90 /**     \addtogroup m_process_management
91         \ingroup MSG_API  */
92 /**     \addtogroup m_host_management
93         \ingroup MSG_API  */
94 /**     \addtogroup m_task_management
95         \ingroup MSG_API  */
96 /**     \addtogroup msg_gos_functions
97         \ingroup MSG_API  */
98 /**     \addtogroup m_channel_management
99         \ingroup MSG_API  */
100 /**     \addtogroup msg_easier_life
101         \ingroup MSG_API  */
102 /**     \addtogroup msg_simulation
103         \ingroup MSG_API  */
104
105
106 /** \defgroup GRAS_API      GRAS
107     \ingroup SimGrid_API
108     \brief Realistic programming environment (Grid Reality And Simulation)
109   
110     GRAS provide a complete API to implement distributed application on top
111     of heterogeneous plateforms. In addition to the SimGrid implementation
112     of this interface (allowing you to work on your application within the
113     comfort of the simulator), an implementation suited to real platforms is
114     also provided (allowing you to really use your application once you're
115     done with developing it).
116   
117     GRAS thus constitute a complete grid application developement framework,
118     encompassing both developer helping tools (the simulator and associated
119     tools) and an efficient while portable execution runtime.
120   
121     \section GRAS_who Who should use this (and who shouldn't)
122     
123     You should use this programming environment if you want to develop real
124     applications, ie if the final result of your work is a program which 
125     may eventually be distributed. 
126     If you just want to study some heuristics for a given problem you don't
127     want to implement really (ie, if your result would be a theorem), have a
128     look at the \ref MSG_API one.
129     If you want to study an existing MPI program, have a look at the 
130     \ref SMPI_API one. 
131     If none of those programming environments fits your needs, you may
132     consider implementing your own directly on top of \ref SURF_API (but you
133     probably want to contact us before).
134 */
135
136 /** \defgroup SMPI_API      SMPI
137     \ingroup SimGrid_API
138     \brief Programming environment for the simulation of MPI applications
139   
140     Once implemented, this programming environment will allow you to study
141     within the simulator any MPI application without having to modify them
142     for that. In other words, it will constitute an emulation solution for
143     parallel codes.
144     
145     \section SMPI_who Who should use this (and who shouldn't)
146     
147     You should use this programming environment of the SimGrid suite if you
148     want to study existing MPI applications.
149     If you want to work on a distributed application, have a look at the 
150     \ref GRAS_API environment. 
151     If you want to study some heuristics for a given problem (and if your
152     goal is to produce theorems, not code), have a look at the \ref MSG_API
153     environment.
154     If none of those programming environments fits your needs, you may
155     consider implementing your own directly on top of \ref SURF_API (but you
156     probably want to contact us before).
157   
158  */