Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Improved code documentation for SIMIX network.
[simgrid.git] / ChangeLog
1 SimGrid (3.3.4) unstable; urgency=low
2
3  The "Desktop Grid needs love too" release.
4
5  Models improvements:
6  * Major speedup in the maxmin system solving by using lazy evaluation
7    Instead of solving completely the maxmin system at each iteration, 
8      only invalidate (and recompute) the modified parts. 
9    This new feature is enabled in default models but you can try to
10      turn it on with "--cfg:maxmin-selective-update=1" for other models.
11  * Cas01 IMproved as default CPU model
12    This CPU model is the same Cas01 model, but it uses the
13      maxmin-selective-update flag and a heap structure to manage
14      actions on SURF kernel. 
15    It reduces the complexity to find the next action to finish and,
16      consequently, it's faster than the old Cas01.
17    This is the new default CPU model (Cas01).   
18  * Rename the old Cas01 model to Cas01_fullupdate
19    Keep the old cpu model Cas01 with the new name of Cas01_fullupdate.
20    Use "--cfg=cpu_model:Cas01_fullupdate" to use the old default CPU model.
21  * CpuTI (CPU Trace Integration)
22    A new CPU model whose objective is simulate faster when using
23      availability trace files. 
24    Instead of using a full featured, over engineered maxmin system for
25      CPU modeling, this model does the pre-integration of traces files
26      to calculate the amount of CPU power available, and so, executes
27      faster than the old CPU models. 
28    Use "--cfg=cpu_model:CpuTI" to change to this CPU model.
29  * Use LV08 as default network model since it gives better accuracy
30     for small messages and shouldn't change things for big ones.
31    Use --cfg=network_model:CM02 to get the previous behavior.
32    
33    
34          ******************************************
35          *DO NOT MIX 3.3.4 RESULTS WITH OLDER ONES* 
36          ******************************************
37    * The new CPU model may changes simulations!
38      The point is that events occurring at the exact same timestamp
39         are not scheduled in the same order with the old and new 
40         version. This may be enough to completely change the execution
41         of simulations in some cases. 
42    * The new network model will change simulations!
43      This new model is more realistic than the previous one, so you
44        should consider redoing your old experiments with this model.
45      Sorry for the inconvenience.
46
47  Bug fixes:
48  * Fix a major regression from 3.2 where the timeout provided to
49    MSG_task_put_with_timeout() was used as absolute time before which
50    the comm should be done.
51  * Fix a source-level compatibility glitch from 3.2: after defining
52    MSG_USE_DEPRECATED, you can use the old name
53    MSG_task_put_with_time_out() for MSG_task_put_with_timeout()
54  * Allow to compile from the SVN with automake 1.11
55  * Fix some problems when using the "start_time" tag in deployment XMLs.
56
57  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr> 
58
59 SimGrid (3.3.3) stable; urgency=low
60
61  The "Need for Speed" release.
62  
63  The timings done to validate the 3.3.2 were faulty. 
64  Instead of being 5% faster, it was 15% slower (compared to 3.3.1).
65    
66  The problem was a conversion from a manually handled vector to
67    xbt_dynar_t on the critical path. 
68  xbt_dynar_foreach calls functions, inducing stack management crap.
69
70  We inlined these functions and xbt_dynar_foreach is now breath taking.
71  We also inlined xbt_swag_belong on the way.
72
73  Here are some approximate speedup measurements (on master/slaves
74   simulations lasting between 10s and 20s each):
75    3.3.1                   -> 3.3.2: about same performance
76    3.3.2                   -> 3.3.3: 40% speedup
77    3.3.1                   -> 3.3.3: 40% speedup
78    3.3.1 with inline patch -> 3.3.3: 30% speedup
79    
80  Our reading is that the refactoring which occurred in 3.3.2 made us
81   suffer much more from the xbt_dynar_foreach low performance, but
82   once we solved this, this refactoring proved to be very performance
83   effective. From the 40% speedup, somehow, 10% are due to the
84   inlining and 30% to the refactoring.
85
86  That's a pitty that gcc cannot inline functions placed in other files
87   alone. We have to choose between:
88   - break the encapsulation (by putting private data structures and
89     accessors in headers files to help gcc)
90   - live with low performance 
91   - switch to a decent compiler such as icc (not quite possible).
92
93  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr> Thu, 20 Aug 2009 21:21:33 +0200
94
95 SimGrid (3.3.2) stable; urgency=low
96
97  The "Simplicity does not preceed complexity, but follows it" release.
98
99  The main contributors of this release were (lexical order):
100    Silas De Munck, Stéphane Genaud, Martin Quinson, Cristian Rosa.
101        
102  SURF: 
103   * Extract the routing logic into its own object.
104     (was dupplicated in network.c and workstation_LV07.c;
105      Allows to implement other ways of storing that info)
106     => kill now useless network_card concept
107     - Use dynar to represent routes (instead of void** + int*)
108     - kill link_set (use surf_network_model->resource_set instead)
109     - Add a command-line option to choose the routing schema to use
110     - Add three new models: 
111       * Floyd (shortest path computed at initialization)
112       * Dijikstra (shortest path recomputed all the time)
113       * Cached Dijikstra (shortest path computed on need)
114       All these models where contributed by Silas De Munck, and are
115       described in his ICCS09 paper.
116
117   * Simplify model declaration
118     (less redirections, less function to write when defining a model)
119     - Factorize stuff between models:
120       - model_init/exit
121       - Set of resources:
122         surf_model_resource_set(model)
123         surf_model_resource_by_name(model, name)
124     - Unify the types of models in s_surf_model_t (using an union)
125     - Embeed fields of common_public directly into s_surf_model_t
126     - Rename model methods:
127       action_free ~> action_unref
128       action_change_state ~> action_state_set
129       action_get_state    ~> action_state_get
130     - Change model methods into functions :
131       (model)->common_public->action_use  ~> surf_action_ref
132       
133   * Implement a generic resource; use it as ancestor to specific ones
134     (allows to kill duplicated code in models)
135     Drawback: timer command don't need no name nor properties;
136               workstation_CLM03 don't need no properties
137     (but I guess we can live with those few bytes wasted)
138     
139   * Improve the action object model
140     - implement a constructor avoiding dupplicated code about field
141       initialization in generic_action part.
142       
143   * Kill the SDP model: it has an external dependency, is deprecated
144     in flavor of modern lmm models, and didn't compile since a while
145  
146  SIMIX:
147   * Relocation of the context module from XBT to SIMIX.
148     (the context were decoupled from the simix processes, duplicating a lot of code)
149     => a lot of code was factorized
150     - less overhead is introduced during scheduling
151     - simpler API for the context factory
152     - the logic for process creation,destruction and manipulation was simplified
153   * Simplification of the s_smx_process_t data structure.
154     => accesing the simix level data associated to a process is faster now, 
155        and the code is a lot more readable.
156        
157  SMPI:
158   * Implement some more MPI primitives: 
159     MPI_Bcast, MPI_Waitany, MPI_Waitall, MPI_Reduce, MPI_Allreduce, MPI_Scatter, MPI_Sendrecv, MPI_Alltoall
160     -implementation: Bcast: flat or 2-ary tree (default), 
161                      Barrier: 4-ary tree,
162                      Reduce: flat tree
163                      Allreduce: Reduce then Bcast
164                      Alltoall: "basic_linear" if data per proc < 3Kb, "otherwise pairwise". 
165                                Not yet implemented: "Bruck" for data per proc < 200b and comm size > 12
166                      Alltoallv: flat tree, like ompi
167                      Scatter: flat tree
168   * Add support for optimized collectives (Bcast is now binomial by default)
169   * Port smpirun and smpicc to OS X
170
171  SimDag:
172   * Kill SD_link_get_properties: hard to maintain and makes very little sense
173     Shout out if you used it.
174     
175  GRAS:
176   * Display the list of still queued messages in SG mode when existing
177     the process.
178
179  XBT:
180   * Add xbt_set_get_by_name_or_null() [Silas De Munck]
181   * Add xbt_graph_node_get_outedges() [Silas De Munck]
182   * Add xbt_str_from_file(FILE*)
183   * Add xbt_dict_get_key achieving a linear reverse search
184   * Remove the context module 
185
186  Portability report of this version:
187   * Main portability targets:
188     - Linux(debian)/x86/context   
189     - Linux(debian)/x86/pthreads 
190     - Linux(debian)/amd64/context 
191     - Linux(debian)/amd64/pthreads
192     On these, we still have the eratic breakages of gras/pmm and 
193       amok/saturate_sg reported in previous version. We still think
194       that the tests are the cause of the fault, not the tested code.
195       
196     - Mac OSX Leopard/x86/context
197     Still false negative in tesh autotesting.
198     Smpi still fails, but this time because readlink does not accept -f
199     Everything seems to work properly beside of that.
200     
201   * Exotic platforms:
202     - AIX version 5.3 (only tested contexts this time)
203       Smpi still fails there because mktemp is not installed. 
204       Everything seems to work properly beside of that.
205     - OpenSolaris 11
206       I managed to compile it for the first time, but several breakages.
207       Won't delay the release for this exotic platform.
208     
209   * Windows: it's still lagging behind. If you want to help, please
210     stand up.
211
212  Timing report of this version:
213   This version seem to be more than 5% faster than 3.3.1 (on linux
214     64bits with contextes). The gain is less than expected, we are
215     investigating this for next release.
216
217  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr> Wed, 19 Aug 2009 17:07:12 +0200
218
219 SimGrid (3.3.1) stable; urgency=low
220
221  OVERALL CHANGES:
222   * Implement a --cfg-help to show existing configuration variables
223   * Build chain do not require doxygen in maintainer mode
224
225  GRAS:
226   * fix a bug on struct sizeof computation, which prevented the
227     exchange of arrays of structs in some conditions
228     - added a regression test about this in datadesc_usage
229   * Allow the exchange of 0-long dynamic vectors.
230     - for that, use -1 as indicator of dynamic size instead of 0
231     - This implied to change any size from unsigned long to long,
232       reducing a bit communication abilities, but I guess that with
233       64bits being quite common, this is more than enough.
234     - This also induce a protocol change, thus bumping network protocol
235       version from 0 to 1 (if we have external users, we have to get
236       clean on that point too ;)
237     - added two regression tests about this in datadesc_usage
238   * Be more verbose when propagating local exceptions
239     This helps debugging.
240   * Display the status of simulated processes when receiving SIGINT in
241     simulation mode
242
243  MSG:
244   * Allow to control the simulation from a trace file.
245     New functions MSG_action_register() and MSG_action_trace_run()
246     The first one allows to associate a function execution to each
247      kind of action while the second one parses a trace file and
248      triggers the corresponding actions within the system.
249     For now, only a toy example is provided in examples/msg/actions
250   * Add an exemple of process migration in examples/msg/migration
251   * Fix a bug in task exchange which broke MSG_task_get_sender()
252     Add a teshsuite regression test for that.
253     [Bug: if MSG_task_get_sender() is called after sender exit,
254      bad things happen]
255   * Fix a bug which prevented suspend/resume to work properly
256   * Display the status of simulated processes when receiving SIGINT
257     This fixes a regression of v3.3. due to the introduction of SIMIX
258   * Bug fixing in failure management:
259     - trace could not start by a failure at time 0
260     - failure during communications were not working
261         
262  SIMIX:
263   * Add SIMIX_process_set_name() to change the name of the current
264     process in the log messages.
265   * Store smx_hosts in a dict since we only retrieve them by name
266   * Move the configuration infrastructure to surf
267
268  SIMDAG:
269   * Move the configuration infrastructure to surf
270
271  SMPI: 
272   * Massive internal cleanups:
273     - Store internal structures on processes instead of hosts (allows
274       to have more than one process per host, in addition of being more 
275       logical)
276     - Cleanup the initialization/finalization process
277     - Kill a whole bunch of unneeded synchronization: 
278       processes run in exclusive manner within the simulator
279     - Move queues from global tables to process data fields
280   * Improve smpirun:
281     - now accept -platform and -hostfile arguments
282     - Pass the right rank value to processes according to the hostfile
283   * Compile the examples by default, and use them as regression tests
284   * Implement MPI_Wtime()
285   * Change the reference speed to a command line option
286   
287  SURF:
288   * TCP_gamma can now be specified as command line option using
289     --cfg=TCP_gamma:10000000.0
290   * Change the --surf-path cmd line option into --cfg=path:
291   
292  XBT:
293   * Also include strbuff from xbt.h public header
294   * xbt_ex_display(): do not free the exception after displaying 
295     This allows to do more with the given exception afterward.
296     Users should call xbt_ex_free() themselves.
297     
298     
299
300  Portability report of this version:
301   * Main portability targets:
302     - Linux(debian)/x86/context   
303     - Linux(debian)/x86/pthreads 
304     - Linux(debian)/amd64/context 
305     - Linux(debian)/amd64/pthreads
306     These targets fail about 1/10 of times on gras/pmm, but we believe
307       that this is because of the test, not because of simgrid.
308     amok/saturate_sg fails even more rarely, and the test may not be
309       the problem.
310       
311     - Mac OSX Leopard/x86/context
312     The test suite still spits tons of errors because some obscure
313       force prevents us from removing the temporary directories
314       arguing that they still contain some metadata I've never heard of.
315     Smpi fails because seq is not installed.
316     Everything seems to work properly beside of that.
317     
318   * Exotic platforms:
319     - AIX version 5.3 (both contexts and pthread)
320       Smpi still fails there because mktemp is not installed. 
321       XML inclusions seems rosty on AIX.
322     
323   * Windows: it's still lagging behind. If you want to help, please
324     stand up.
325
326  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>  Sat, 27 Jun 2009 00:14:30 +0200
327
328 SimGrid (3.3) stable; urgency=high
329
330  OVERALL CHANGES:
331
332   * JAVA BINDINGS for MSG (you dreamt of them? We made them)
333     [Malek Cherier & Mt]
334
335   * Introduce the SIMIX module: factorize code between MSG and GRAS.
336     [Bruno Donassolo]
337   
338     Until now, GRAS were using MSG as an interface to SURF. It was
339     quite difficult because both interface have several differences
340     (MSG channels vs GRAS sockets were the most notable point).
341    
342     This also opens the gate to SMPI (which should occur soon) and speed
343     up simulations by to 40% (even if it were not the main goal).
344   
345     ************************************** 
346     *DO NOT MIX 3.2 RESULTS WITH 3.3 ONES* Simix may changes simulations!
347     **************************************
348     The point is that events occuring at the exact same timestamp are
349     not scheduled in the same order with the old and new version. This
350     may be enough to completely change the execution of simulations in
351     some cases. Sorry for the inconvenience.
352
353   * Cleanup and upgrade the XML format to push further scalability
354     issues (check http://hal.inria.fr/inria-00256883/ for more info)
355
356   * Improve the testing infrastructure with tesh. Now a very large part of
357     the code is tested not only by being run but also by checking that the
358     output match an expected output [Mt].
359
360   * Move on to FleXML v1.7 for the embeeded XML parsers. This version
361     is really less memory-demanding, which should allow you to use
362     larger files in SimGrid [AL].
363     
364   * Inform valgrind about our contextes, so that it becomes usable
365     with the default (and more effecient) version of SimGrid
366     [contributed by Sékou Diakite, many thanks]
367
368  GRAS:
369   * Introduce a listener thread in charge of receiving incomming
370     messages from the network. It allows to overlap communication and
371     computation but most notably, it removes some stupid deadlocks due
372     to the fact that so far, a process could not send and receive at
373     the same time. This made most non trivial communication schema
374     impossible.
375   * Convert the PIDs from long int to int to match the MSG ones (and
376     linux ones too) [Mt]
377   * New function: gras_agent_spawn() to launch a new process on
378     current host. Only working in simulation for now. [Mt]
379   * New function: gras_os_hostport() returning a constant form (ie,
380     not needing to be freed) of "gras_os_hostname():gras_os_myport()"
381
382  XBT:
383   * Make the backtrace of exceptions more human readable [Mt]
384   * New module: xbt/str [Mt]
385     a ton of string utility functions (split, join, printf to a newly
386     allocated buffer, trim, etc)
387   * New module: xbt/hash [Mt]
388     SHA1 hashing algorithm (more to come if needed)
389   * New module: xbt/synchro [Mt]
390     synchronization tools (mutex and conditions) working the same way
391     in simulation and in real life (mainly useful for GRAS, but not
392     only).
393   * New module: xbt/queue [Mt]
394     classical producer/consumer synchronization scheme
395   * xbt_dynar_new_sync() creates a synchronized dynar. All access
396     (using the classical functions will get serialized) [Mt]
397   * Make dictionary internal table dynamic. No need to specify its size
398     anymore; functions xbt_dict_new_ext() and xbt_dict_hashsize_set()
399     thus dropped. [Mt].
400   * Make sure the log channels are organized as a tree under windows
401     (because of ANSI C compatibility issue, any channel were child of
402      root directly) [Mt].
403
404  SURF:
405   * Cleaned many thing in surf and fixed a few bugs [AL].
406   * Add a nice command line configuration mechanism to compose models [AL].
407   * Add a new model for parallel tasks (ptask_L07) that is less buggy than
408     the previous one (KCCFLN05). It relies on something that looks like
409     a max-min sharing mechanism but cannot be written as such. A new solver
410     was thus designed [AL].
411   * Add a new solver to lmm. Based on Lagrange optimization and
412     gradient-based descent, it enables to efficiently maximise systems s.a
413   
414      sum f_i(x_i) s.t Ax<= b  with A_{i,j}>=0 and f_i a concave function.
415
416     This solver enables to propose two new network models for TCP Reno and
417     TCP Vegas based on Low's work. These models still need to be fully
418     tested though [Pedro Velho].
419
420  SIMDAG [AL]:
421   * Bug fix in SD_simulate. Now the time bound given as argument is
422     used.
423   * Use the new parallel task model (ptask_L07) as default.
424   * Use the SURF command line configuration mechanism.
425   * 0-size tasks (for synchronization) should now work.
426
427  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr> Sun Apr 12 05:20:36 CEST 2009
428
429 SimGrid (3.2) stable; urgency=high
430
431   OVERALL CHANGES:
432    * Port to windows.
433      We still experience issues on this platform, but we believe that at
434      least MSG is usable.
435
436   GRAS API BREAKAGE (for simplification purpose, sorry):
437    * the gras_msgtype_by_name is not used anymore. Instead of 
438        gras_msg_send(toserver, gras_msgtype_by_name("request"), &request);
439      you can write (and must)
440        gras_msg_send(toserver, "request", &request);
441    - If you still want to pass a gras_msgtype_t to the function (to cache
442      the type and avoid the lookup time), use the gras_msg_send_() variant.
443    - Impacted functions:
444      gras_cb_register, gras_cb_unregister, gras_msg_send, gras_msg_wait,
445      gras_msg_rpccall, gras_msg_rpc_async_call, gras_msg_wait_ext
446    * The callbacks are now expected to return 0 when everything went well
447      (just like the main() function)
448
449   GRAS new features and improvements:
450   * New module mecanism where user code can use per process globals [Mt]
451     This is similar to gras_userdata_*() functions, but for libraries. It
452       factorize some code developped over and over in the examples and AMOK.
453     It has still to be documented and used (only amok/peermanagement is
454       converted for now).
455   * Fix a vicious bug in the TCP buffering mecanism which leaded to message
456     loss when they were small enough to fit into the buffer and sent quickly
457     enough so that they can all get received in one shoot.   
458   * gras_datadesc_by_name and gras_msgtype_by_name: now raise an exception
459     if not found. Use the *_or_null() variant for the old semantic.
460   * In gras_msg_handle, do not discard messages without callback.
461     They are probably messages to be explicitly awaited later (ie, proofs of
462     mis-synchronization in userland since they are sent before being awaited)
463     No big deal usually.
464   * gras_socket_meas_send/recv: semantic changed!
465     The numerical arguments used to be (1) the total amount of data to send
466     and (2) msg_size. This was changed to (1) msg_size and (2) amount of
467     messages. This was need for the fool willing to send more than MAXINT
468     bytes on quite fat pipes.       
469         
470   AMOK:
471   * Do really rename the hostmanagement module to peermanagement. [Mt]
472     Ie, rename functions from amok_hm_* to amok_pm_*. This breaks the API,
473     but this is rather new and this was documented in the module
474     documentation (poor excuses, I admit)
475   * Bandwidth measurement semantic changed! This follows the changes to
476     gras_socket_meas_send/recv explained above.
477     
478   SIMDAG:
479   * A sequential mode has been added to the workstations. When a workstation
480     is in sequential mode, it can execute only one task, and the other tasks
481     are waiting in a FIFO. [Christophe Thiery]
482
483   SURF:
484   * The KCCFLN05 workstation model now handles parallel tasks. It is the
485     model for SIMDAG. [Christophe Thiery]
486   * Bug fix in the maxmin solver: Some values were close to 0 instead of
487     equal to 0, which caused some bad behaviors in
488     saturated_constraint_set_update. I now use a threshold mechanism like in
489     surf. [AL]
490
491   XBT:
492   * When running manually src/testall, you select specific units [Mt]
493     testall is the result of our cunit mecanism, and should replace all
494     the scripty thingy around since bash don't run easily on billware.
495
496   * A mallocator system has been added. [Christophe Thiery]
497     Mallocators allow you to recycle your unused objects instead of freeing them
498     and allocating new ones.
499
500   Documentation update:
501   * FAQ reworking + New FAQs:
502     - "Valgrind spits tons of errors!" [Mt]
503     - "How to repport bugs" [Mt]
504     - "Cross-compiling a Windows DLL of SimGrid from Linux" [Mt]
505     - "What is the difference between MSG, SimDag, and GRAS?" [Mt]
506     - Communication time measurement within MSG [AL]
507     - I experience weird communication times when I change the latency [AL]
508   * GRAS tutorial [Mt]
509     It contains:
510      - an introduction to the framework and to the used communication model
511      - an initiatic tour introducing the most proheminent features:
512        o Part 1: Bases
513          . Lesson 0: Installing GRAS
514          . Lesson 1: Setting up your own project
515        o Part 2: Message passing
516          . Lesson 2: Exchanging simple messages
517          . Lesson 3: Passing arguments to the processes (in SG)
518          . Lesson 4: Attaching callbacks to messages
519          . Lesson 5: Using globals in processes
520          . Lesson 6: Logging informations properly
521          . Lesson 7: Using internal timers
522          . Lesson 8: Handling errors through exceptions
523          . Lesson 9: Exchanging simple data
524          . Lesson 10: Remote Procedure Calling (RPC)
525          . Lesson 11: Explicitely waiting for messages
526          . Recapping of message passing features in GRAS
527      - A HOWTO section containing:
528        o HOWTO design a GRAS application
529        More are due, of course. They will come latter. In the meanwhile, you can 
530        check the examples which are still here.
531
532  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr> Fri Mar 16 21:11:46 CET 2007
533
534 SimGrid (3.1) stable; urgency=high
535
536   General:
537   * Port to gcc 4.x   
538     There was a stack corruption somewhere, visible only when optimizing
539     with these versions. [Vince]
540
541   SIMDAG:
542   * This is a NEW module! SimDAG (SD for short) is a revival of the old SG
543     module that enabled to play with Directed Acyclic Graphs. It is built
544     directly on top of SURF and provides an API rather close to the old
545     SG. Some old codes using SG are currently under rewrite to check that
546     all needful functions are provided. [Christophe Thiery]
547         
548   SURF:
549   * Complete rewrite of the KCCFLN05 workstation model. It is now an
550     extension of the classical CLM03 model that gracefully handles
551     failures. This is now the default model for MSG and GRAS. It doesn't
552     handle parallel tasks yet though. [AL]
553   * Bug fix: Weights were not correctly set in the network part. 
554     WARNING: This may have resulted in incorrect results with simulations
555     where there are more than one flow on a given link. [AL]
556
557   SURF, MSG, GRAS:
558   * After a (long ?) discussion on simgrid-devel, we have decided that the
559     convention we had on units was stupid. That is why it has been decided
560     to move from (MBits, MFlops, seconds) to (Bits, Flops, seconds). 
561     WARNING : This means that all previous platform files will not work as
562     such with this version! A warning is issued to ask users to update
563     their files. [AL]
564     A conversion script can be found in the contrib module of the CVS, under
565     the name contrib/platform_generation/surfxml_update.pl [MQ]
566
567   MSG,GRAS:
568   * Bug fix: Processes were started in reverse order, wrt deployment file.
569     WARNING: if your code relies on this bug, please fix it.    [AL]
570   * Bug fix: Add a test in MSG_task_execute to stop whenever a task is
571     being executed on two different locations.                  [AL]
572   * Bug fix: Failures are now better supported thanks to Derrick's tests
573     (there was many failure situations I hadn't thought of and that weren't
574     correctly handled). [AL]
575   * New function: MSG_host_is_avail indicates you whether a given m_host_t
576     is up or down. [AL]
577
578   GRAS:
579   * New! a real RPC mecanism, as it ought to be since too long. [MQ]
580       Exception occurring on server-side are propagated back to client (!).
581       
582     API CHANGE: the callback changed their prototype. Change:
583         int my_handler(gras_socket_t expeditor, void *payload_data) {
584       to:
585         int my_handler(gras_msg_cb_ctx_t ctx  , void *payload_data) {
586           gras_socket_t expeditor=gras_msg_cb_ctx_from(ctx);
587       and you're set.
588   * New! function: gras_msg_handleall to deal with all messages arriving
589       within a given period.
590   * New! function: gras_socket_server_range to get a server socket in a
591     range of port numbers (ease to avoid port number conflicts) [MQ]
592   * New! gras processes display their backtrace when they get a SIGUSR1
593       or when Ctrl-C is pressed. Use Ctrl-C Ctrl-C to exit.
594       Sweet to debug RL processes [MQ]
595
596   AMOK:
597   * Bandwidth module: 
598     - Do not force experiment sizes to be expressed in kb, or it becomes
599       impossible to measure the latency this way (needs one byte-long tests)
600     WARNING: this changes the amok_bw_* function semantic. [MQ]
601     - Implements the link saturation stuff. [MQ]
602   * Peer management module: 
603     New! module factorizing code that we wrote over and over [MQ].
604       
605   XBT:
606   * New module: cunit (my jUnit implementation in ansi C) [MQ]
607     - Test units are placed directly into the library code, they get extracted
608       automatically and placed into the src/testall binary.
609     - Convert most of the XBT tests to this system.
610   * New functions: xbt_dynar_getfirst_as() and xbt_dynar_getlast_as() [MQ]
611   * XML parsing: rewrote parts of flexml to enable multiple xml parsers to
612     live in the same C code. This required to change a little bit the API
613     of surfxml parsing but shouldn't be an issue for end-users. [AL]
614   * New module: sparse graph structure with basic algorithms (this is work
615     in progress and the API is not considered to be frozen yet). [AL]
616   * Display more information on backtraces: source line & function names are
617     now displayed just like valgrind does (rely on addr2line tool) [MQ]
618   * New function: xbt_backtrace_display(). Sweet while debuging [MQ]
619   * Reworked a little bit some #include statements to load only required
620     headers. Some user code that relied on SimGrid to include stdlib or
621     stdio may need to include it by themselves. [AL]
622   * Fixed xbt/log.h. A missing SG_BEGIN_DECL prevented compilation with
623     g++. [AL]
624   * Renamed xbt_host_t into xbt_peer_t since it betterly describes what I
625     meant. This breaks the API of AMOK and of xbt/config. Sorry about this,
626     but I guess that almost nobody used those parts. [MQ]
627
628  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr> Fri, 14 Jul 2006 01:32:27 +0200
629
630 SimGrid (3.0.1) stable; urgency=low
631
632   XBT:
633   * Unfortunately, I had missed 5 misnamed functions:
634       xbt_fifo_item_t xbt_fifo_newitem(void);
635       void xbt_fifo_freeitem(xbt_fifo_item_t);
636       xbt_fifo_item_t xbt_fifo_getFirstItem(xbt_fifo_t l);
637       xbt_fifo_item_t xbt_fifo_getNextItem(xbt_fifo_item_t i);
638       xbt_fifo_item_t xbt_fifo_getPrevItem(xbt_fifo_item_t i);
639     They're now deprecated. Please use their new versions:
640       xbt_fifo_item_t xbt_fifo_new_item(void);
641       void xbt_fifo_free_item(xbt_fifo_item_t);
642       xbt_fifo_item_t xbt_fifo_get_first_item(xbt_fifo_t l);
643       xbt_fifo_item_t xbt_fifo_get_next_item(xbt_fifo_item_t i);
644       xbt_fifo_item_t xbt_fifo_get_prev_item(xbt_fifo_item_t i);
645     [AL]
646   * Bugfix: really disconnect fifo items which are remove_item()ed [AL]
647   * Documentation: xbt_log module unmercifully reworked [MQ]
648   * Bugfix: there was a problem with the ending of contexts with 
649     the pthread backend. It caused some weird deadlock or behavior
650     depending on the pthread implementation. [AL]
651   * Bugfix: get the exceptions raised in the simulator repport where
652     and why they come from when they are not catched in time [AL, MQ]
653
654   SURF:
655   * Bugfix: Do repport the error when two non-connected hosts try to
656     exchange data (Thanks to Flavien for stumbling into this one) [AL]
657   
658   SURF:
659   * Add additionnal checkings on communications. Assert that two
660     communicating hosts are connected by a set of links... [AL]
661         
662   MSG:
663   * Add additionnal checkings on channel values in communication [AL]
664   * New: MSG_task_get_source to see on which host a task was generated [HC]
665   * New: int MSG_task_probe_from_host(int channel, m_host_t host): returns
666     the number of tasks waiting to be received on channel and sent
667     by host. [AL]
668   * New: MSG_error_t MSG_task_get_from_host(m_task_t * task, int channel, m_host_t host); 
669     waits for the first task coming from a given host.. [AL]
670         
671   GRAS new functionnalities: [MQ]
672   * Enhance the parsing macro to allow the size of multidimentional objects
673     to be given thru annotations.
674   * New example (and documentation): Matrix Multiplication a la RPC 
675     (as when I was young!) and fix a bunch of bugs found on the way.
676
677   GRAS performance improvements: [MQ]
678   [DataDesc]
679   * Reduce the amount of cbps creation/destruction by making it static to 
680     datadesc_send/recv() and using a (newly created) cbps_reset (based on 
681     dynar_reset ())
682   [Virtu]
683   * Change libdata to a set so that we can search for stuff by ID (and thus 
684     reduce the insane amount of dict lookups)     
685   
686   [Transport]
687   * Actually implement gras_datadesc_copy() so that we don't have to mimick
688     RL communication on top of SG since it's so uneffective. 
689     It may also be used for inter-thread communication in RL, one day. 
690   * Use gras_datadesc_copy() to exchange messages on top of SG 
691     Allows to:
692     - improve message exchange performance on top of SG
693     - deprecate transport_plugin_sg.c:gras_trp_sg_chunk_send() & recv()
694   * Don't exchange on the network the size of the used part of buffer,
695     instead, specify the possible buffer size to read(). 
696     Advantages:
697      - reduces the amount of read/write calls (one pair per exchange)
698      - reduces the amount of exchanged data (the size)
699      - allows to retrieve all arrived data on receiver side, if we don't need
700        it right now (subsequent read will peek the buffer)
701      - allows the receiver to proceed with the begining of the stream before
702        everything is arrived
703      - make it possible to build an iov transport (using readv/writev)
704     Extra difficulty: 
705      - take care of the data with non-stable storage (like stacked data),
706        and bufferize them.
707   * If possible, TCP send uses vector I/O (when writev() is here) 
708      - Don't use it for receive since we send data sizes and data on the
709        same stream, so we wouldn't be able to chain large amount of chunks
710        before having to flush the stuff to read the size.
711   * Rework the transport plugin mecanism to simplify it and reduce the
712     amount of pointer dereferencement when searching for the right function 
713     to use. 
714
715   * I guess that now, we do almost as few system calls as possible while
716     doing as few data copy as possible.
717
718     To improve it further, we could try to send all the sizes first and then
719     all the data (to use iov on receiving size), but it's only a partial
720     solution: when you have 2 dimensional data, the sizes of the second
721     dimension is data of the first dimension, so you need 3 streams.
722
723     I'm not sure the potential performance gains justify the coding burden.
724
725  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>  Fri, 21 Oct 2005 14:42:20 +0200
726
727 SimGrid (3.00) stable; urgency=high
728   
729  SURF:
730   * New! Give the possibility to hijack the surf parser and thus bypass 
731     MSG_create_environment and MSG_launch_application. Have a look at
732     examples/msg/msg_test_surfxml_bypassed.c to see how it can be done.
733         
734  -- Arnaud Legrand <simgrid-devel@lists.gforge.inria.fr>  Sat, 20 Aug 2005 23:25:25 -0700
735
736 SimGrid (2.96) unstable; urgency=low
737
738   AKA SimGrid 3 rc 2.
739   
740   XBT:
741   * New! Exception handling with setjmp or such (code from OSSP ex) [MQ]
742     This deprecates the xbt_error_t mecanisms. 
743     It modifies (simplifies) all XBT and GRAS API.
744     MSG API keeps unchanged (exceptions raised by XBT are catched from 
745      within MSG and masked with existing error handling facilities)
746
747   SURF:
748   * New! Add a FATPIPE model. [AL]
749   * New! Add a parallel task model. [AL]
750   * New! Add automatically a loopback interface (in the default
751     network model) if none was precised.
752
753   MSG
754   * Bugfix: MSG_process_resume now works with the current running process. 
755     [AL]
756   * New! Add MSG_parallel_task_create and MSG_parallel_task_execute. [AL]
757   * Modification of MSG_task_get_compute_duration. Once a task has been
758     processed, the value returned by this function is now equal to 0. [AL]
759   * New! Add double MSG_task_get_remaining_computation(m_task_t task) and
760     MSG_error_t MSG_task_cancel(m_task_t task). Add a state
761     (MSG_TASK_CANCELLED) to MSG_error_t corresponding to the cancelation
762     of a m_task. For now, MSG_task_cancel only works with computation
763     tasks. [AL]
764   * New! Add double MSG_get_host_speed(m_host_t h) that returns the speed
765     of the processor (in Mflop/s) regardless of the current load on the
766     machine. [AL]
767   * API Change: use proper naming convention for MSG_getClock and 
768     MSG_process_isSuspended: MSG_get_clock and MSG_process_is_suspended.
769     [AL]
770   * New! Add void MSG_task_set_priority(m_task_t task, double priority). 
771     This function changes the priority of a computation task. This priority
772     doesn't affect the transfer rate. A priority of 2 will make a task 
773     receive two times more cpu power than the other ones. This function 
774     has been added to suit the needs of Nguyen The Loc and hasn't been that
775     much tested yet. So if it fails, please report it and send me your code. 
776     [AL]
777   * API Change: removed all functions and types that were marked "deprecated" 
778     since many months. Renamed MSG_global_init_args to MSG_global_init.
779
780  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>  Mon,  8 Aug 2005 17:58:47 -0700
781
782 SimGrid (2.95) unstable; urgency=low
783
784   XBT
785   * Steal some nice code to GNU pth to fix context detection and usage [AL]
786   * Cleanup in the xbt_config API; add configuration callbacks. [MQ]
787   * Cleanup in the initialization API: the unused "defaultlog" is dead. [MQ]
788
789   SURF
790   * Bugfix: Allow absolute paths for platform description files [MQ]
791   * Bugfix: do free the variables after use. Leads to drastic performance 
792     improvement [AL] 
793   * Implement max_duration (ie, timeouts) on resources [AL]
794
795   MSG
796   * Implement MSG_config to configure MSG at runtime. xbt_cfg test on a real
797     case ;) [MQ]
798   * Implement MSG_channel_select_from() to help GRAS now that SURF provide
799     the needed support (timeouts) [AL]
800
801   GRAS (new features)
802   * Implement measurement sockets. You can now get the bandwidth between two
803     hosts thanks to AMOK (see below). [MQ]
804   * gras_datadesc_dynar() builds a dynar type descriptor, allowing to send
805     dynar over the network (yeah) [MQ]
806   * Real (even if simplistic) implementation of gras_os_myname() on RL [MQ]
807   * simple/static token-ring example. [Alexandre Colucci and MQ]
808   * Use MSG_channel_select_from() and remove the *slow* hack we had to put
809     in place before [MQ]
810   
811   GRAS (bug fixes)
812   * Differentiate the types "char[22]" and "unsigned char[22]" in automatic
813     type parsing. "short" and "long" modifiers were also ignored; other
814     modifier (such as reference level) are still ignored. [MQ] 
815   * Embeed the buffer size within the buffer itself on SG. [MQ]
816     That way, send() are atomic and cannot get intermixed anymore (at least
817     the ones which are less than 100k; bigger messages still have the issue)
818   * Array size pushed by the field, not by the field type (or each
819     and every long int will push stuff to the cbps) [MQ]
820   * use select() to sleep since it allows to portably sleep less than one
821     second. [MQ]
822
823   GRAS (minor cleanups)
824   * <project>.Makefile.local (generated from gras_stub_generator) |MQ]:
825     - Do clean .o files
826     - Compile with -g
827   * Type Callbacks now receive the gras_datadesc_type_t they work on as argument.
828   * type category 'ignored' killed as it was never used and were difficult
829     to transmit.
830   * whether a type can cycle or not is now a flag, leaving room for more
831     flags (as "ignored", if we feel the need one day ;)
832   * Rename raw sockets to measurement sockets since "raw" has another
833     meaning in networking community. 
834   
835   AMOK 
836   * Advanced Metacomputing Overlay Kit introduction. It is based over GRAS
837     and offers features not belonging to GRAS but that most applications
838     need. One day, it may be a set of plugins loadable at runtime.
839   * New module: bandwidth 
840     bandwidth measurement between arbitrary nodes running this module. [MQ]
841
842  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>  Thu, 30 Jun 2005 16:29:20 -0700
843
844 SimGrid (2.94) unstable; urgency=low
845
846   The first beta release of SimGrid 3 !
847
848   >>>Arnaud<<<
849   (documentation)
850   * Update the main page and the FAQ. Adding references to gforge.
851
852   (gras)
853   * Add a gras_os_getpid function.
854
855   (msg)
856   * Add MSG_task_get_compute_duration() and MSG_task_get_data_size()
857   * Extend the logs so that they also print PID, hostname, date, ... if
858     available.
859   * Convert the MSG example to the use of xbt_logs instead of PRINT_MESSAGE,
860     and kill the old version which were in testsuite/
861   * Rewrite tools/MSG_visualization/colorize.pl for using with logs instead
862     of PRINT_MESSAGE
863
864   (xbt)
865   * Add xbt_os_time(). As the rest of xbt/portability, this is not public
866     for users. Instead, each programming environment (GRAS, MSG,...) use it
867     when needed to provide such a feature to users.
868     Don't shortcut the mecanism or you will also shortcut the virtualization
869     you need on the simulator.
870
871   >>>Martin<<<
872   (infrastructure)
873   * Cleanups in configury with regard to compile optimization/warning flags.
874     Also add -fno-loop-optimize to any powerpc since it's the optimization
875     killing gcc (< 3.4.0).
876   * Doxygen cleanups: move MSG examples, kill the second Doxygen phase
877     needed by MSG examples complications
878   * Borrow configury beautifications from PHP
879
880   (xbt)
881   * Bugfix: XBT_LOG_NEW_DEFAULT_CATEGORY now compiles without compiler
882     warning (thanks loris for stumbling into this one).
883   * Bugfix: stop loading private headers (gras_config.h) from the public
884     ones (xbt/swag.h).
885
886   (gras)
887   * Change SIMGRID_INSTALL_PATH to GRAS_ROOT in Makefiles generated for user.
888   * Rename gras_get_my_fqdn to gras_os_myname and implement it in the simulator
889     RL would imply a DNS resolver, which is *hard* to do in a portable way
890     (and therefore delayed).
891   * Implement a real timer mecanism and use it in timing macros. This allows
892     to avoid rounding errors and get a 0.000005 sec precision in timing
893     macros. While I was at it, various cleanups:
894      - allow to declare more than one timed section per file (fix a stupid bug)
895      - move some private declaration to the right place
896      - merge conditional execution and timing macros into emulation module
897      - document the module
898      - make sure the module cleanups its mess on gras_exit
899   * Documentation improvements:
900      - (new) how to compile applications using GRAS
901      - (new) emulation support (timing macros)
902
903  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>  Fri, 13 May 2005 10:49:31 +0200
904
905 SimGrid (2.93) unstable; urgency=low
906
907   Alpha 4 on the path to SimGrid 3 (aka the "neuf-trois" version)
908
909   [Arnaud]
910    - Use Paje properly where used. Still to be sanitized properly.
911    - Portability fix: Add an implementation of the contexts using pthread
912
913   [Martin]
914   (misc)
915    - Add xbt_procname(): returns the name of the current process.
916      Use it to show the current process's name in all logging.
917   (infrastructure)
918    - fix detection of older flex version and the reaction, since we do
919      depend on modern ones (we use lex_destroy)
920    - Better separation of SG and RL in the libs: remove all simulation code
921      from libgras. As a result, this lib is now only 200k when stripped.
922      Some of the xbt modules may also be duplicated (two sets and such) and
923      should be cleaned/killed before SG3.
924    - Insist on using xlC on AIX because of weird problems involving gcc there.
925    - Cleanup the make remote stuff. This is now done by scripts
926      tools/graspe-{master,slave} (GRAS Platform Expender). This is still
927      mainly for our private use, but we're working on changing them to user
928      tools, too.
929   (gras)
930    - Bugfix: flush the socket on close only if there is some *output*.
931    - Bugfix: flush idempotent when there's nothing to send (don't send size=0)
932   (msg)
933    - Add MSG_task_get_name. The task names are mainly for debugging purpose,
934      but anyway.
935
936  -- SimGrid team <simgrid2-users@listes.ens-lyon.fr>  Fri,  4 Mar 2005 14:32:37 -0800
937
938 SimGrid (2.92) unstable; urgency=low
939
940   Alpha 3 on the path to SimGrid 3
941   
942   [Arnaud]
943   (gras)
944    - New! First try of benchmarking macros.
945    - New! First try so that gras_stub_generator generate deployment and
946      remote compilation helpers.
947   (msg)
948    - Bugfix: Initialization fix in msg_test.
949
950   [Martin]
951   (surf)
952    - Bugfix: applied patch to lexer so that it doesn't need a huge heap.
953   (xbt)
954    - Bugfix: let dicts work with NULL content (_foreach didn't) and cleanups
955   (gras)
956    - API Change: gras_os_sleep to take the amount of seconds as a double.
957      Accepting an int was error prone since it was the only location where
958      seconds were coded as such. It leaded to damn rounding errors.
959    - Bugfix: Hard to belive that timers ever worked before this.
960
961  -- SimGrid team <simgrid2-users@listes.ens-lyon.fr>  Wed, 23 Feb 2005 22:09:21 +0100
962
963 SimGrid (2.91) unstable; urgency=low
964
965   Alpha 2 on the path to SimGrid 3
966   
967   [Arnaud]
968   (surf)
969    - Bug fix in the lmm_solver.
970   (msg)
971    - New! Interface to Paje (see http://www-id.imag.fr/Logiciels/paje/) 
972      through the function MSG_paje_output.
973    - New! Introducing two new functions MSG_process_kill() and MSG_process_killall().
974    - It is possible to bound the rate of a communication in MSG with 
975      MSG_task_put_bounded() (was already in the previous version but I had forgotten 
976      to write it in the changelog).
977    - Bug fix to let GRAS run on top of MSG until we move it directly on top
978      of the SURF.
979     
980   [Martin]
981   (infrastructure)
982    - Various cleanups to the autotools stuff
983    - Begin to move Gras examples to examples/gras/
984    - Let make distcheck work again (yeah!)
985   (documentation)
986    - documentation overhauled using doxygen. 
987      gtk-doc-tools is dead in SimGrid now.
988    - Automatically extract all existing logging categories, and add the list
989      to the documentation (long standing one, to say the less)
990   (gras)
991    - Cleanup the known architecture table. Reorder the entries to group what
992      should be, and use a more consistent naming scheme.
993      (some of the test dataset are still to be regenerated)
994    - New! Allow library to register globals on each process just as userdata
995      does. 
996       This is implemented using a xbt_dict and not a xbt_set, so we loose the
997        lookup time (for now).
998       Use it in msg and trp.
999       This cleans a lot the internals and helps enforcing privacy of the
1000        headers between the gras components.
1001    - New! Add a timer mechanism, not unlike cron(8) and at(1). 
1002    - Bugfix: gras_os_time was delirious in RL.
1003    - Bugfix: gras_trp_select/RL don't run into the wall when asked to select
1004      onto 0 sockets.
1005    - Reenable GRAS now that it works.
1006
1007  -- Arnaud Legrand <Arnaud.Legrand@imag.fr>  Mon, 14 Feb 2005 14:02:13 -0800
1008
1009 SimGrid (2.90) unstable; urgency=low
1010
1011   Alpha 1 on the path to SimGrid 3
1012
1013   * It is a long time since the last release of SimGrid. I'm sorry about
1014     that but as I had told you, I was rewriting a lot of things. I apologize 
1015     to those who had been reporting bugs to me and that I had not answered. 
1016     If your bug is still in the new version, please tell me. Here is a 
1017     summary of the main changes.
1018
1019   * REVOLUTION 1: The SimGrid project has merged with the GRAS project
1020     lead by Martin Quinson. As a consequence SimGrid gains a lot in
1021     portability, speed, and a lot more but you'll figure it out later. 
1022     SimGrid now comprises 3 different projects : MSG, GRAS and SMPI. 
1023     I wanted to release the new MSG as soon as possible and I have 
1024     broken GRAS, which is the reason why, for now, only MSG is fully 
1025     functional. A laconic description of these projects is available 
1026     in the documentation.
1027   
1028   * REVOLUTION 2: I have removed SG and I am now using a new simulation
1029     kernel optimized for our needs (called SURF but only the developers
1030     should use it). Hence, MSG is now roughly 30 times faster and I think
1031     that by rewriting a little bit MSG, I could event speed it up a little
1032     bit more. Beside the gain in speed, it is also much easier to encode a
1033     new platform model with SURF than it was with SG. More to come...
1034   
1035   * REVOLUTION 3: I have tried to change a little as possible the API of
1036     MSG but a few things really had to disappear. The main differences
1037     with the previous version are :
1038        1) no more m_links_t and the corresponding functions. Platforms are
1039          directly read from a XML description and cannot be hard-coded
1040          anymore. The same format is used for application deployment
1041          description. The new format is described in the documentation. 
1042          Have a look in tools/platform_generation. There is a tiny script 
1043          that converts from the old platform format to the new one. Concerning
1044          the application deployment format, parsing the old one is tricky.  
1045          I think most of you should however be able to convert your files.  If 
1046          it is really an issue, I can write a C code that does the conversion. 
1047          Let me know.
1048        2) the toolbox tbx does not exist anymore. We now have a library
1049           with much more data-structures but without the hash-tables (we have 
1050           dictionaries that are much faster).
1051
1052  -- Arnaud Legrand <Arnaud.Legrand@imag.fr>  Mon, 31 Jan 2005 10:45:53 -0800
1053
1054 *****************************************************************************
1055 * Follows the old GRAS changelog. It does not follow the same syntax, but I *
1056 * don't feel like converting the oldies. (Mt)                                *
1057 *****************************************************************************
1058
1059 2005-01-31 Arnaud
1060   Version 2.90: "the long awaited one"
1061   - Finished rewriting and debugging MSG. Rewrote the documentation.
1062   - disable GRAS for now since it needs to be ported to the newest SG
1063
1064 2004-12-16 Martin
1065   - Finish the port to windows (using mingw32 for cross-compile)
1066
1067 2004-11-28 Arnaud
1068   - Main loop and datastructures of SURF. A cpu resource object is
1069     functional. Surf can thus be used to create cpu's with variable
1070     performance on which you can execute some actions.
1071         
1072 2004-11-15 Martin Quinson
1073   - Port to ARM. Simply added the alignment and size descriptions. Should
1074     work, but the ARM machines are so slow that I didn't had the opportunity
1075     to 'make check' over there yet.
1076
1077 2004-11-15 Arnaud Legrand
1078   - Trace manager now written. It uses a heap structure and is therefore
1079     expected to be efficient. It may however be speeded up (particularly
1080     when many events occur at the same date) by using red and black
1081     trees. One day maybe... 
1082   - Max-min linear system solver written. It uses a sparse matrix
1083     structure taking advantage of its expected use. Most operations are
1084     O(1) and free/calloc are called as few as possible. The computation of
1085     the minimum could however be improved by using a red and black tree
1086     (again ! ;).
1087
1088 2004-11-03 Arnaud Legrand
1089   - Rename every gras_* function that was in xbt/ to its xbt_
1090     counterpart.
1091   - Add a heap and a doubly-linked list to xbt
1092   - Added a dichotomy to the dictionaries. make check works as well before
1093     so I assume that the patch is correct. I do not know however if things
1094     run effectively faster than before now. :)
1095
1096   Inclusion of the SimGrid tree in the GRAS one. The archive is renamed to
1097   SimGrid, and the version number is bumped to 2.x
1098
1099 2004-10-29 Martin Quinson
1100   - Introduction of the remote errors. 
1101     They are the result of a RMI/RPC on the remote machine.
1102     ErrCodes being scalar values, you can't get the host on which those
1103     errors did happen. Extending the error mechanism as in Gnome is possible.
1104     No idea yet whether it is a good idea.
1105     
1106 2004-10-28 Martin Quinson
1107   - Interface revolution: the Starred Structure Eradication.
1108     I used to do typedef struct {} toto_t; and then handle *toto_t.
1109     Arnaud (and Oli) didn't like it, and I surrendered. Now, you have:
1110       - ???_t is a valid type (builded with typedef)
1111       - s_toto_t is a structure (access to fields with .)
1112       - s_toto   is a structure needing 'struct' keyword to be used
1113       - e_toto_t is an enum
1114       -   toto_t is an 'object' (struct*)
1115     Exemple:
1116       typedef struct s_toto {} s_toto_t, *toto_t;
1117       typedef enum {} e_toto_t;
1118     Moreover, only toto_t (and e_toto_t) are public. The rest (mainly
1119      s_toto_t) is private.
1120     
1121   - While I was at it, all gras_<obj>_free() functions want a gras_<obj>_t*
1122     so that it can set the variable to NULL. It was so for dicts and sets,
1123     it changed for dynars.
1124     
1125   - Fix a bunch of memleaks in dict_remove
1126   - Fix a bug in sg/server_socket opening: it failed all the time.
1127
1128 2004-10-07 Martin Quinson
1129   - Speed up dynar lookup operation a bit.
1130   
1131     gras_dynar_get is dead. 
1132     
1133     Now, you can choose between gras_dynar_get_cpy (the old gras_dynar_get
1134     but should be avoided for efficiency reasons) and gras_dynar_get_ptr
1135     (which gives you the address of the stored data).
1136     
1137     gras_dynar_get_as is an helpful macro which allows you to retrieve a
1138     copy of the data using an affectation to do the job and not a memcpy.
1139     
1140     int toto = gras_dynar_get_as(dyn,0,int); rewrites itself to
1141     int toto = *(int*)gras_dynar_get_ptr(dyn,0);
1142     
1143     It does not really speedup the dynar test because they are
1144     setting elements all the time (and look them seldom). But the dict does
1145     far more lookup than setting.
1146
1147     So, this brings the dict_crash test from ~33s to ~25s (200000 elms).
1148
1149 2004-10-05 Martin Quinson
1150   - Allow to (en/dis)able the cycle detection at run time.
1151   
1152     Whether we should check for cycle or not is now a property of each
1153     datatype. When you think there may be some cycle, use datadesc_cycle_set.
1154     datadesc_cycle_unset allow to remove this property when previously set.
1155     
1156     Note that the cycle detection is off by default since it impacts the 
1157     performance. Watch the data you feed GRAS with ;)
1158     
1159     This property is hereditary. Any element embedded in a structure having it
1160     set have it set for the time of this data exchange.
1161     
1162     You should set it both on sender and receiver side. If you don't set it on
1163     sender side, it will enter an endless loop. If you forget on receiver
1164     side, the cycles won't be recreated after communication.
1165     
1166   - Header reorganization.
1167     Kill gras_private.h, each submodule must load the headers it needs.
1168
1169 2004-10-04 Martin Quinson
1170   - Interface revolution: do not try to survive to malloc failure.
1171   
1172     Now, gras_malloc and friends call gras_abort() on failure.
1173     As a conclusion, malloc_error is not a valid error anymore, and all
1174       functions for which it was the only gras_error_t return value are
1175       changed. They now return void, or there result directly. 
1176     This simplify the API a lot.
1177
1178 2004-09-29 Martin Quinson
1179   - Re-enable raw sockets.
1180     Created by gras_socket_{client,server}_ext;
1181     Used with gras_raw_{send,recv}
1182     No select possible.
1183     
1184     It should allow to kill the last bits of gras first version soon.
1185   
1186     This is not completely satisfactory yet (duplicate code with
1187      chunk_{send,recv}; a bit out of the plugin mechanism), but it should
1188      work. 
1189
1190   - Simplify transport plugin (internal) interface by not passing any
1191     argument to _server and _client, but embedding them in the socket
1192     struct directly. 
1193
1194 2004-09-28 Martin Quinson
1195   - Finish the port to AIX.
1196     autoconf was my problem (segfault within the malloc replacement
1197     function. No idea why)
1198         
1199 2004-09-16 Martin Quinson
1200   - Fix some size_t madness on 64bit architectures.
1201   
1202 2004-09-08 Martin Quinson
1203   - Reduce the number of system headers loaded, overload some more system
1204     calls (such as malloc to cast the result of the system one, and work
1205     properly on AIX)
1206   - Fix and reintroduce the config support
1207
1208 2004-09-07 Martin Quinson
1209   - Source code reorganization to allow Arnaud to surf all over there.
1210   - Allow to document the logging categories.
1211   - Remove all uppercase from logging categories and useless cleanup in names.
1212
1213 2004-08-18 Martin Quinson
1214   Version 0.6.2 (protocol not changed; API changed)
1215   - Interface cleanup: gras_msgtype_by_name returns the type (instead of a
1216      gras_error_t), and NULL when not found. Functions expecting a msgtype
1217      as argument (msg_wait; msg_send) deal with NULL argument by providing a
1218      hopefully usefull message.
1219   - Portability to prehistoric sparcs again
1220
1221 2004-08-17 Martin Quinson
1222   Version 0.6.1 (protocol not changed; ABI not changed)
1223   - prealloc some buffers to speed things up
1224
1225 2004-08-11 Martin Quinson
1226   Version 0.6 (protocol not changed; ABI expended)
1227   - The parsing macro can deal with the references, provided that you add
1228     the relevant annotations (using GRAS_ANNOTE(size,field_name))
1229
1230 2004-08-09 Martin Quinson
1231   Version 0.5 (protocol not changed; ABI changed)
1232   - Allow to off turn the cycle detection code in data exchange at
1233     compilation time. It should be at run time, but I'm short of time (and
1234     the config stuff is still broken). That way, we keep dict out of the
1235     critical path, which is good because the performance is poor:
1236      - search not dichotomial yet
1237      - dynar give no way to access their content and memcpy everytime
1238   - In composed data description (struct, ref and so on), stop foolness of
1239     keeping the subtype's ID, but store the type itself. This keeps sets out
1240     of the critical path, which is good since they rely on dynar and
1241     dictionnaries. The only loose of that is that we cannot detect the
1242     redeclaration of a structure/union with another content (but I'm not sure 
1243     the code detected well this error before anyway). We still can detect
1244     the redefinition discrepancy for the other types.
1245   - Use a whole bunch of optimisation flags (plus -fno-strict-aliasing since
1246     it breaks the code because of type-punning used all over the place).
1247     This breaks on all non-gcc architectures (for now).
1248     
1249   All those changes (plus the buffer of last time) allow me to gain 2 order
1250   of magnitude on cruel tests consisting of 800000 array of integers on two
1251   level of a hierarchical structure (200 secondes -> 4 secondes)
1252   
1253   API change:
1254     - the selector of reference must now return the type it points to, not
1255       the ID of this type.
1256
1257 2004-08-06 Martin Quinson
1258   Version 0.4 (protocol changed; ABI not changed)
1259   - Allow to pass --gras-log argument to processes in simulation mode. Really.
1260   - New debugging level: trace (under debug) to see effect of GRAS_IN/OUT
1261   - Implement a buffer transport, and use it by default (it relies on tcp in
1262      real life and on sg in simulation).
1263     That's a bit hackish since I had a new field to the structure to store
1264      its data without interfering with the subtype ones. Inheritance
1265      is tricky in C. And that's a kind of reverse inheritance with one class
1266      derivating two classes. Or maybe a game with java interfaces. Anyway,
1267      that's damn hard in C (at least).
1268     Moreover, I got tired while trying to ensure plugin separation and
1269      genericity in SG mode. MSG wants me to do weird things, so let's go for
1270      cruel hacks (temporarily of course ;).
1271      See comment in transport_private.h:71
1272   - do not include all the _interface headers in private but in the files
1273     which really need them (to cut the compilation time when they are
1274     modified) 
1275
1276 2004-07-26 Martin Quinson
1277   Version 0.3 (protocol not changed; ABI changed)
1278   - Major overhault of the datadesc interface to simplify it:
1279     - shorted the function names:
1280       s/gras_datadesc_declare_struct/gras_datadesc_struct/ and so on
1281     - add a trivial way to push/pop integers into the cbps without malloc.
1282       This allows to make really generic sub_type description, which simply
1283         pop their size of the stack.
1284     - add a function gras_datadesc_ref_pop_arr() which does what users want
1285       most of the time: Declare a dynamic array (which pops its size of the
1286       stack) and declare a reference to it. Poor name, but anyway.
1287     - kill the post-send callback, add a post-receive one
1288     
1289 2004-07-23 Martin Quinson
1290   Version 0.2 (protocol changed; ABI changed)
1291   - add some testing for cpbs in the test cases, and fix some more bugs.
1292     This invalidate again the little64 data file, since I cannot regenerate
1293     it myself.
1294   - remove an awfull optimization in the logging stuff, allowing me to:
1295     - understand it again
1296     - learn gcc how to check that the argument match the provided format
1297     - fix all errors revealed by gcc after that
1298   - internal keys of dict are not \0 terminated. Deal with it properly in
1299     loggings instead of segfaulting when the user want to see the logs :-/
1300
1301 2004-07-22 Martin Quinson
1302   - Fix some stupid bug preventing cbps (callback postit) from working
1303
1304 2004-07-21 Martin Quinson
1305   - Some documentation cleanups
1306   - remove the useless last argument of msgtype_declare
1307   - rename the Virtu functions to fit into the 'os' namespace
1308   - move headers src/include -> src/include/gras/ and stop fooling with 
1309     gras -> . symbolic link
1310   - make distcheck is now successful
1311
1312 2004-07-19 Martin Quinson
1313   Version 0.1.1
1314   - Build shared library also
1315   - Install html doc to the right location
1316   - stop removing maintainer files in make clean
1317   - build tests only on make check
1318   
1319 2004-07-13 Martin Quinson
1320   version 0.1
1321   - No major issue in previous version => change versionning schema
1322   - Re-enable little64 convertion test now that Abdou kindly regenerated the
1323     corresponding dataset.
1324   
1325 2004-07-11 Martin Quinson
1326   version 0.0.4
1327   - Get it working with any kind of structure (we can compute the padding
1328     bytes remotely for all the architectures I have access to)
1329   - Implement the structure parsing macro (still not quite robust/complete)
1330   - Improvement to the remote testing toysuite
1331   
1332 2004-07-10 Martin Quinson
1333  [autoconf mechanism]
1334   - get ride of a bunch of deprecated macros
1335   - actually run the test for two-compliment, not only compile it :-/
1336   - test whether the structures get packed (and bail out if yes. Damn.
1337     Alignment is a serious matter)
1338   - test whether the structures get compacted (but respecting the alignment
1339     constraints of each types)
1340   - test whether the array fields of structures can straddle alignment boundaries
1341  [base]
1342   - Damnit, double are bigger than float (typo in creation of 'double' datadesc)
1343     (took me 2 hours to find that bug, looking at the wrong place)
1344   - Add gras_datadesc_declare_{union,struct}_close(). They must be used
1345     before sending/receiving and are used to compute the offsets of fields
1346   - Given that padding size depend even on compiler options, keep track of
1347     alignment and aligned_size only for the current architecture. Not a big
1348     deal since we send structure fields one after the other (seems
1349     reasonable).    
1350   - Add the datastructure used for IEEE paper by the PBIO guys to the test
1351     program, let it work on linux/gcc/little32. portability todo.
1352
1353 2004-07-08 Martin Quinson
1354   - import and improve remote compilation support from FAST
1355   - make sure make check works on half a dozen of machines out there
1356
1357 2004-07-07 Martin Quinson
1358  Let's say it's version 0.0.3 ;)
1359   - Implement conversions (yuhu!)
1360   - Let it work on solaris (beside conversion, of course)
1361   - Stupid me, using rand() to generate the conversion datatests in not wise.
1362
1363 2004-07-06 Martin Quinson
1364   - Let make dist work, since I'm gonna need it to compile on remote hosts
1365   - Let Tests/datadesc_usage write the architecture on which the file was
1366     generated as first byte.
1367   - Add PowerPC (being also IRIX64), SPARC (also power4) and ALPHA
1368     architecture descriptions. 
1369   - Add datadesc_usage.{i386,ppc,sparc} files being the result of execution
1370     on those architectures.
1371   - Optimization: send/recv array of scalar in one shoot
1372
1373 2004-07-05 Martin Quinson
1374   - YEAH! GRAS/SG and GRAS/RL are both able to run the ping example !
1375   
1376   - Plug a whole bunch of memleaks
1377   - each process now have to call gras_{init,exit}. One day, their log
1378     settings will be separated
1379   - Continue the code factorisation between SG, RL and common in Transport.
1380
1381 2004-07-04 Martin Quinson
1382  [Transport]
1383   - Redistribution between SG and RL. 
1384     We wanna have to accept in SG, so move accepted related parts of RL in
1385     the common part. (more precisely, the dynar of all known sockets is no
1386     more a static in transport.c, but part of the process_data)
1387  [Core/module.c] 
1388  [gras_stub_generator]
1389   - Bug fix: Do call gras_process_init from gras_init (wasnt called in RL).
1390
1391 2004-07-03 Martin Quinson
1392   - Create a new log channel tbx containing dict, set, log, dynar (to shut
1393     them all up in one shot)
1394  [DataDesc]
1395   - Fix the ugly case of reference to dynamic array.
1396   - New (semi-public) function gras_datadesc_size to allow the messaging
1397     layer to malloc the needed space for the buffer.
1398  [Transport]
1399   - gras_socket_close now expect the socket to close (and not its address to
1400     put NULL in it after it). This is because the socket passed to handlers
1401     is one of their argument (=> not writable).
1402  [Messaging]
1403   - propagate the interface cleanup from last week in datadesc, ie remove a
1404     superfluous level of indirection. User pass adress of variable
1405     containing data (both when sending and receiving), and not of a variable
1406     being a pointer to the data. Let's say that I like it better ;)
1407       The price for that is constructs like "int msg=*(int*)payload" in
1408     handlers, but it's a fine price, IMHO.
1409  [examples/ping]
1410   - Let it work in RL (yuhu)
1411
1412 2004-06-21 Martin Quinson
1413  [Transport]
1414    - porting SG plugin and SG select to new standards (works almost).
1415    - plug memleaks and fix bugs around.
1416    
1417  [DataDesc] 
1418    - cleanup the prototype of data recv and force users to specify when they 
1419      want to handle references to objects. Test case working even for cycles.
1420    - plug memleaks. Valgrind is perfectly ok with this.
1421
1422 2004-06-12 Martin Quinson
1423  [Transport] 
1424    - cleanup the separation between plugin and main code in plugin creation 
1425
1426 2004-06-11 Martin Quinson
1427  [Transport]
1428    - Reput hook for raw sockets, needed for BW experiments
1429    - kill a few lines of dead code
1430  [Data description] Interface cleanup
1431    - gras_datadesc_by_name returns the searched type or NULL.
1432      That way, no variable is needed to use a type desc once, which makes
1433       the code clearer.
1434    - gras_datadesc_declare_[struct|union]_append_name is removed. The last
1435       two parameters were strings (field name, type name), leading to
1436       common errors.
1437  [Dicos] Interface cleanup
1438    - gras_dico_retrieve -> gras_dico_get ; gras_dico_insert -> gras_dico_set 
1439      This is consistant with the dynar API.
1440
1441 2004-04-21 Martin Quinson
1442  [Messaging]
1443    - Porting to new standards.
1444  [Data description]
1445    - interface cleanup. 
1446      There is no bag anymore, no need to take extra provision to mask the
1447        pointers behind "ID". 
1448      Better splitup of functions between files create/exchange/convert.
1449        This is still a bit artificial since convert and receive are so
1450        interleaved, but anyway.
1451  [Virtu(process)]
1452    - add a queued message list to procdata (the ones not matching criteria
1453      in msg_wait)
1454    - factorize some more code between SG and RL wrt procdata
1455  [Tests]
1456    - use gras_exit in example to track memleaks
1457    - get rid of gs_example now that GS is properly integrated into gras
1458    - update run_test to integrate the lastest tests (datadesc)
1459  [Logging]
1460    - rename WARNINGn macros to WARNn since it prooved error-prone
1461      
1462 2004-04-19 Martin Quinson
1463  [Data description]
1464    - register init/exit functions within gras module mechanism   
1465    - send/receive function. 
1466    Convertion is not implemented, but short-cutted if not needed.
1467    struct/array elements are sent one by one (instead of block-wise), but
1468      nobody really cares (yet). Get a prototype before optimizing.
1469    - tests (using a file socket) for DD send/receive on:
1470      - base types: int, float
1471      - array: fixed size, string (ie ref to dynamic string)
1472      - structure: homogeneous, heterogeneous
1473      - chained list, graph with cycle
1474    Believe it or not, valgrind is not too unhappy with the results. The
1475     cycle happily segfaults, but the others are ok. And I'm sick of pointers
1476     for now.
1477  [Transport]
1478    [File plugin] 
1479      - Bugfix when using a filename explicitely (instead of '-')
1480
1481 2004-04-09 Martin Quinson
1482  [Transport plugins]
1483    - factorize more code between RL and SG in socket creation
1484    - Complete the implementation and tests of:
1485      o TCP
1486      o file (only in RL, and mainly for debugging)
1487      
1488      I lost 3 days to design a portable address resolver, and then decided
1489        that the prototype mainly have to run on my box.
1490      Addressing portability too early may be like optimizing too early :-/
1491  [Tests]
1492    - use gras_init in the Tests instead of the crappy parse_log_opt 
1493      (the latter function is removed)
1494  [Conditional execution]
1495    - New functions: gras_if_RL/gras_if_SG (basic support for this)
1496  [Code reorganisation]
1497   - Get rid of libgrasutils.a since it makes more trouble than it solves.
1498     Build examples against the RL library, since there is no way to disable
1499     its creation for now.
1500
1501 For information, the beginning of coding on GRAS was back in june
1502 2003. I guess that every line has been rewritten at least twice since
1503 then.