Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
A few more ChangeLog updates.
[simgrid.git] / ChangeLog
1 ----------------------------------------------------------------------------
2
3 SimGrid (3.26.1) NOT RELEASED YET (v3.27 expected March 20. 2021, 09:37 UTC)
4
5 User-visible changes:
6  - Removed some option aliases that were deprecated since v3.23 (June 2019)
7    - 'verbose-exit' is now 'debug/verbose-exit'
8    - 'simix/breakpoint' is now 'debug/breakpoint'
9    - 'clean-atexit' is now 'debug/clean-atexit'
10  - Removed all that was related to the "Storage" type in all APIs and bindings.
11    "Disks" have been introduced more than a year ago to replace them for the better.
12    It's time to finish this replacement.
13  - Model iteration order may change simulations.
14     *****************************************
15     *DO NOT MIX 3.27 RESULTS WITH OLDER ONES*
16     *****************************************
17     The order in which the different models (CPU, network, disk, etc) are
18     solved internally has changed in this version. Although rare (no current
19     test raises the problem), this change can result in slightest different simulations
20     results. Take care when comparing simulations from different SimGrid's
21     versions. Sorry for the inconvenience.
22  - SMPI API break from previous version: MPI global handles (predefined datatypes,
23    ops, COMM_WORLD) are now defined differently, and can be used in initializers,
24    avoiding "initializer element is not constant" errors with some codes. Please be
25    careful to recompile your MPI codes if switching to this new SimGrid version.
26  - Network model ns-3 now requires version ns-3.28 or higher.
27
28 S4U:
29  - Define new template functions Mailbox::get_unique(), returning a std::unique_ptr.
30  - Functions Mailbox::get() and Mailbox::get_async() are now templated with the
31    type of the pointee. Untyped functions are deprecated. Use Mailbox::get<void>()
32    or Mailbox::get_async<void>() if you really want to play with void*.
33  - Unify the interface of Activity::on_{start/activity}
34  - New function: Comm::get_dst_data()
35  - New function: Comm::set_payload_size() to set the amount of bytes to simulate.
36  - New functions: Comm::sendto_{init,async} to initiate a communication
37    on between two (possibly remote) hosts.
38
39 XBT:
40  - Drop simgrid::xbt::demangle(). Please use boost::core::demangle() instead.
41  - Drop xbt_dynar_cursor_rm(), xbt_dynar_search_or_negative(),
42    xbt_str_split_quoted(), xbt_str_split_quoted_in_place().
43  - Deprecate xbt_dynar_to_array().
44
45 SMPI:
46  - Handle leak checking (experimental): SMPI will now display a message if MPI
47    handles are still present at the end of a simulation. This may be nothing,
48    but if the number is high it could be a problem. To display more information
49    about the type of leaked handle, option --cfg=smpi/list-leaks:n. will display
50    the n first leaked pointers and their types. Known issue: MPI_Cancel usage
51    may trigger handle leaks in SMPI.
52    Using smpirun with -wrapper "valgrind --leak-check=full --track-origins=yes"
53    can provide more information to help locate precisely the leaks.
54  - Memory allocations analysis (experimental): MPI codes using malloc/calloc to
55    allocate memory, and not compiled with SMPI_NO_OVERRIDE_MALLOC, can use
56    smpi/display-analysis option to show at the end of execution the amount of
57    memory allocated through these calls, and locate the most expensive one.
58    This helps finding the targets for manual memory sharing, or the threshold
59    to use for smpi/auto-shared-malloc-thresh option.
60  - New implemented MPI calls: MPI_File_set_size, MPI_Aint_add, MPI_Aint_diff,
61    MPI_Type_get_extent_x, MPI_Type_get_true_extent_x, MPI_Status_set_elements_x
62  - Misc fixes:
63    - better handling of MPI_PROC_NULL
64    - MPI_Group_incl was broken in some cases
65    - PAPI tracing was fixed
66    - MPI_Errhandlers are properly handled for MPI_COMM_WORLD
67    - SMPI will now fail properly when receive size < sent size, instead of
68      just setting MPI_ERR_TRUNCATE and keep going.
69  - Proxy Apps ( https://framagit.org/simgrid/SMPI-proxy-apps ):
70    - Remove useless build patches and split build/run patches on the page
71    - Build in parallel when possible
72    - Test on yum-based systems
73    - New nightly tested Proxy-apps:
74      - OpenMPI mpi-test-suite
75      - Coral MCB, LSMS, Qbox
76      - ECP/Mantevo Cloverleaf3D
77
78 C binding and interface:
79  - Rename (lowercase) functions sg_actor_get_PID, sg_actor_get_PPID, sg_actor_by_PID.
80  - Constness requirement has been lowered for parameter argv of sg_actor_start()
81    and sg_actor_create() It's now (char* const*). The previous version is still
82    available as sg_actor_start_() and sg_actor_create_().
83
84 Documentation:
85  - New section: Configuring the logs from the command line.
86  - New section: Programming API of logs.
87
88 Fixed bugs (FG#.. -> FramaGit bugs; FG!.. -> FG merge requests)
89  (FG: issues on Framagit; GF: issues on GForge; GH: issues on GitHub)
90  - FG#37: Parallel tasks are limited to 1 core per host
91  - FG#62: Running "smpirun -replay" on large networks
92  - FG!46: Fix a few potential memory leaks in SMPI colls
93  - GH#343: Wrong consumed energy when an exec timeouts
94
95 ----------------------------------------------------------------------------
96
97 SimGrid (3.26) December 15. 2020
98
99 The Release release (the French lockdown was eased today).
100
101 Important user-visible changes:
102  - SimGrid now requires a compiler with C++14 support.
103    Sibling projects should upgrade their FindSimgrid.cmake
104  - Surf precision default value is now 1e-9, instead of 1e-5. This was changed as
105    several users had difficulties to understand issues when using high bandwidth or
106    small latency events. The new value was already the default for SMPI and
107    should not cause too much performance hit. It can change some simulation
108    timings if simulation was skipping a lot of small events (which was actually
109    an issue per see). The old value can be restored with --cfg=surf/precision:1e-5.
110  - On some network models (L07, CM02, LV08), an implicit loopback link is created
111    for local communication. Default bandwidth was 500MBps and latency was 15µs,
112    which was rather bad. Default values have been changed to 10GBps and 0 latency.
113    Options network/loopback-lat and network/loopback-bw have been added to adapt
114    these values if needed. Network and routing models already providing separate
115    loopbacks (clusters and such) are not impacted by this change.
116  - SMPI now adds 16 bytes of header to each message sent, in order to simulate
117    metadata that are added to each MPI message by MPI libraries (tag,
118    src/dest, and communicator information). This may change simulation times
119    for very small message sizes, but should be more realistic.
120
121 New features:
122  - New routing 'WiFi' that makes it easier to specify a wifi network zone.
123  - New plugins: wifi_energy and link_load. See the associated examples.
124  - New examples: wifi networks, and communication suspend.
125
126 General:
127  - LTO is now enabled for Intel/clang compilers.
128  - LTO behavior on GCC can be parameterized using LTO_EXTRA_FLAG in cmake.
129    Setting it to "auto" will use all available cores, while setting it to n will
130    use n cores to speedup link step (usage: cmake -DLTO_EXTRA_FLAG=4).
131  - Remove obsolete runtime option 'contexts/parallel-threshold'.
132  - Runtime option 'tracing/msg/process' renamed to 'tracing/actor'. The old name
133    has been kept for compatibility.
134  - Finally remove obsolete snake_case() aliases for runtime options.
135  - Further improve the documentation.
136
137 S4U:
138  - the on_exit() of each actor is also executed when the simulation deadlocks.
139  - New functions: s4u::Activity:: suspend(), resume() and is_suspended()
140    An example is provided for s4u::Comm but it should work with Exec and Io.
141
142 SMPI:
143  - Update proxy apps coverage of new ECP apps: 60+ apps now tested nightly on
144    https://framagit.org/simgrid/SMPI-proxy-apps
145  - MPI/IO: supports names starting with "./"
146  - Fortran: many MPI/IO bindings, support for MPI_UB/LB, C MPI_INT/FLOAT/DOUBLE
147    datatypes.
148  - smpicc/cxx/ff/f90 now will actually perform definition checks at link time. When
149    building shared libraries, this may cause issues, so environment variable
150    SMPI_NO_UNDEFINED_CHECK can be added to disable this.
151  - most temporary files should now be created in /tmp dir (or equivalent).
152    If this one does not allow execution of code (noexec flag), this may cause issues.
153    Please use another tmp directory (using TMPDIR or equivalent system variable)
154    in this case.
155
156 Model-Checker:
157  - A large refactoring is ongoing, but this should be transparent for users so far.
158
159 XBT:
160  - Drop xbt_str_split().
161
162 C binding and interface:
163  - The return type of the sg_actor_on_exit() callbacks is now 'void'
164    (int value was previously ignored)
165  - Many C functions were renamed to follow a common naming style
166    (sg_object_get_something and sg_object_set_something). As usual, the deprecated
167    names are kept until version 3.30.
168  - Many MSG tests were converted to the new S4U's interface in C, that
169    was extended for that.
170
171 Fixed bugs (FG#.. -> FramaGit bugs; FG!.. -> FG merge requests)
172  (FG: issues on Framagit; GF: issues on GForge; GH: issues on GitHub)
173  - FG#41: Add sg_actor_create C interface
174  - FG#43: xbt::random needs some care
175  - FG#48: The Impossible Did Happen (yet again)
176  - FG#50: Suspending an actor executed at the current timestamp fails
177  - FG#52: Zero-seconds timeout : "That's in the past already"
178  - FG#53: Crash while using ns-3 network model
179  - FG#54: How to suspend a comm?
180  - FG!22: Stochastic Profiles
181  - FG!24: Documentation and fix for xbt/random
182  - FG!35: Add a modeling hint for parallel links in doc
183  - FG!36: [xbt/random] Read/Write the state of the RNG
184  - FG!42: Link cumulated load plugin
185  - FG!44: Test condition variable wait_until+notify_all
186  - GF#18137: Allow different stack sizes?
187  - GH#128: Parallelization of simulation with --cfg=contexts/nthreads
188  - GH#139: Allow pthread creation in SMPI
189  - GH#336: Packet-level simulation using SMPI?
190  - GH#345: Error in the LMM while migrating a VM
191  - GH#346: [SMPI] error while loading shared libraries: libsimgrid.so
192  - GH#352: pip install / python setup.py install fail to find pybind11
193  - GH!337: Fix link_energy plugin for wifi platforms
194  - GH!339: Add Mailbox set_receiver method to python binding
195  - GH!344: Cast hugepages macros parameters to int64
196
197 ----------------------------------------------------------------------------
198
199 SimGrid (3.25) February 2. 2020 (aka 02 02 2020)
200
201 The Palindrom Day Release.
202
203 Important user-visible changes:
204  - Improve the Python usability (stability and documentation).
205    - A nasty synchronization bug was ironed out, see also below.
206    - Python's doc was organized as a separate tree, now integrated with C++.
207    - C bindings of S4U were not part of the doc.
208    - The C++ doc was also improved as methods are now split by theme.
209  - Further deprecate MSG: you now have to pass -Denable_msg=ON to cmake.
210    - This is mandatory to use the Java bindings.
211    - OFF by default; The plan is to completely remove MSG by 2020Q4 or 2021Q1.
212  - SimDAG++: Automatic dependencies on S4U activities (experimental)
213    - Some features are already implemented but not all of them
214    - Cannot block an activity until it's scheduled on a resource
215    - No heterogeneous wait_any() that would mix Exec/Comm/Io activities.
216    - See examples/s4u/{io,exec,comm}-dependent for what's already there.
217
218 General:
219  - Upgrade documented Java dependency to Java 8 (earlier versions don't work).
220  - Drop support for Viva/Triva (old visualization tools), hence removed
221    TRACE_get_node_types() and TRACE_get_edge_types() functions.
222
223 Python:
224  - Require pybind11 version 2.4.
225  - Greatly improve locking during context switches with Python.
226    - Declaring Python callbacks to this_actor::on_exit is now working.
227    - No more tests are failing currently, even on win32.
228
229 S4U:
230  - Actor: Merge signals on_migration_start/end into on_host_change
231  - Actor: Rename migrate() into set_host()
232  - Disk: Allow users to get the read and write nominal bandwidth values
233  - Exec: Implement wait_for(timeout)
234  - Io: Implement wait_for(timeout)
235
236 XML:
237  - Parse errors now raise a simgrid::ParseError that you may want to catch.
238
239 Kernel:
240  - In simgrid::kernel::resource::Model, the methods next_occuring_event*() have
241    been renamed to fix a spelling error. As usual, the previous definitions are
242    kept with a deprecation warning. However, to avoid runtime errors, it is now
243    forbidden to override these deprecated methods in a derived class. Please use
244    the new names immediately if you need to override them.
245
246 XBT:
247  - Remove unused parameter 'free_ctn' for xbt_dict_set() and xbt_dict_set_ext().
248  - Drop unused functions for dicts and dynars: xbt_dict_cursor_get_elm,
249    xbt_dict_get, xbt_dict_get_elm, xbt_dict_get_ext, xbt_dict_get_key,
250    xbt_dict_remove, xbt_dict_reset, xbt_dynar_compare, xbt_dynar_dump,
251    xbt_dynar_foreach_ptr, xbt_dynar_free_data, xbt_dynar_free_voidp,
252    xbt_dynar_init, xbt_dynar_insert_at_as, xbt_dynar_merge,
253    xbt_dynar_remove_n_at, xbt_dynar_replace, xbt_dynar_search, xbt_dynar_set.
254  - New module: random, providing classical random numbers generators.
255
256 SMPI:
257  - New option : "smpi/auto-shared-malloc-thresh" which sets a value for
258    allocations' size above which they are considered "shared" by default (as if
259    they were performed through SMPI_SHARED_MALLOC macros).
260    Default = 0 = disabled feature.
261    Note : malloc, calloc and free are now overridden by smpicc/cxx by default.
262    This can cause some troubles if codes are already overriding these. If this
263    is the case, defining SMPI_NO_OVERRIDE_MALLOC in the compilation flags can
264    help, but will make this feature unusable.
265  - Input check is now performed much more consistently and outputs precise
266    warnings for each error found
267  - New supported calls : MPI_File_set_view, MPI_File_get_view
268  - MPI I/O now only supports disks, as storage is discontinued.
269  - MPI I/O allows opening files without specifying absolute path
270  - Note : SMPI configuration options are now initialized by smpi_init_options()
271    call, which should be called if SMPI is not being used through smpirun.
272
273 Fixed bugs (FG#.. -> framagit bugs; FG!.. -> framagit merge requests):
274  - FG#9: Python bindings crashing
275  - FG#39: Missing s4u::Comm::wait_any_for example
276  - FG#42: Add support for ThreadSanitizer (TSan)
277  - FG!19: Removing RngStream
278  - FG!20: A module for RNG calls
279  - FG!21: Choice between ad-hoc and standard distributions implementations
280  - FG!23: Master
281  - FG!25: Fix link in Mutex doc
282  - FG!26: Fix links in SMPI interface doc
283  - GH#31: [MC] please provide an option to make MPI_Send asynchronous
284  - GH#305: Unscheduled tasks are still excuted
285  - GH#313: smpirun: manual outdated w.r.t. --help
286  - GH#321: [S4U] Get task remaining work ratio
287  - GH#323: Crash when an actor turn off his physical host
288  - GH#335: Missing links on dragonfly example svg
289  - https://lists.gforge.inria.fr/pipermail/simgrid-user/2019-November/004653.html:
290    MPI_Cart_sub was not working properly. Kudos to Jonathan Borne for the report.
291
292 ----------------------------------------------------------------------------
293
294 SimGrid (3.24) October 9. 2019
295
296 The Clean Disk Release.
297
298 S4U:
299  - Introduce a s4u::Disk interface to manage the newly introduced <disk>
300    tag. s4u::Disk is called to supplant s4u::Storage in a near future. It
301    thus becomes the default resource to execute I/O operations. Examples
302    and the file system plugin have been modified to use disks instead of
303    storage elements. Storage can still be used but is doomed to disappear.
304    Users are thus adviced to update their simulators accordingly.
305  - Barrier::wait returns SG_BARRIER_SERIAL_THREAD for (only) one actor
306    for consistency with pthread_barrier_wait()
307  - Host::get_englobing_zone() returns the englobing netzone
308  - Actor::on_destruction is now called in the destructor
309    Actor::on_termination new signal called when the actor terminates
310    its code.
311  - Global signals are now part of the Engine:
312    - on_platform_creation: after config settings, before the XML parsing
313    - on_platform_created: right after the XML parsing
314    - on_time_advance: each time the clock advances
315    - on_simulation_end: after simulation, before cleanups
316    - on_deadlock: as the name implies.
317  - C bindings:
318    - sg_{actor,host,link}_{data,data_set}() now all exist.
319      Use them to attach user data to the object and retrieve it.
320
321 Models:
322  - Introduce an experimental Wifi model. It sounds reasonable
323    according to the state of the art, but it still has to be properly
324    validated, at least against ns-3 if not against reality.
325  - Improved the usability of ns-3. Several bugs were ironed out.
326  - host_energy: Wattage was expressed as 'idle:oneCore:allCores'.
327    It is now expressed as 'idle:epsilon:allCores' to properly model the
328    consumption of non-whole tasks on mono-core hosts. More info in the doc.
329
330 MSG:
331  - convert a new set of functions to the S4U C interface and move the old MSG
332    versions to legacy (MSG_process_self*, MSG_process_{un}ref, ...)
333
334 SMPI:
335  - Fortran bindings for DVFS have been removed.
336  - Add support for MPI_Irsend, MPI_Rsend, MPI_Rsend_init, MPI_Bsend,
337    MPI_Ibsend, MPI_Bsend_init, MPI_Buffer_attach, MPI_Buffer_detach
338  - SMPI can now be selected by cmake's find_module(MPI) with
339    MPI_C_COMPILER, MPI_CXX_COMPILER, MPI_Fortran_COMPILER variables.
340  - Add support for MPI Errhandlers in Comm, File or Win. Default errhandler is now
341    MPI_ERRORS_ARE_FATAL, so codes which were sending warnings may start failing.
342  - trace-call-location can be used with TI traces, and replayed, and is compatible
343    with smpi/comp-adjustment-file.
344  - sleep events are now correctly traced/replayed.
345  - Default for trace-call-location is now to use file names and not full paths.
346    To revert to previous behavior (in case of collision of filenames), option
347    "smpi/trace-call-use-absolute-path" can be set to yes.
348
349 Model-Checker:
350  - Use the included xxHash as an hash implem when C++14 is usable.
351  - Option model-checker/hash was removed. This is always activated now.
352  - New option smpi/buffering controls the MPI buffering in MC mode.
353  - MPI calls now MC_assert() that no MPI_ERR_* code is returned.
354    This is useful to check for MPI compliance.
355
356 Documentation:
357  - New section on plugins: how to define a new one, and existing ones.
358
359 XBT:
360  - xbt_mutex_t and xbt_cond_t are now marked as deprecated, a new C interface
361    on S4U is already available to replace them by sg_mutex_t and sg_cond_t.
362
363 XML:
364  - Introduce the <disk> tag as a replacement of the <storage>, <storage_type>,
365    and <mount> tags. The rationale is finish to decouple what should be handle
366    by SimGrid kernel (i.e., resources and activities) from plugins built in
367    user space (e.g., the file system plugin). This new tag currently accepts
368    only three attributes (id, read_bw, and write_bw). All the other information
369    that was declared with the storage related tags now has to be expressed as
370    properties. An example of platform using this new tag is available at
371    examples/platforms/hosts_with_disks.xml
372
373 tesh:
374  - 'expect signal' can now accept more than one potential signal.
375
376 Fixed bugs (FG#.. -> framagit bugs; FG!.. -> framagit merge requests):
377  - FG#28: add sg_actor_self (and other wrappers on this_actor methods)
378  - FG#29 and FG#33: provide a new C API to mutexes and condition variables
379  - FG#30: convert MSG_process_{un}ref to sg_actor_{un}ref
380  - FG#31: per-actor data
381  - FG#34: SG_BARRIER_SERIAL_THREAD?
382  - FG#35: model-checker does not like buster-produced binaries
383  - FG!13: MC: complete workaround in the error msg seen on modern systems
384  - FG!15: execute_flops now logs compute
385  - FG!16: Fix the ns-3 bindings when several flows are simultaneously finishing
386  - FG!17: ns-3: unblock the right number of communications + others issues
387  - FG!18: Improving the performance of the ns-3 bindings
388  - GH#189: Energy consumption of parallel tasks
389  - GH#219: Error in the throughput of TCP transfer
390  - GH!330: Minor polishing of English: Configuring_Simgrid
391  - GH!331: Fix a doc error about actors (Tutorial_algorithms)
392  - GH!332: Add '-O0' flag for: cmake -DCMAKE_BUILD_TYPE=Debug
393  - GH!334: Rework energy plugin, again
394
395 ----------------------------------------------------------------------------
396
397 SimGrid (3.23.2) July 8. 2019
398
399 Documentation:
400  - Nicer introduction page.
401  - Migrate the "Deploy your application" page to the new doc.
402  - Move Java as a subtree of MSG.
403
404 General:
405  - Rename simgrid::TimeoutError to simgrid::TimeoutException.
406
407 XBT:
408  - Drop xbt_dynar_sort_strings().
409
410 Bugs:
411  - Really fix FG#26: Turning off a link should raise NetworkFailureException
412  - FG#27: Wrong exception thrown to wait_any when link is turned off
413  - GH#328: Java: Canceling multiple tasks in a single vm/host
414
415 ----------------------------------------------------------------------------
416
417 SimGrid (3.23) June 25. 2019
418
419 The Exotic Solstice Release.
420
421 General:
422  - SunOS and Haiku OS support. Because exotic platforms are fun.
423  - Stop setting random seed with srand48() at initialization.
424  - Use addr2line as a fallback for stacktraces when backtrace is not available.
425  - Build option -Denable_documentation is now OFF by default.
426  - Network model 'NS3' was renamed into 'ns-3'.
427
428 Python:
429  - Simgrid can now hopefully be installed with pip.
430
431 S4U:
432  - wait_any can now be used for asynchronous executions too.
433
434 XBT:
435  - New log appenders: stdout and stderr. Use stdout for xbt_help.
436  - Drop xbt_dict_dump.
437
438 SMPI:
439  - SMPI now reports support of MPI3.1. This does not mean SMPI supports all MPI 3 calls, but it was already the case with 2.2
440  - MPI/IO is now supported over the Storage API (no files are written or read, storage is simulated). Supported calls are all synchronous ones.
441  - MPI interface is now const correct for input parameters
442  - MPI_Ireduce, MPI_Iallreduce, MPI_Iscan, MPI_Iexscan, MPI_Ireduce_scatter, MPI_Ireduce_scatter_block support
443  - Fortran bindings for async collectives.
444  - MPI_Comm_get_name, MPI_Comm_set_name, MPI_Count support.
445
446 Model-checker:
447  - Remove option 'model-check/record': Paths are recorded in any cases now.
448  - Remove option 'model-check/sparse-checkpoint': Checkpoints are now
449    always sparse. That's an immense gain in memory, and can even be
450    faster because of cache effects. So there is no need to clutter the
451    code to allow the user to go for the unefficient mode.
452
453 Network models:
454  - Remove the lagrange-based models (Reno/Reno2/Vegas). The regular
455    models proved to be more accurate than these old experiments.
456
457 Fixed bugs (FG=FramaGit; GH=GitHub -- Please prefer framagit for new bugs)
458  - FG#1: Broken link in error messages
459  - FG#2: missing installation documentation
460  - FG#3: missing documentation in smpirun
461  - FG#6: Python bindings not available on PyPI
462  - FG#7: simple cmake call requires doxygen
463  - FG#8: make python bindings an optional dependency
464  - FG#10: Can not use MSG_process_set_data from SMPI any more
465  - FG#11: Auto-restart actors forget their on_exit behavior
466  - FG#12: -Denable_lto=OFF doesn't disable LTO
467  - FG#13: Installs unstripped file 'bin/graphicator'
468  - FG#14: Installs the empty directory 'doc/simgrid/html'
469  - FG#15: Setting -Denable_python=OFF doesn't disable the search for pybind11
470  - FG#17: Dead link in doc (pls_ns3)
471  - FG#20: 'tesh --help' should return 0
472  - FG#21: Documentation link on http://simgrid.org/ broken
473  - FG#22: Debian installation instruction are broken
474  - FG#26: Turning off a link should raise NetworkFailureException exceptions
475  - GH#133: Java: a process can run on a VM even if its host is off
476  - GH#320: Stacktrace: Avoid the backtrace variant of Boost.Stacktrace?
477  - GH#326: Valgrind-detected error for join() when energy plugin is activated
478
479 ----------------------------------------------------------------------------
480
481 SimGrid (3.22) April 1. 2019
482
483 The Easter Christmas Release (this one is somewhat late).
484
485 Python:
486  - We are excited to introduce the SimGrid/S4U interface to your neighborhood
487  - Not complete yet: asynchronous activities (amongst others) are still missing
488  - Still ongoing: the interface may change in the future. We need more
489    testers! Please report any glitches.
490  - No new project using Java should start now. Please switch to Python.
491
492 General:
493  - Some of the internal cleanups may lead to speed improvements:
494    - The hard limitation on the amount of simulated actors with
495      Java+Mac was removed. Now, the  available memory is the only limit.
496    - Our refcounting was tidyied, leading to 10% speedups in some cases.
497  - We are still working on making our code robust to the actor kills
498    and hosts' churn. Things are improving, but it's not perfect yet.
499  - Replaced our own code to display a backtrace (that was forking addr2line)
500    with the Boost.Stacktrace library.
501    You won't see your backtraces without this optional dependency.
502  - Bump cmake dependency to 3.5 (provided by Ubuntu 16.04).
503  - Stop setting random seed with srand() at initialization.
504
505 XML
506  - In <host> and <peer>, 'availability_file' is now 'speed_file'.
507    XML file version remains 4.2 since old files are still compatible.
508
509 Java:
510  - Process termination which was broken at version 3.21 has been repaired.
511  - Expose host load plugin: loadInit, getCurrentLoad, getComputedFlops, getAvgLoad
512  - Hide the examples into examples/deprecated. New users should use Python.
513
514 MSG:
515  - Drop MSG_process_create_from_stdfunc() from the API.
516    This C++ function was a pimple in the C API, made necessary at some
517    point by the Java bindings. This is fixed now.
518  - Hide the examples into examples/deprecated. New users should use S4U.
519  - MSG_process_create and MSG_process_attach now crash if the host used
520    to run this process is off.
521  - Fix the protype of MSG_process_on_exit()
522    Now use (int,void*) callbacks instead of (void*,void*) ones.
523    The implementation was ways too messy to actually work, I guess.
524
525 SMPI:
526  - Change the way SMPI_SAMPLE_* macros work to avoid invalidating cache
527    too often and provide more accurate timings.
528  - Add -gdb, -lldb, and -vgdb shortcuts to help debug MPI codes with smpirun
529  - MPI_Alltoallw support
530  - Partial MPI nonblocking collectives implementation: MPI_Ibcast, MPI_Ibarrier,
531    MPI_Iallgather, MPI_Iallgatherv, MPI_Ialltoall, MPI_Ialltoallv, MPI_Igather,
532    MPI_Igatherv, MPI_Iscatter, MPI_Iscatterv, MPI_Ialltoallw.
533  - MPI_Request_get_status, MPI_Status_set_cancelled, MPI_Status_set_elements
534    support
535  - Basic implementation of generalized requests (SMPI doesn't
536    allow MPI_THREAD_MULTIPLE) : MPI_Grequest_complete, MPI_Grequest_start
537
538 XBT:
539  - Drop sg_cmdline. Please use xbt_cmdline instead.
540  - Drop the C xbt_os_mutex_t; Use the C++11 std::mutex.
541  - Drop the C xbt_os_sem_t; Use the C++ xbt::OsSemaphore.
542    OsSemaphore is implemented in a portable way with C++11 threads.
543    This should allow much more threads to be created at the same time,
544    allowing Mac and Java users to simulate many more actors.
545  - Implement the 'thread' factory with std::thread instead of xbt ones.
546    It is not possible to set the stack size with threads anymore, but
547    -fsplit-stack is the way to go nowadays when using threads.
548  - Drop the xbt_os_thread_t module (now unused)
549  - Drop xbt_ex_display(), use simgrid::xbt::log_exception() instead.
550  - Drop xbt_str_join_array().
551  - Drop cunit, use Catch2 instead.
552
553 Kernel:
554  - Many cleanups in the kernel::activity namespace. This was long
555    overdue, and shall open the path to many future endeavors.
556
557 Fixed bugs:
558  - #132: Java: a process can not shut down its own host
559  - #220: S4U: detached send causes exception if sender terminates soon after sending
560  - #261: Document the parameters of parallel execution's constructor
561  - #300: [s4u] BarrierPtr is missing
562  - #314: SMPI args internal cleanup
563  - #316: Fix a bug related to the CPU utilization of multi-core VM
564  - #318: Invalid trace file when using option --cfg=tracing/smpi/display-sizes:yes
565  - #324: S4U: Attempting to create an actor on turned off host segfaults instead of throwing
566  - #325: Turning off a host has different behavior on sleeping actors and computing actors
567
568 ----------------------------------------------------------------------------
569
570 SimGrid (3.21) October 3. 2018
571
572 The Restarting Documentation (TRD) Release.
573
574 Documentation:
575  - Convert the user manual to Sphinx for improved usability.
576    Unstable version now hosted on https://simgrid.frama.io/simgrid
577    Many glitches remain; stay tuned.
578  - Restrict the Doxygen reference API to the installed header files.
579    (documenting all internals this way is overkill + doxygen scales badly)
580  - New tutorial on S4U (highly inspired from the old MSG one, but with
581    a git repository to fork as a starting point, and a docker image)
582  - Started but not finished an SMPI tutorial inspired from the JLPC'14 one.
583  - The Developper manual is still to be converted (not compiled until then)
584  - Some parts are still missing in this conversion (such as the
585    platform and deployment sections) while others were blindly converted
586    and would need more love (such as the configuration flags).
587    Things will certainly further improve in the future releases.
588
589 S4U new features:
590  - Fully reimplement auto_restart mechanism that was utterly broken
591    (fix #22, #131 and #281 that were all very related)
592  - Implement semaphores (fix #303 and #291)
593  - When creating an actor from a function and its parameters,
594    move-only parameters are not allowed anymore, as it would prevent
595    the actor to be restartable if its parameters are consumed on run.
596  - s4u::Io: IOs go asynchronous as activities. New methods in s4u::Storage:
597      - io_init(sg_size_t, s4u::Io::OpType) to create a READ or WRITE asynchronous
598        IO operations that can be started, waited for, or canceled as a regular
599        activity.
600      - read_async(sg_size_t) and write_async(sg_size_t) which are wrappers on
601        io_init() + start()
602
603 Tracing:
604  - Rename 'power' and 'power_used' variables into 'speed' and 'speed_used'
605  - New host variable: 'core_count'
606
607 XBT:
608  - Remove xbt_os_thread_specific features
609  - Remove portability wrapper to condition variables
610  - Remove xbt_os_thread_yield()
611
612 SMPI:
613  - MPICH collective selector now mimics MPICH 3.3b
614  - OpenMPI collective selector now mimics OpenMPI 3.1.2 (default "tuned" setting)
615  - MPI_Init(NULL,NULL) is now allowed
616  - smpi/wtime option now injects time in gettimeofday or clock_gettime calls
617  - Command-line arguments should now be handled properly in Fortran simulations
618  - MPI Attributes and related callbacks should work in Fortran
619  - Apps using C + Fortran should now work
620  - MPI_* calls now check for non MPI_SUCCESS return values and emit warnings
621  - Support MPI_Error_String
622
623 Java:
624  - Due to an internal bug, Msg.run() must now be your last line.
625    We hope to fix it in a future release, and we are sorry for the inconvenience.
626
627 Fixed bugs:
628  - #22: Process autorestart seem to only work with CAS01 cpus
629  - #56: Feature request: dynamic SMPI replay
630  - #93: simgrid should not eat --help
631  - #111: How to change the loopback link characteristics?
632  - #116: Platform cluster radical
633  - #117: Platform cluster/host order
634  - #129: Replay_multiple on steroid
635  - #131: Java : autostart does not work
636  - #143: Setting a breakpoint at a given time
637  - #235: Network energy models should be integrated
638  - #264: Add ptask L07 resource tracing
639  - #271: Dynamic and manual replay of SMPI traces
640  - #279: Breakpoints option uses time deltas instead of absolute time
641  - #281: Daemonized actor no longer daemonized after an auto-restart
642  - #282: TIT convertor erase traces when using absolute path in the trace list file
643  - #285: segfault when a s4u actor kills itself with msg process tracing activated
644  - #286: Pajé traces are not exposing the number of cores
645  - #287: Command-line parsing should stop when encountering '--'
646  - #288: MPI_Init(NULL, NULL)
647  - #289: Improve documentation of Actor::on_destruction and this_actor::on_exit()
648  - #290: Method to check if a mailbox has a message ready to be consumed
649  - #291: [s4u] semaphores do not seem available yet
650  - #294: Alltoall collective implementation of mpich
651  - #295: Starting a Host as OFF is not supported
652  - #296: DTD too permissive
653  - #299: Add a s4u barrier example
654
655 ----------------------------------------------------------------------------
656
657 SimGrid (3.20) Released June 24. 2018
658
659 The proxy snake_case() release.
660
661 S4U:
662  - The whole API is now using snake_case() instead of mixing it with camelCase.
663    Compatibility wrappers in place for one year.
664  - We took the opportunity to increase the consistency of the API.
665    Please report any remaining glitches.
666  - New function simgrid::s4u::Host::get_actor_count:
667    Returns the number of actors running on a specific host.
668
669 SMPI:
670  - SMPI is now tested with ~45 proxy apps from various sources, with none or
671    only minor patching needed: check https://github.com/simgrid/SMPI-proxy-apps
672  - Replay: The replay file has been re-written in C++.
673  - Replay: Tags used for messages sent via MPI_Send / MPI_Recv are now
674    supported. They are stored in the trace and used when replayed.
675  - Basic support of MPI_Cancel. Robustness not guaranteed.
676  - Support of MPI_Win_allocate_shared, MPI_Win_shared_query, MPI_Comm_split_type
677    (only for MPI_COMM_TYPE_SHARED).
678  - New option: smpi/privatize-libs, to add external shared libs to be privatized
679    by SMPI. They will be copied locally and loaded separately by each process.
680    Example --cfg=smpi/privatize-libs:"libgfortran.so.3;libscalapack.so".
681  - Tracing: add tracing for MPI_Start, Startall, Testall, Testany
682  - Interception of getopt, getopt_long and getopt_long_only calls to avoid issues
683    with internal index optind with multiple processes. Only works if MPI_Init has
684    already been called.
685  - Fortran: SMPI builds a mpi.mod file which should allow use of "use mpi"
686    syntax without preprocessing tricks.
687
688 TRACE
689  - Change --cfg=tracing/msg/vm to --cfg=tracing/vm as virtual machine
690    behavior tracing is no longer limited to MSG
691  - TIT (Time Independent Traces): We finally support tags. Unfortunately,
692    this means that traces now need to be updated or re-obtained; both Irecv
693    and Isend lines in your traces have now in total 5 mandatory fields:
694       <rankid> <command> <to/from rankid> <tag> <size>
695    To update your traces, it suffices to add a 0 for the tag here.
696  - TIT now also supports waiting for a distinct request via MPI_Wait.
697    Wait/Test now wait for a specific request, not just the last one that was
698    issued. This unfortunately means another update, because we need to
699    identify which request you want to wait for. We do this via the
700    triplet (sender, receiver, tag), which needs to be added:
701       <rankid> <command> <sender> <receiver> <tag>
702  - Actions are now in lower case (e.g., "allReduce" becomes "allreduce").
703    New script simgrid_convert_TI_traces.py: upgrade your TI traces.
704
705 MSG
706  - The deprecation of MSG is ongoing (but this should not impact you).
707    Many MSG functions are now simple wrappers on the C API of S4U. If
708    you wish to convert your code to S4U, find the S4U counterparts of
709    your MSG calls in src/msg/msg_legacy.cpp.
710  - MSG can still be used, but won't evolve anymore.
711
712 Plugins:
713  - Allow to run the Link energy plugin from the command line with
714    --cfg=plugin:link_energy
715  - Rename Energy plugin into host_energy
716  - Rename Load plugin into host_load
717
718 Simix:
719  - Add parameter --cfg=simix/breakpoint to raise a SIGTRAP at given time.
720  - kill simix::onDeadlock() that was somewhat dupplicating s4u::on_deadlock()
721  - Improve performance when handling timeouts of simix synchros.
722
723 XBT:
724  - Config: the C API is now deprecated (will be removed in 3.23), and
725            the C++ API has been slightly improved.
726
727 Other:
728  - Fix several build issues on OSX.
729  - Move simgrid_config.h to simgrid/config.h (old header still working)
730
731 Fixed bugs:
732  - #143: Setting a breakpoint at a given time
733  - #150: Inconsistent event names in SMPI replay
734  - #258: daemonized actors hang after all non-daemonized actors have completed
735  - #267: Linker error on unit_tmgr
736  - #269: SMPI: tracing of MPI_Wait/all/any broken
737  - SMPI: Fix various crashes with combined use of MPI_PROC_NULL and MPI_IGNORE_STATUS
738
739 ----------------------------------------------------------------------------
740
741 SimGrid (3.19.1) Released March 22 2018
742
743  The Fixed ABI Release.
744
745  As you may know, we are currently refactoring SimGrid in deep.
746  Upcoming SimGrid4 will be really different from SimGrid3: modular,
747  standard and extensible vs. layered, homegrown and rigid. C++ vs. C.
748
749  Our goal is to smooth this transition, with backward compatibility
750  and automatic update paths, while still progressing toward SimGrid4.
751
752  SimGrid remains open during works: The last pure SimGrid3 release was
753  v3.12 while all subsequent versions are usable alpha versions of
754  SimGrid4: Existing interfaces remain unchanged, but the new S4U
755  interface is budding and the internals are deeply reorganized.
756
757  Since 2015, we work hard to reduce the changes to public APIs. When
758  we need to rename a public library symbol in S4U, we let your
759  compiler issue an explicative warning when you use the deprecated
760  function. These messages remain for four releases, i.e. for one full
761  year, before turning into an error. Starting with v3.15, your can
762  also adapt to API changes with the SIMGRID_VERSION macro, that is
763  defined to 31500 for v3.15, to 31901 for v3.19.1 and so on.
764
765  Starting with this v3.19.1, our commitment to reduce the changes to
766  the public interfaces is extended from the API to the ABI: a program
767  using only MSG or SimDag and compiled against a given version of
768  simgrid can probably be used with a later version of SimGrid without
769  recompilation. We will do our best... but don't expect too much of
770  it, that's a really difficult goal during such profund refactoring.
771
772  The difference between v3.19 and v3.19.1 is that the former was
773  accidentally breaking the ABI of MSG, while the later is restoring
774  the previous ABI.
775
776  S4U and kernel APIs will still evolve until SimGrid4, with one-year
777  deprecation warnings as currently. In fact, cleaning up these
778  interfaces and converting them to snake_case() is one release goal of
779  v3.20. But don't worry, we are working to smooth this upgrade path.
780
781  In summary, new projects should start with S4U to benefit of the
782  future, but old MSG projects should still be usable with no change.
783
784 ----------------------------------------------------------------------------
785
786 SimGrid (3.19) Released March 20 2018
787
788  The Moscovitly-cold Spring release.
789
790  SMPI user-visible improvements:
791  - Support of MPI_Type_create_subarray
792  - Unimplemented MPI calls now abort (instead of issuing a warning)
793    Some harmless calls around errhandlers still only issue a warning.
794  - MPI_Sendrecv was behaving badly when MPI_PROC_NULL was sender or receiver.
795  - Starting MPI ranks (or even MSG/S4U actors) once the simulation started
796    is now possible (mmap privatization was refactored to this end).
797    Adding new SMPI instances should also be technically doable now.
798
799  SMPI internal cleanups:
800  - Removed index notion from SMPI -- no more "getPid() - 1"!
801    In tracing files, actors are called rank-<PROCESS-ID> but these are
802    NOT the real ranks (tracing several communicators is not supported yet).
803  - Deprecate smpi_process_index() (will be removed in 3.22)
804  - Better testing on classical proxy apps, through an external project:
805    https://github.com/simgrid/SMPI-proxy-apps/
806
807  Documentation
808  - Use a graphical TOC to make it easier to find the documentation you need
809  - Revamp the MSG tutorial
810
811  MSG
812  - Fix MSG_task_get_remaining_work_ratio(): return 1.0 for unstarted tasks.
813  - Remove parameter of MSG_process_killall().
814    Resetting the PID was bogus anyway (several actors could have the same PID).
815
816  S4U
817  - Execution->setHost() can be called after start(), to migrate it.
818  - Comm::test_any() is now implemented.
819  - s4u::Actor now has onCreation() and onDestruction() signals.
820  - Install some kernel header files for the users' plugins and more.
821    Warning, their API is really not stable yet.
822     include/simgrid/kernel/resource/{Action,Resource,Model}.hpp
823     include/simgrid/kernel/routing/*Zone.hpp
824
825  SimDag
826  - SD_task_dependency_add(): remove unused parameters 'name' and 'data'.
827
828  Build System and other cleanups:
829  - Remove unused run-time parameter "tracing/onelink-only".
830  - SimGrid now works with intel compilers (MC still buggy)
831  - Remove XBT_LOG_CONNECT, it should be useless nowadays.
832  - tesh kills subprocesses on timeout (but not on windows)
833
834  PLATFORM:
835  - Rename FULLDUPLEX into SPLITDUPLEX (old name still accepted)
836
837  Fixed bugs:
838  - #194: Feature request: simgrid::s4u::Comm::test_any()
839  - #245: migrating an actor does not migrate its execution
840  - #253: Feature Request: expose clusters as objects
841  - #254: Something seems wrong with s4u::Actor::kill(aid_t)
842  - #255: Tesh broken on Windows
843  - #256: Modernize FindSimGrid.cmake
844  - #257: Fix (ab)use of CMake install
845
846 ----------------------------------------------------------------------------
847
848 SimGrid (3.18) Released December 24 2017
849
850  The "Ho Ho Ho! SimGrid 4 beta is coming to town" release.
851
852  MSG IS NOW DEPRECATED. Please use S4U for new projects.
853  - Support for MSG should not be removed from SimGrid before 2020,
854    but future evolutions will be limited to the integration of
855    user-provided patches.
856
857  S4U New features
858  - s4u::onDeadlock() signal, run before stopping the simulation.
859  - s4u::Exec: asynchronous executions (abstraction of background
860    threads)
861  - s4u::Host->getLoad() returns the achieved speed in flops/s
862
863  S4U API changes
864  - Link::name() is deprecated and will be removed in v3.21, use
865    Link::getCname() instead.
866  - Mailbox::getName() changed to return a std::string, use
867    Mailbox::getCname() instead to get a char*.
868  - Storage::getName() changed to return a std::string, use
869    Storage::getCname() instead to get a char*.
870  - s4u::allStorages() becomes s4u::getStorageList(whereTo)
871    to have both allocation and deallocation of the map in user space.
872
873  MSG
874  - Forbid the use of MSG_task_get_flops_amount() on parallel tasks:
875    The amount of flops remaining to do is a vector, not a scalar.
876  - Introduce MSG_task_get_remaining_work_ratio(), which does what its
877    name implies on both sequential and parallel tasks.
878  - Both changes fix GitHub's #223 using PR #237 as a basis.
879    Thanks Michael Mercier.
880  - Most examples were converted to S4U and hidden elsewhere at tests.
881    Rationale: we still want MSG to work; we want newcomers to use S4U.
882
883  SURF
884  - LMM stuff moved to its own namespace: simgrid::kernel::lmm.
885  - Renamed LMM classes (e.g. s_lmm_system_t -> System).
886
887  SMPI
888  - Switch to the faster dlopen privatization mechanism by default
889  - Documentation improvments
890
891  Virtual Machines
892  - Live migration is getting moved to a plugin. Dirty page tracking is
893    the first part of this plugin. This imply that VM migration is now
894    only possible if one this function is called:
895     - C/MSG: MSG_vm_live_migration_plugin_init()
896     - C/C++: sg_vm_live_migration_plugin_init()
897     - Java:  Msg.liveMigrationInit()
898    For C and C++, "simgrid/plugins/live_migration.h" also has to be
899    included.
900
901  XBT
902  - Define class simgrid::xbt::Path to manage file names.
903  - Removed unused functions:
904    - xbt/file.h: xbt_basename(), xbt_dirname(), xbt_getline()
905    - xbt/graph.h: xbt_graph_edge_get_length(), xbt_graph_edge_set_length,
906        xbt_graph_export_graphviz()
907    - xbt/str.h: xbt_str_join()
908  - Remove unused datatypes:
909    - xbt/heap.h: use std::priority_queue or boost::heap instead
910    - xbt/swag.h: use boost::intrusive::list instead
911
912  PLUGINS:
913  - New link_energy plugin for the consumption of the links.
914  - All of the operations on files and storage contents have been
915    packaged into a plugin (src/plugins/file_system). The current
916    public interface can be found in
917    include/simgrid/plugins/file_system.h
918    To use these functions you now have to initialize the plugin by
919    calling MSG_storage_file_system_init() just after calling
920    MSG_init() or sg_storage_file_system_init() just after creating
921    the Engine.
922
923  XML
924  - Remove the undocumented/untested tag <include>
925
926  TRACE
927  - Remove viva specific tracing as the tool is no longer maintained
928
929  Fixed bugs:
930  - #248: Kill of finished processes leads to segfault
931  - #240: xbt_cond_wait_timeout should gracefully return for C apps
932  - #239: please implement signal s4u::onDeadlock()
933  - #230: segfaults when exit() without run()
934  - #225: s4u::Actor::kill() doesn not really kill victims in a join()
935  - #223: MSG_task_get_flops_amount() not working with parallel tasks
936  - #222: Actor::kill() doesn't really kill and segfaults
937  - #221: odd LMM warning when killing an actor
938  - #120: Memory leak when the processes are forcefully killed
939
940 ----------------------------------------------------------------------------
941
942 SimGrid (3.17) Released October 8 2017
943
944  The Drained Leaks release: (almost) no known leaks despite the tests.
945
946  Even very long simulations will preserve your memory: our testsuite
947  stresses SimGrid for over 45mn on fast machines for a coverage of
948  over 80%, and there is only one single known leak, of about 4kb.
949
950
951  S4U
952   - Comm.detach(): start and forget about asynchronous emission. A cleanup
953     handler may be given to free resources if the comm cannot be completed.
954   - this_actor::send(mailbox) is now mailbox->put()
955   - New: simgrid::s4u::Comm::wait_all()
956   - New: Host.execute() for remote executions.
957
958  SURF
959   - Unused option network/sender-gap is removed.
960
961  MSG
962   - Deprecate MSG_task_isend_with_matching(): This unused feature
963     really complicates our internals. Will be removed in v3.20.
964
965  Simix
966   - Improved context termination.  It is now possible to free resources, even
967     when a process is forcibly killed.
968   - ContextBoost: add support for Boost versions above 1.61.
969
970  XBT
971  - Bring back run-time option --cfg=exception/cutpath to remove exception
972    backtraces.
973  - Removed unused functions:
974    - xbt/str.h: xbt_str_split_str(), xbt_str_subst(), xbt_str_ltrim(),
975        xbt_str_rtrim(), xbt_str_trim().
976    - xbt/xbt_os_thread.h: xbt_os_thread_cancel(), xbt_os_thread_detach().
977
978  Misc
979  - Removed header files obsolete since SimGrid 3.12:
980    msg/datatypes.h, msg/msg.h, simdag/datatypes.h, simdag/simdag.h.
981  - Fix many bugs:
982    - #3: SD_exit should be made optional
983    - #120: Memory leak when the processes are forcefully killed
984    - #159: Threading test regression in Actor refcounting
985    - #170: simgrid::s4u::Comm::wait_any() returns too many comms
986    - #185: simgrid::s4u::Engine::instance()->shutdown() segfaults
987    - #186: Actor::killAll() segfaults if some process is blocked on wait()
988    - #191: VM migration and pstate
989    - #192: Updating the energy consumptions of all hosts crashes with VMs
990    - #195: All actors have PID=0 in the logs
991    - #204: Sometimes segfault with thread contexts and mmap privatization
992    - #222: Actor::kill() doesn't really kill and segfaults
993    - #225: Actor::kill() doesn't really kill when victims are doing a join()
994
995 ----------------------------------------------------------------------------
996
997 SimGrid (3.16) Released June 22. 2017.
998
999  The Blooming Spring Release: developments are budding.
1000
1001  Portability status:
1002   - FreeBSD: Disable SMPI mmap privatization, switch automatically to dlopen.
1003   - Mac, BSD: dlopen+thread broken, switch automatically to raw contexts.
1004   - Java JAR file should be finally fully working on Mac OSX too.
1005
1006  XML platforms: Switch to platform v4.1 format.
1007  * This is (mainly) a backward compatible change: v4 are valid v4.1 files
1008    - <zone> can be used as a synonym for the now deprecated <as>
1009    - <zoneRoute> can be used as a synonym for the now deprecated <asroute>
1010    - <bypassZoneRoute> can be used as a synonym for the now deprecated <bypassAsRoute>
1011    - <actor> can be used as a synonym for the now deprecated <process>
1012    - state_file and avail_file periodicity is now easier to express
1013      (check the documentation) the old behavior should still work.
1014  * Storage: not backward compatible, but it seems that nobody ever used it
1015    - Remove attribute 'content_type' of <storage_type>: was never used
1016    - Make attribute 'model' of <storage_type> optional: for future usage
1017    - Remove Bconnection model property: was never (in)validated. Replaced by
1018       the maximum of the read and write bandwidth as a resource constraint.
1019
1020  SimDag
1021   - New and Backwards Compatibility break:
1022     SD_simulate_with_update (double how_long, xbt_dynar_t changed_tasks_dynar)
1023     When one wants to get the list of tasks whose states have changed during a
1024     simulation round, s/he has to allocate and free a dynar and use it as
1025     argument to this function. The former SD_simulate (double how_long)
1026     now returns void.
1027
1028  Virtual Machines
1029   - Allow multicore VMs, with the correct sharing (unless you overcommit)
1030     BUG: vCPU overcommitting still leads to buggy sharing, though. WIP.
1031
1032  Energy
1033   - New function to update the consumption of all hosts at once.
1034   - Fix the model for multi-core hosts, linear in the amount of busy
1035     cores with an abnormality for pIdle (see paper).
1036     BUG: Still not satisfactory for ptask on mono-cores.
1037
1038  MSG
1039   - The netzone are now available from the MSG API.
1040     The old names still work, but are now deprecated.
1041
1042  SMPI
1043   - New algorithm to privatize globals: dlopen, with dynamic loading tricks
1044   - New option: smpi/keep-temps to not cleanup temp files
1045   - New option: smpi/shared-malloc-blocksize . Relevant only when global shared
1046     mallocs mode is used, allows to change the size of the fake file used
1047     (default 1MB), to potentially limit the number of mappings for large runs.
1048   - Support for sparse privatized malloc with SMPI_PARTIAL_SHARED_MALLOC()
1049   - Fortran ifort and flang compilers support
1050   - New RMA calls supported (experimental):
1051       - MPI_Win_allocate, MPI_Win_create_dynamic, MPI_Win_attach
1052       - MPI_Win_detach, MPI_Win_set_info, MPI_Win_get_info
1053       - MPI_Win_lock_all, MPI_Win_unlock_all, MPI_Win_flush
1054       - MPI_Win_flush_local, MPI_Win_flush_all, MPI_Win_flush_local_all
1055       - MPI_Op_commutative, MPI_Fetch_and_Op, MPI_Compare_and_swap
1056       - MPI_Rput, MPI_Rget, MPI_Raccumulate, MPI_Rget_accumulate
1057
1058  S4U
1059   - New: this_actor::isMaestro() returns whether we are in kernel mode.
1060   - Behind the scene, ActivityImpl are now automatically refcounted.
1061     Removing this nasty bottleneck will greatly simplify our internals.
1062
1063  XBT
1064   - Replay: New function xbt_replay_action_get():
1065     Retrieve the function previously associated to an event type.
1066   - DROPPED FUNCTION: xbt_str_varsubst()
1067   - DROPPED MODULE: strbuff. We don't need it anymore.
1068   - DROPPED MODULE: matrix. We don't need it anymore.
1069   - DROPPED MODULE: lib. We don't need it anymore.
1070
1071  -- Thu Jun 22 22:48:12 CEST 2017   -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>
1072
1073 SimGrid (3.15) Released March 22. 2017
1074
1075  The Spring Release: continuous integration servers become green
1076  We fixed even the transient bugs on all target architectures:
1077    Linux (CentOS, Debian, Ubuntu, Fedora), Mac OSX (Mavericks, El Capitan)
1078    Windows, FreeBSD, NetBSD.
1079
1080  - Rename NetCards to NetPoints.
1081    This was intended to help NS3 users, but that's not a netcard.
1082    That's a point in the routing algorithm, let's avoid wrong simplifications.
1083
1084  MSG
1085  - New: MSG_process_yield(). Stop and yield to other processes.
1086  - New: MSG_process_daemon(). Daemon processes are automatically killed
1087    when the last non-daemon process terminates
1088  - New: MSG_process_ref/unref(). Fiddle with the process refcounting.
1089  - Renamed MSG_energy_plugin_init() -> MSG_host_energy_plugin_init()
1090    to make room for the upcoming network energy plugin.
1091  - Drop MSG_host_get_current_power_peak: duplicates MSG_host_get_speed
1092
1093  Java
1094  - Ensure that an actor can kill itself with Process::exit()
1095  - Kill the obscure NativeException. Nobody want to survive the issues
1096    it denotes, so use JniException that is a RuntimeException (not to
1097    be caught explicitly).
1098  - Partial bug fix in initialization. SimGrid flags on command line were
1099    consumed at C level but stayed in the original Java String[] args.
1100    This could mess users' args[i] if SG flags were not put at the end of
1101    the command line.
1102    The SimGrid flags are now removed from the Java arguments. However,
1103    the number of arguments REMAINS UNCHANGED. It is then UNSAFE to test
1104    if args.length is greater than the number of YOUR OWN ARGUMENTS.
1105    It might be if you have --log or --cfg flags in the command line.
1106  - Fix numerous memleaks all around the place. In particular, around VMs.
1107
1108  S4U
1109  - New callbacks:
1110    - s4u::onPlatformCreated: right before the simulation starts
1111    - s4u::onSimulationEnd: right after the main simulation loop
1112    - s4u::onTimeAdvance: right after a clock change (time is discrete)
1113    - s4u::Host::onSpeedChange: when the pstate is changed, or when an
1114      event from the availability_file changes the avail speed.
1115  - Links are now usable from s4u
1116  - New: Engine::hostList() and Engine::hostCount(). Still clumsy.
1117  - New: Actor::suspend(), Actor::resume(), and Actor::migrate(new_host)
1118  - New examples: The conversion of MSG examples to S4U has begun
1119     - Actors: create, kill, migration, and suspend
1120     - Applications: master-worker and token-ring
1121     - Action replay: communications and storage
1122  - Drop Host::getPstateSpeedCurrent() which duplicates Host::speed()
1123
1124  SimDag
1125  - Backwards Compatibility breaks
1126     - The SD_route_get_list and SD_route_get_size functions have been removed.
1127       They are replaced by the unique
1128          void sg_host_route(sg_host_t src, sg_host_t dst, xbt_dynar_t links)
1129       The route from src to dst is built in the links dynar whose size can
1130       be obtained with xbt_dynar_length.
1131     - The SD_route_bandwidth and SD_route_latency functions have been replaced by
1132         sg_host_route_bandwidth and sg_host_route_latency.
1133       Macros ensure the backwards compatibility, but you should fix your code
1134
1135  SMPI
1136  - Major C++ rewrite ongoing (SMPI used to be C compiled in C++).
1137    This can break codes using SMPI internals (from private.h instead of the public smpi.h).
1138  - Bump our claim of support from MPI 1.1 to MPI 2.2.
1139    We don't support 100% of it, but it should be enough. Contact us if not.
1140  - MPI_Win_lock/unlock, MPI_Get_accumulate support added (as for all RMA, implementation is
1141    naive and probably inaccurate)
1142  - New algorithm for SMPI_SHARED_MALLOC: global, where all blocks are
1143    mapped onto a unique small file using some system magic.
1144  - Bugfix: smpirun was sometimes misusing hostfile when wrongly terminated
1145  - Fortran: cleanups, fixes, support of user-added operations
1146  - RMA: MPI_Accumulate are applied in correct order.
1147  - RMA:  MPI_Win_{complete/post} shouldn't miss messages anymore.
1148  - Better support for MPI_IN_PLACE
1149  - Support for MPI_Win attrs and keyvals.
1150  - Support MPI_Comm_group_create, MPI_Type_size_x
1151  - MPI ops should be properly applied to all allowed types
1152  - Replace implementation of MPI_Bcast "scatter followed by rdb allgather"
1153    algorithm by a non failing one from mpich.
1154
1155  XBT
1156  - Kill the fifo data container: we don't use it anymore.
1157
1158  XML
1159  - A <cluster> can now be created with different speed values to represent pstates.
1160    see examples/platforms/energy_cluster.xml for an example.
1161
1162 SimGrid (3.14.159) Released December 28. 2016
1163
1164  The previous release was only a crude approximation of a Pi release;
1165  this one should be a bit better.
1166
1167  - Revert a last minute change that broke on Mac OSX.
1168  - Fix the changelog and NEWS files.
1169  - Improve the documentation, in particular of the routing module.
1170  - Integrate some patches flying around in Debian.
1171
1172 SimGrid (3.14) Released December 24. 2016
1173
1174  Documentation
1175  * The whole documentation was reworked and reorganized. There is
1176    still much room for improvement here, but we're on it.
1177
1178  Infrastructure
1179  * We now need python3 for our testing infrastructure.
1180  * Model checking needs libevent
1181
1182  MC
1183  * Now works on FreeBSD
1184
1185  SMPI
1186  * Privatization now works on FreeBSD
1187
1188  * Privatization is now activated by default in smpirun
1189    You can turn it off with -no-privatize if something goes wrong.
1190
1191  * Call-location tracing for SMPI.
1192    You can add the exact location (filename / linenumber) of an MPI call to
1193    your trace files and slow down or speed up the simulation between two
1194    consecutive calls by using an adjustment file (see the documentation).
1195
1196  * Fixed computation of timings for MPI_Send, MPI_Recv & possibly also others
1197    We've found a bug that prevented SMPI to account for MPI_Send, MPI_Recv
1198    and others (in some cases) in a correct way. That is, the smpi/os, smpi/or
1199    values were ignored in some cases. The timings of these functions can now
1200    be significantly different.
1201
1202  * smpi/cpu-threshold:-1 should become smpi/simulate-computation:no
1203    smpi/running-power    is renamed to smpi/host-speed
1204
1205  * smpi/grow-injected-times option to enable or disable multiplication of the
1206    timings injected in MPI_Iprobe, or MPI_Test. Enabled by default, which can
1207    make simulation less precise (but also much faster).
1208
1209  * smpirun script should be (much) faster for large deployments.
1210
1211  * SMPI tracing: fixed issue with poor matching of send/receives.
1212
1213  * Replay: Fix broken waitall
1214
1215  New functions and features
1216  * MSG_parallel_task_execute_with_timeout, to timeout computations.
1217
1218  Dropped / renamed functions and features
1219  * msg_mailbox_t and associated functions. Use s4u::Mailbox instead.
1220    - MSG_mailbox_is_empty() -> Mailbox::empty()
1221    - MSG_mailbox_front() -> Mailbox::front()
1222    - MSG_mailbox_get_by_alias() -> simgrid::s4u::Mailbox::byName(name)
1223    - MSG_mailbox_get_task_ext() -> MSG_task_receive_ext()
1224    - MSG_mailbox_get_task_ext_bounded -> MSG_task_receive_ext_bounded
1225    - MSG_host_(get/set)_params -> MSG_vm_(get/set)_params
1226  * Don't pass the free_f parameter to property related functions:
1227    - MSG_host_set_property_value()
1228    - MSG_as_router_set_property_value()
1229    - MSG_storage_set_property_value()
1230  * VM properties. Since msg_vm_t are msg_host_t, just use
1231    MSG_host_get_property_value() and friends
1232  * VM I/O related things:
1233    - Ignored parameter of vm_create: core_nb, disk_path and disk_size.
1234    - Unimplemented save/restore methods
1235  * MSG_as_router_get_property_value() was redundant with
1236    MSG_environment_as_get_property_value().
1237    - Removed MSG_as_router_*propert*() functions
1238    - Added MSG_environment_as_set_property_value() for consistency
1239  * xbt heterogeneous dictionaries (created with xbt_dict_new()).
1240    Well, they are still there for now, but deprecated with a warning.
1241    Please switch to xbt_dict_new_homogeneous() before this is removed
1242    for real.
1243  * Task affinity. Its intended behavior (that was very badly tested
1244    and probably not really working) was deceiving what most users
1245    would have hoped here.
1246  * xbt_os_sem_get_value: unused internally, deprecated on OS X El Capitan
1247  * Option network/coordinates is now useless and should be dropped.
1248
1249  Storage:
1250  * Added option storage/max_file_descriptors to allow more than 1024 files opened
1251
1252  SURF:
1253  * Added option maxmin/concurrency_limit to allow more than 100 processes per host
1254  * Added Dragonfly topology support
1255
1256  XML:
1257  * Add Exa- and Peta- units such as EiB, EB, Eib, Eb for size, and
1258    EiBps, EBps, Eibps, Ebps for bandwidth.
1259    They may become useful to some lucky ones.
1260
1261  Java:
1262  * New functions: msg.Comm.waitAll() and msg.Comm.waitAny()
1263  * ex/app_tokenring: new example, very similar to the MSG Token Ring
1264  * ex/async_waitAll: new example, on asynchronous communications
1265
1266  MSG:
1267  * Memory usage should be decreased for simulations with a large number
1268    of processes. This also helps for SMPI.
1269
1270 SimGrid (3.13) stable; urgency=low
1271
1272  The Half Release, a.k.a. the Zealous Easter Trim.
1273
1274  - We removed half of the lines, that were mostly experimental cruft.
1275    v3.12 lasted 286000 lines of code, v3.13 is only 142000 lines
1276    (not counting blanks and comments -- according to openhub.net)
1277  - The internals are now compiled in C++ (and will soon be clean C++)
1278  - We removed 75 klines of XML, 12 klines of Java, 5 klines of cmake,
1279    59 klines of C, etc. We added only 29 klines of C++ in replacement.
1280
1281  * Backwards Compatibility breaks
1282    - Removed Lua simulation bindings (switch to C or Java for that).
1283      Lua can still be used to describe platforms
1284    - Removed Java kernel plug-ins.
1285      Will be reintroduced after the ongoing major internals reorg.
1286    - In MSG
1287       - the following functions were removed.
1288         They were too specific and should be reimplemented in a generic
1289         way, with filter function.
1290           - MSG_task_listen_from_host
1291           - MSG_mailbox_get_count_host_waiting_tasks
1292           - MSG_mailbox_put_with_timeout was removed.
1293             Please use MSG_task_send_with_timeout instead.
1294    - In SimDag
1295       - the SD_application_reinit function was removed. It has been a noop for a while.
1296       - The ACCESS_MODE of SD_workstation has been removed. This feature was not really usable and should soon be
1297         replaced by a more flexible mechanism.
1298       - The following functions thus do not exist anymore
1299          - SD_workstation_get_access_mode
1300          - SD_workstation_set_access_mode
1301          - SD_workstation_get_current_task
1302       - Basic estimation functions have been removed but can easily be replaced
1303         - SD_route_get_communication_time => SG_route_get_latency() + amount / SD_route_get_bandwidth()
1304         - SD_workstation_get_computation_time => amount / sg_host_speed()
1305    - In Java
1306       - VM.setBound(int load) is now VM.setBound(double bound) to meet the MSG semantics.
1307         Use VM.getSpeed()*load/100 for the legacy behavior.
1308    - In CMake
1309       - option enable_tracing was removed. It was not doing anything for a while.
1310    - In the ModelChecker:
1311       - the model-checker now ptraces the model-checked process which means
1312         you cannot use a debugger on the latter anymore (we might make this
1313         optional in the feature);
1314       - removed soft-dirty page tracking;
1315       - remove model-checked side snapshot management,
1316         MC_snapshot() and MC_compare_snapshot();
1317       - keep the MC_cut() function as a stub (it was not really working
1318         in the previous release).
1319
1320  Options:
1321  * All options are consistently in kebab-case. Old names are kept as alias.
1322
1323  XML platforms:
1324  * Switch to platform v4 format.
1325    - Rename from 'power' to 'speed' the attributes describing the amount of
1326      flops that a <host>, <peer>, <cluster> or <cabinet> can deliver per second.
1327    - In <trace_connect>, attribute kind="POWER" is now kind="SPEED".
1328    - In <host> and <link>, attributes availability and state are gone.
1329      It was redundant with state and availability traces, and with peak values.
1330    - In <cluster>, attributes availability_file and state_file are gone.
1331      It was too complex and unused.
1332    - Kill <gpu>. Was not doing anything.
1333    - The DOCTYPE points to the right URL:
1334      http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd
1335      (the file at this address now documents the changelog since its v1)
1336    - A warning is emitted for unit-less values (they are still accepted).
1337      - speed. Default: 'f' or 'flops'. Also defined:
1338         'Yf',         'Zf',         'Ef',       'Pf',        'Tf',        'Gf',        'Mf',        'kf'
1339         'yottaflops', 'zettaflops', 'exaflops', 'petaflops', 'teraflops', 'gigaflops', 'megaflops', 'kiloflops'
1340      - bandwidth. Default: 'Bps' bytes per second (or 'bps' for bits but 1 Bps = 8 bps)
1341        Also defined in bytes: 'TiBps', 'GiBps', 'MiBps', 'KiBps', 'TBps', 'GBps', 'MBps', 'kBps', 'Bps'
1342        And the same in bits:  'Tibps', 'Gibps', 'Mibps', 'Kibps', 'Tbps', 'Gbps', 'Mbps', 'kbps', 'bps'
1343      - latency. Default: 's' second. Also defined:
1344        'w' week, 'd' day, 'h' hour, 'm' minute, 'ms' millisecond, 'us' microsecond, 'ns' nanosecond, 'ps' picosecond
1345
1346  * bin/simgrid_update_xml can upgrade your files automatically (won't convert unit-less values)
1347    tools/sg_xml_unit_converter.py may help (but it's just a warning and will probably ever be).
1348
1349  S4U
1350  * s4u::Host is now the preferred public interface to the Host features.
1351    sg_host_* functions are C bindings to the exact same behavior
1352    MSG_host_* and SD_workstation_* are #define to the sg_host_* ones
1353
1354  MSG
1355  * The examples were completely reorganized (in C and Java), for your browsing pleasure.
1356  * Kill all deprecated functions (the ones you had when declaring MSG_DEPRECATED).
1357    They were deprecated since a few years, and probably did not even compile anymore.
1358
1359  SimDag
1360  * The API has been profoundly modified to directly use the core objects instead of redefining its own.
1361    SD_Workstation_t and SD_link_t are now sg_host_t and sg_link_t respectively.
1362    Some functions have also been renamed for consistency. Backward compatibility is maintained, but users are
1363    encouraged to update their codes. A list of the modified functions can be found at the end of
1364    include/simgrid/simdag.h
1365
1366  Simix
1367  * simgrid::simix::kernelImmediate() is the closure callback. It ensures that
1368     the lambda or closure passed as a parameter will run in kernel mode.
1369    All the callback functions should be rewritten to that interface at some point.
1370
1371  Surf
1372  * Reorganizing and cleaning the internals all around the place.
1373
1374  SMPI
1375  * Remove old default barrier/bcast buggy algorithms (see #18407)
1376  * Various bug fixes to handle more codes
1377  * Remove the need for the --foreground option of smpirun (it is still
1378    accepted for backward compatibility).
1379
1380  XBT
1381  * Kill the setset data container: MC don't use it anymore.
1382  * Kill the queue data container: it made more sense with GRAS.
1383  * Kill the xbt_peer_t data type: it's useless without GRAS.
1384  * Kill rm_cb feature of config sets: it was never useful.
1385  * Kill graphxml parsing feature. It was not used.
1386  * Kill the deprecated code protected by XBT_USE_DEPRECATED
1387  * New functions:
1388    - xbt_dynar_sort_strings(), when the content is char*
1389    - xbt_str_parse_int / xbt_str_parse_double, wrapping strtol/strtod
1390      They throw exceptions on invalid input;
1391  * C++ support for declaring CLI flags (simgrid::config::Flag);
1392  * class for abstracting different signal backends (simgrid::xbt::signal).
1393    with no external dependencies (we need very simple signals).
1394
1395  MC
1396  * refactoring and cleanup of the code;
1397  * ongoing process to cleanly separate the model-checking algorithms
1398    from the code model-checking support.
1399
1400  -- Wed Apr 27 21:00:53 CEST 2016 Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>
1401
1402 SimGrid (3.12) stable; urgency=low
1403
1404  The Facelift Release.
1405
1406  Build System
1407   * Require g++ v4.7 at least to not speak prehistorical C++.
1408   * Require Boost 1.48 (for signal2 component).
1409   * Java must be version 7 at least when activated.
1410   * Builds on Windows again (including Java bindings).
1411   * Tracing is now always enabled (no way to turn it out)
1412   * Remove GTNetS. It was not working anyway.
1413   * Various cleanups in the cmake scripts.
1414   * Move headers around to sort them out on installed systems:
1415     - instr/instr.h  -> simgrid/instr.h
1416     - instr/jedule/* -> simgrid/jedule
1417     - simdag/datatypes.h was removed
1418     - simdag/simdag.h -> simgrid/simdag.h
1419     - msg/datatypes.h was removed
1420     - msg/msg.h -> simgrid/msg.h
1421
1422  cMSG:
1423  * Interface improvement:
1424    - Rename MSG_host_is_avail(h) to MSG_host_is_on(h)
1425    - Sanitize the interface in MSG_task_ module:
1426      - Merge two functions that were close enough but misleading:
1427        set_compute_duration(t)      -> set_flops_amount(t)
1428        get_remaining_computation(t) -> get_flops_amount(t)
1429      - set_data_size(t) -> set_bytes_amount(t)
1430        get_data_size(t) -> get_bytes_amount(t)
1431    - Massive cleanups in the functions related to the energy
1432      - MSG_host_get_pstate_number() -> MSG_host_get_nb_pstates()
1433    - New: MSG_host_get_pstate()
1434  * New example:
1435    - msg/energy/onoff: switching hosts on and off
1436  jMSG:
1437  * Interface improvement:
1438    - Rename Host.isAvail() to Host.isOn()
1439    - Rename Process.currentProcess() to Process.getCurrentProcess()
1440    - Rename Task.setDataSize() to Task.setBytesAmount()
1441    - Merge Task.getRemainingDuration() and Task.getComputeDuration() into Task.getFlopsAmount()
1442  * Bug fixes:
1443    - #18874: Actually allows the GC to reclaim tasks
1444
1445  SIMIX:
1446  * New functions
1447    - SIMIX_process_throw: raises an exception in a remote process
1448  * Refactoring: Separate sub-modules
1449    - libsmx: the public interface, as libc in a real system
1450    - popping: the strange dance that converts a user request into a kernel handling
1451    - smx_context_*: the virtualization mechanisms that embed the user code
1452    - smx_*: the handling of each simcalls
1453  * Interface cleanup:
1454    - simcall_host_set_power_peak_at -> simcall_host_set_pstate
1455  * Rename smx_action_t into smx_synchro_t, making explicit that these
1456    things are used to synchronize processes with their environment.
1457    For example, a communication is a sort of synchronization involving
1458    the communicating processes (that may block until the exchange) and
1459    the platform. The same can be said from computations, etc.
1460  * Bug fixes:
1461    - #18888: segfault when a process ends before its kill_time
1462
1463  SMPI:
1464  * New functions
1465    - Onesided early support for: MPI_Win_(create, free, fence, get_name, set_name, get_group), MPI_Get, MPI_Put, MPI_Accumulate, MPI_Alloc_mem, MPI_Free_mem.
1466    - MPI_Keyval*, MPI_Attr* functions, as well as MPI_Comm_attr*, MPI_Type_attr* variants (C only, no Fortran support yet)
1467    - MPI_Type_set_name, MPI_Type_get_name
1468    - MPI_*_c2f and MPI_*_f2c functions
1469    - MPI_Info_* functions (beware, get_nthkey may not follow the insertion order)
1470    - MPI_Pack, MPI_Unpack and MPI_Pack_size functions
1471    - Activate a lot of new tests from the mpich 3 testsuite
1472  * Features
1473    - Constant times can be injected inside MPI_Wtime and MPI_Test through options smpi/wtime and smpi/test
1474    - InfiniBand network model added: Based on the works of Jerome Vienne
1475      http://mescal.imag.fr/membres/jean-marc.vincent/index.html/PhD/Vienne.pdf
1476    - When smpi/display_timing is set, also display global simulation time and application times
1477    - Have smpirun, smpicc and friends display the simgrid git hash version on --git-version
1478  * Collective communications
1479    - SMP-aware algorithms are now dynamically handled. An internal communicator is created for each node, and an external one to handle communications between "leaders" of each node
1480    - MVAPICH2 (1.9) collective algorithms selector: normal and SMP algorithms are handled, and selection logic is based on the one used on TACC's Stampede cluster (https://www.tacc.utexas.edu/stampede/).
1481    - Support for Rabenseifner Reduce/Allreduce algorithms (https://fs.hlrs.de/projects/par/mpi//myreduce.html)
1482  * Replay
1483    - Replay now uses algorithms from wanted collective selector
1484    - Replay can be used with SMP-aware algorithms
1485    - Memory occupation of replay should now be contained (temporary buffers allocated in collective algorithms should be shared between processes)
1486    - Replay can now replay several traces at the same time (check examples/smpi/replay_multiple example), to simulate interactions between several applications on a given platform. User can specify the start time of each instance. This should also allow replay + actual applications to run.
1487  * Bug fixes
1488    - [#17799]: have mpi_group_range_incl and mpi_group_range_excl better test some corner cases
1489    - Correctly use loopback on fat-tree clusters
1490    - Asynchronous small messages shouldn't trigger deadlocks anymore
1491  * Energy/DVFS cleanup and improvement
1492    - smpi_set_host_power_peak_at() -> smpi_set_host_pstate()
1493    - new: smpi_get_host_pstate()
1494  SURF
1495   * Bug fixes
1496    - "Full" network optimization flag was broken since Surf++
1497    - Better handling of precision flags in maxmin
1498    - Fix bug causing sometimes "Impossible" errors
1499    - Properly pass cluster properties to included hosts
1500   * Improvement of the Energy plugin.
1501     - Always update the consumption before returning that value
1502     - New property: watt_off to denote the dissipation when the host is off
1503     - New functions getWattMinAt and getWattMaxAt to retrieve the
1504       dissipation of pstates that we are not currently at.
1505   * Java: class NetworkLink renamed to Link
1506   * New function: simcall_process_get_kill_time()
1507   * Massive rename s/workstation/host/
1508     - That's intrusive, but that's good for the project consistency. Sorry.
1509     - Change config option "workstation/model" into "host/model"
1510  XBT
1511   * New functions
1512    - Add a xbt_heap_update function, to avoid costly xbt_heap_remove+xbt_heap_insert use
1513    - Add a xbt wrapper for simcall_mutex_trylock (asked in [#17878])
1514    - Add two new log appenders: rollfile and splitfile. Patch by Fabien Chaix.
1515    - xbt_dirname and xbt_basename for non-POSIX systems
1516  MC
1517   * The model checker now runs as a separate process.
1518   * The model checker runs must now be launched with the new simgrid-mc program.
1519   * Record/Replay: the MC can display a textual representation of a path in the
1520     execution graph. It can then be replayed outside of the model checker.
1521
1522  -- Mon Oct 12 06:02:41 CEST 2015 Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>
1523
1524 SimGrid (3.11) stable; urgency=low
1525
1526  The Class Release.
1527
1528  Tools:
1529  * Normalizing pointers addresses tool for better diff between logs
1530
1531  Examples:
1532  * Add cloud examples using new VMs
1533    - examples/msg/cloud/two_tasks_vm.tesh
1534    - examples/msg/cloud/simple_vm.tesh
1535    - examples/java/cloud/cloud.tesh
1536    - examples/java/cloud/migration/migration.tesh
1537  * Add java surf examples:
1538    - examples/java/surfPlugin/surf_plugin.tesh
1539    - examples/java/reservationSurfPlugin/reservation_surf_plugin.tes
1540    - examples/java/surfCpuModel/surf_cpu_model.tesh
1541  * Add SMPI+MSG example:
1542    - examples/smpi/smpi_msg_masterslave/
1543
1544  TeshSuite:
1545  * Add tests:
1546    - msg process test
1547    - msg task destroy cancel test
1548    - msg_host on/off test
1549  * Move all tests in testsuite to teshsuite (adding tesh files)
1550  * Restructure teshsuites
1551    - one folder for each kind of test
1552  * Restructure AddTests.cmake
1553    - unify tests names
1554    - structure the order of tests (with sections)
1555
1556  MSG:
1557  * Add virtual machine
1558    - creation of a VM on a PM
1559    - migration of a VM from a PM to another PM
1560  * New functions
1561    - MSG_process_join(msg_process_t process, double timeout)
1562    - msg_bar_t MSG_barrier_init(unsigned int count)
1563    - int MSG_barrier_wait(msg_bar_t barrier)
1564    - void MSG_barrier_destroy(msg_bar_t barrier)
1565    - msg_as_t MSG_environment_as_get_by_name(const char * name)
1566  * New option "msg/debug_multiple_use" to help debugging when a task is used
1567    several times
1568  * MSG IO
1569    - Improvements and finalization of MSG_storage, MSG_file APIs and their
1570      documentation
1571    - Increase code coverage in test suites
1572    - Bug fixes
1573
1574  SIMIX:
1575  * Protect context stacks against stack overflow. The number of protected memory
1576    pages allocated on the top of each stack (1 by default) can be configured
1577    with the new command line option --cfg=contexts/guard_size:<value>.
1578  * Simcalls are now generated by a python script that
1579    - generates files included by SimGrid
1580    - checks that all the functions exist, and proposes prototypes
1581  * Clean simcalls
1582    - remove sem_destroy, file_set_data, comm_destroy, vm_set_state,
1583      host_set_data, host_get_data
1584  * New simcalls
1585    - simcall_process_join(smx_process_t process, double timeout)
1586  * Fix bug where sleeping processing could not be suspended.
1587
1588  SURF:
1589  * Translate surf models from C to C++
1590    - Generic classes for all models: Model, Resource, Action
1591    - A generic interface for each kind of model (CPU, Network, Storage
1592      Workstation, WorkstationVM)
1593    - C bindings
1594  * Translate surf routings from C to C++
1595  * Add callbacks using sigc++ or boost::signals2
1596    - Add callback functions for resource creation/destruction
1597    - Add callback functions for action state change
1598    - Handle Energy as a plugin
1599  * Replace swag by boost::intrusive
1600  * Add new routing models for clusters. For documentation, see
1601    http://simgrid.gforge.inria.fr/simgrid/latest/doc/platform.html#pf_cluster
1602    - tori, with topology="TORUS" and topo_parameters="ndim1,ndim2,...,ndimn"
1603      parameters for cluster tag
1604    - Fat trees, with topology="FAT_TREE" and
1605      topo_parameters="h;m1,...,mh;w1,...,wh;p1,...,ph" parameters for cluster tag
1606    - see examples/platforms/torus_cluster.xml and
1607      examples/platforms/fat_tree_cluster.xml
1608  * More documentation
1609
1610  SMPI:
1611  * Hostfiles support host:nb_processes construct to deploy several processes on
1612    one node.
1613  * Collective communication algorithms should not crash if used with
1614    improper number of nodes and report the error.
1615  * SMPI now partially supports MPI_Topologies: MPI_Cart_create, MPI_Cart_shift,
1616    MPI_Cart_rank, MPI_Cart_get, MPI_Cart_coords, MPI_Cartdim_get,
1617    MPI_Dims_create, MPI_Cart_sub are supported.
1618  * New interface to use SMPI programmatically (still depends on MSG for
1619    some parts, see examples/smpi/smpi_msg_masterslave):
1620    - SMPI_app_instance_register(const char *name, xbt_main_func_t code,
1621         int num_processes)
1622    - SMPI_init()
1623    - SMPI_finalize();
1624  * Global variables privatization in MPI executables is now performed at runtime
1625    with the option smpi/privatize_global_variables (default:no).
1626    Limitations: Linux/BSD only, with mmap enabled. Global variables inside
1627    dynamic libraries loaded by the application are not privatized (static
1628    linking with these libraries is advised in this case)
1629
1630  Tracing:
1631  * Options defined in XML work correctly now.
1632
1633  Java:
1634  * New cmake option, enable_lib_in_jar, to control whether native libraries are
1635    copied into simgrid.jar or not (ON by default).  Use this option if you want
1636    to reduce the size of the installed simgrid.jar, *and* the native libraries
1637    are kept installed elsewhere.
1638  * Surf binding with SWIG (code generated in maintainer mode only):
1639    - plugin to handle callbacks
1640    - CPU model only for the moment
1641
1642  Build System:
1643  * Supernovae build mode is definitively removed. It was used to improve
1644    inlining and inter-module optimizations. It is nowadays superseded by
1645    link-time optimizations commonly available in compilers.
1646  * Update ns-3 find lib. Bindings for ns-3 should work again now.
1647  * Add boost dependency for surf++
1648  * Add new macro for tests
1649    - ADD_TESH(name <tesh_args>)
1650    - ADD_TESH_FACTORIES(name "thread;ucontext;raw" <tesh_args>)
1651
1652  XBT:
1653  * New functions
1654    - xbt_bar_t XBT_barrier_init(unsigned int count)
1655    - int XBT_barrier_wait(xbt_bar_t barrier)
1656    - void XBT_barrier_destroy(xbt_bar_t barrier)
1657  * Make the xbt_os_time module public
1658
1659  -- Sat May 31 22:39:38 CEST 2014 Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>
1660
1661 SimGrid (3.10) stable; urgency=low
1662
1663  The Clean Diaper Release, a.k.a. SimGrid is leak-free.
1664
1665  Java:
1666  * Reintegrate Java to the main archive as desynchronizing these
1667    package is not acceptable anymore (Java is now considered stable)
1668  * Add explicit synchronization facilities through semaphores
1669  * Bug fix: Task.setDataSize() only changed the C world, not the value
1670    cached in the Java world
1671
1672  MSG:
1673  * Dramatically change the way files are handled. API and internals changed, but
1674    this part of MSG was not considered as production grade either.
1675  * Add explicit synchronization facilities through semaphores
1676  * Add a new function MSG_host_get_process_list()
1677  * Preliminary DVFS support (see examples/msg/energy/ for details)
1678
1679  SMPI:
1680  * SMPI is now included directly in the libsimgrid as the windows
1681    linker doesn't force us on splitting it anymore.
1682  * Improvements of the SMPI replay tool:
1683    - Most of the collective communications are now rooted in the same process as
1684      in the original application.
1685    - Traces now rely on the same MPI data type as the application (MPI_BYTE was
1686      used until now). Multiple data types can now be used in a trace.
1687    - The replay tool now supports traces produce either by TAU or a modified
1688      version of MPE.
1689    - Bug Fix: the compute part of the reduce action is now taken into account.
1690    - Gatherv collective is now supported
1691    - SimGrid (SMPI for now) can generate replay traces as well. Option -trace-ti
1692      of smpirun outputs time independent traces for the current run. One file
1693      is created per process. If too many processes are simulated, this behavior
1694      can be changed to one file for all processes by using the
1695      tracing/smpi/format/ti_one_file flag
1696  * smpirun generates the host file if needed (with given host count and platform)
1697  * Integration of more than 100 STAR-MPI, MPICH, OpenMPI collective algorithms
1698    - allows to select one in particular with --cfg=smpi/coll_name:algorithm
1699    - allows to use the decision logic of OpenMPI(1.7) or MPICH(3.0.4) by setting
1700      --cfg=smpi/coll_selector:(mpich/ompi)
1701  * Support for new functions: MPI_Issend, MPI_Ssend, Commutative operations in
1702    Reduce
1703  * Add a --cfg:tracing/smpi/internals option, to trace internal communications
1704    happening inside a collective SMPI call.
1705  * Fix the behavior of complex data types handling.
1706  * Make MPI_Wtime another synchronization point to take computations into
1707    account.
1708  * Replace MPICH-1 test suite by the one from MPICH 3.0.4. Can be built using
1709    enable_smpi_MPICH3_testsuite flag in cmake. Run with ctest.
1710  * Add all missing Fortran bindings, SMPI should work with Fortran 90
1711    (no privatization of global variables yet)
1712  * Preliminary DVFS support (see examples/smpi/energy/ for details)
1713
1714  Model-Checking;
1715  * Verification of liveness properties is now available for SMPI applications
1716    (in addition to MSG applications)
1717  * Bugged examples using SMPI in examples/smpi/mc/
1718  * Add --cfg=model-check/visited option. Allows the verification of infinite
1719    programs. Detection of loops in the execution thanks to the system state
1720    comparison and reduction of the state space to explore. Can be combined with
1721    DPOR for safety properties.
1722
1723  SimDag:
1724  * Allow to change SimGrid configuration (see --help) within the code
1725    thanks to SD_config() as it can be done in MSG.
1726  * Add a new function SD_task_set_amount() upon user request.
1727
1728  PLATFORM:
1729  * Handle units for values (10ms, 10kiloflops, 10Bps, 1GB, ...)
1730  * Remove rule based routing (no more PCRE dependency)
1731  * Add a limiter_link option to cluster tag, to specify a maximum reachable
1732    bandwidth in fullduplex mode when it is less than twice the nominal bandwidth.
1733  * Add a loopback_bw and loopback_lat options to cluster tag.
1734  * Fix the peer tag that could not be mixed with other AS within a Vivaldi
1735    routing. Now peers are encapsulated in an AS and have their own private
1736    router but this is transparent.
1737
1738  XBT:
1739  * Our own implementation of getline is renamed xbt_getline, and gets
1740    used even if the OS provide a getline(). This should reduce the
1741    configuration complexity by using the same code on all platforms.
1742  * New type: xbt_cfg_elm_boolean.
1743  * Allow to use yes/no for boolean configuration options in the command line.
1744  * Allow to disable SimGrid cleanups at exit from command line option.
1745    There are situations where one may want a simulation to end with an exit.
1746    Unfortunately, calling exit may cause SimGrid to segfault, which is quite
1747    annoying when scripting around the simulator. Adding a
1748    --cfg=clean_atexit:no allows to circumvent this issue.
1749
1750  Build System:
1751  * Lots of memory leaks were corrected in this release.
1752    There is no known memory leaks anymore, in all of our 600+ tests.
1753  * New command line option --version, to get SimGrid version information.
1754    Packagers may want to add extra words to SIMGRID_VERSION_EXTRA defined in
1755    CMakeLists.txt.
1756  * Supernovae builds are deprecated, and expected to be removed in the next
1757    version of SimGrid.
1758
1759  -- Sun Nov 17 00:26:44 CET 2013 Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>
1760
1761 SimGrid (3.9) stable; urgency=low
1762
1763  The Grasgory release: GRAS is really dead now.
1764
1765  * Complete overhaul of the internal host structures scheme.
1766
1767  GRAS:
1768  * If you use GRAS, you should stay at SimGrid 3.5 (at most) since it
1769    was considered as experimental and badly maintained since then.
1770  * Keeping it was thus a trap to our potential users, that could take
1771    it instead of MSG or SMPI by mistake despite is pity state.
1772  * GRAS seems to have very few users (if any), and no one volunteered
1773    to maintain it further. It also induces a lot of XBT code (for
1774    portability sake), that must be maintained too.
1775  * For all these reasons, we killed GRAS. If someone wants to revive it
1776    in the future, don't cry, our git history still remembers of GRAS.
1777
1778  Documentation:
1779  * Major overhaul. Merge our documentation again as time proved that
1780    splitting it was really not helping our users.
1781  * Further improve the developer documentation to help newcomers
1782    hacking on SimGrid itself. The user documentation (and in
1783    particular, the beginner documentation) is still in a sorry state.
1784
1785  SMPI:
1786  * Now works on Windows too!
1787  * Much more extensive test suite, from MPICH
1788
1789  SIMDAG:
1790  * Add a new loader (SD_PTG_dotload) that creates a parallel task graph
1791   (i.e., a DAG whose nodes are parallel tasks) from a dot file. Creates a
1792   dynar of SD_TASK_COMP_PAR_AMDAHL and SD_TASK_COMM_MXN_1D_BLOCK tasks.
1793  * Bug fix: let task be scheduled when the last dependency to be solved is
1794    a control dependency.
1795  * Remove SD_load_environment_script function.
1796    Use the C sg_platf function if you want to declare a platform
1797    programmatically.
1798
1799  MSG:
1800  * New function: MSG_process_get_number()
1801  * Old function documented: MSG_config()
1802  * Remove MSG_load_platform_script function
1803    Use the C sg_platf function if you want to declare a platform
1804    programmatically.
1805
1806  SURF:
1807  * Change the default value of the TCP_gamma constant (maximal size of TCP
1808    congestion window) to a more realistic 4MiB value. If you notice changes in
1809    your simulation results, you can fall back to the previous 20k tiny window
1810    by adding --cfg=network/TCP_gamma:20000 on command line.
1811  * (Hopefully) fix a bug wrt periodic availability and state traces
1812  * Bug fix: use default values at start when first event in availability/state
1813    trace is not at time 0.
1814
1815  PLATFORM:
1816  * remove the "new_" part of function name sg_platf_new_trace_connect
1817    (resulting in sg_platf_trace_connect), since it does not create
1818    anything new
1819
1820  XBT:
1821  * Kill synchronized dynars, and xbt_dynar_dopar(). We cannot think of a
1822    use case where it's really mandatory, and maintaining it was a pain in
1823    our code base.
1824  * New: xbt_fifo_search(), search an item with a user-provided
1825    comparison function instead of dumb pointer comparison.
1826
1827  LUA:
1828  * Fix the lua deployment:
1829    Use `simgrid.init_application()` before deployment instead of
1830    `simgrid.msg_register_application()` after.
1831
1832  TRACING:
1833  * Transfer the tracing files into the corresponding modules.
1834
1835  -- Tue Feb  5 11:31:43 CET 2013 Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>
1836
1837 SimGrid (3.8.1) stable; urgency=low
1838
1839  The "we are told that some people want to also *install* the simgrid
1840  framework" release.
1841
1842  * Add missing file "tesh.1" to the archive.
1843
1844  -- Sat Oct 27 16:12:11 CEST 2012 Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>
1845
1846 SimGrid (3.8) stable; urgency=low
1847
1848  The Psssshiiiit release: SimGrid jumps into the Cloud.
1849
1850  MSG:
1851  * Add an experimental interface to manipulate VMs. They are mainly
1852    process groups with very few intrinsic semantic, but they should
1853    allow you to build the semantic you want easily.
1854  * New function: MSG_host_set_property_value()
1855  * New function: MSG_process_on_exit(). To clean memory in all cases.
1856  * Bug fixes that made the host (and link) failures unusable.
1857  * Add a way to auto-restart process when the host in which they are
1858    executing comes back (ON_FAILURE="RESTART" on deployment file,
1859    MSG_process_auto_restart_set).
1860  * Use the "msg_" prefix for all datatypes (instead of m_, msg_ and MSG_),
1861    please stop using the old ones, they are DEPRECATED.
1862
1863  * Deprecate functions MSG_global_init() / MSG_global_init_args()
1864    Please use MSG_init() instead. (reducing the amount of entry
1865    points in the library helps us).
1866  * Make it impossible to link against the wrong version of the lib
1867  * Deprecate MSG_clean(). No need to call it anymore.
1868  * Function MSG_get_host_number() is not deprecated anymore.
1869
1870  Documentation:
1871  * Split the doc into a user guide and a reference guide.
1872  * Start a developper guide to help people hacking on SimGrid.
1873
1874  Cmake:
1875  * Enable tracing by default. This modules rocks you should use it.
1876  * Remove option custom_flags. Now use environment variables CFLAGS
1877    and LDFLAGS.
1878  * Use default cmake things to detect lua instead of home grown ones.
1879  * New option "enable_mallocators" to disable mallocators, for debugging
1880    purpose ("on" by default).
1881
1882  SIMIX:
1883  * Bug fixes around the resource failures: don't let the processes
1884    survive the host they are running onto.
1885  * Add an interface to auto-restart processes when the host in which they are
1886    executing comes back.
1887  * Ensures that SIMIX_clean is called automatically. It's not part of
1888    the public interface anymore (bindings should be updated).
1889
1890  SimDag:
1891  * Bug fix for when SD_Simulate is called with a positive value: be careful
1892    when comparing doubles. Sometimes they are different for non significant
1893    digits only.
1894  * New types of typed tasks. SD_TASK_COMP_PAR_AMDAHL represents a
1895    parallel task whose initial work is distributed among host according
1896    to the Amdahl's law. Such tasks are created with a parameter alpha
1897    that corresponds to the non-parallelizable part of the computation.
1898    SD_TASK_COMM_PAR_MXN_1D_BLOCK represents a complex data redistribution
1899    between two sets of workstations assuming a 1D block distribution (each
1900    workstation owns a similar share of data) on both sides.
1901
1902    These tasks can be scheduled with SD_task_schedulel or SD_task_schedulev.
1903    Data redistribution will be automatically scheduled once parent and child
1904    are both scheduled. The filling of computation_amount and
1905    communication_amount structures is now done seamlessly thanks to the chosen
1906    assumptions.
1907  * New function SD_workstation_dump to display various information
1908  * New function SD_task_set_rate to throttle the bandwidth allowed to be used
1909    by a SD_TASK_COMM_E2E typed task. This rate depends on both the nominal
1910    bandwidth on the route onto which the task is  scheduled and the amount of
1911    data to transfer.
1912    To divide the nominal bandwidth by 2, the rate then has to be:
1913                      rate = bandwidth/(2*amount)
1914  * Compute tasks that have failed can now be rescheduled and executed again
1915    (from their beginning)
1916  * Increasing source code coverage (src/simdag is now covered at 95.8%
1917    on average)
1918
1919  SMPI:
1920  * Re-implement time-independent trace replay using SMPI (at the
1921    smpi_smp_* level) instead of MSG. This should replace
1922    examples/msg/actions/actions.c
1923  * Implement support of MPI Datatypes (vectors, hvectors, indexed,
1924    hindexed and structs)
1925  * Implement the exchange of non-contiguous data.
1926    [Khalid Hasanov & Jean-Noel Quintin] Thanks for the patch, guys.
1927  * Correct behavior of smpi/sender_gap and set its default value to 0
1928  * Add option to asynchronously send small messages to allow better
1929    simulation of pt2pt communications. --cfg=smpi/async_small_threshold:value
1930    specifies the size in bytes under which messages will be asynchronously sent.
1931  * Add support of MPI_Iprobe, MPI_Probe, MPI_Testall, MPI_Wtick functions
1932  * SMPI now handles more MPI specific values in input. Closes [#14389] and [#14388]
1933
1934  SimGrid:
1935  * New C interface to define a platform: XML is now optional.
1936    For more info, please check include/simgrid/platf.h.
1937  * New interface to define random platforms from the C:
1938    For more info, please check include/simgrid/platf_generator.h and
1939    examples/msg/masterslave/masterslave_platfgen.c
1940  * Export a sg_cmdline dynar containing all the arguments we got from
1941    the command line.
1942
1943  TRACE:
1944  * Two new tracing options for adding comments to trace file so you
1945    can track your experiments (see --help-tracing for details).
1946  * New option to generate an impoverished trace file (--cfg=tracing/basic:1)
1947  * Adding the SimGrid version that generated the trace file as a comment.
1948  * Instrumenting other MSG functions (MSG_task_isend_with_matching and MSG_task_dsend)
1949  * Fix to avoid key clashes on Paje links
1950  * Other minor fixes related to the Paje specification
1951
1952  XBT:
1953  * Functions xbt_dict_hash() and xbt_dict_hash_ext() are made public,
1954    and renamed to xbt_str_hash() and xbt_str_hash_ext().
1955  * New function: xbt_os_timer_resume() to restart a timer w/o resetting it.
1956  * Greatly improve the robustness of mmalloc to user errors (such as
1957    using an area after freeing it, or freeing it twice)
1958
1959  -- Thu Oct 25 17:30:06 CEST 2012 Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>
1960
1961 SimGrid-java (3.8.1) stable; urgency=low
1962
1963  * New module: org.simgrid.trace.Trace (SimGrid trace bindings)
1964    Warning: all methods are visible, but only some of them are
1965    implemented so far. Check the source (src/jtrace.c)
1966    for further information.
1967  * New module: org.simgrid.msg.File (SimGrid File management functions)
1968  * New Module: org.simgrid.msg.VM (SimGrid interface to mimick IAAS clouds)
1969  * Change the meaning of Process.restart: now restart the process from
1970    the beginning, like MSG_process_restart in C.
1971  * Add Process.setAutoRestart: handling of process restart when failed
1972    host comes back.
1973  * Add Process.getProperty, Host.getProperty, Host.getProperty: allows
1974    you to retrieve the properties of the processes/hosts
1975  * Deprecate Msg.clean(): you can just forget about it now.
1976  * New function Process.getCount(), that only works when compiling
1977    with the not yet released version 3.9 of the C library.
1978
1979  * New context factory based on Coroutines. It mandates a modified JVM
1980    but then, the simulations run about five times faster, and there is
1981    no limit to the amount of processes (beside of the available memory).
1982
1983  -- 2012-12-04 Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>
1984
1985 SimGrid (3.7.1) stable; urgency=low
1986
1987  MSG:
1988  * Restore the prototype of MSG_process_create_with_environment() to
1989    the pre-3.7 situation by removing the kill_time argument.
1990  * Add a MSG_process_set_kill_time() function instead.
1991
1992  SURF:
1993  * Fix weird behaviors when dealing with parallel tasks.
1994
1995  WINDOWS:
1996  * Simgrid is now built as a dll.
1997  * Simgrid-java now works on Windows.
1998  * Simgrid-Java is now included into Windows package.
1999
2000  MacOS:
2001  * First pre-build package for MacOSX.
2002
2003  Build System:
2004  * Fix compilation when using MSG_USE_DEPRECATED.
2005  * Fix some compilation issues on Macs and Windows.
2006  * Reduce the number of failing tests on exotic systems, like Debian/Hurd.
2007  * Environment variables CFLAGS and LDFLAGS are now honored by cmake.
2008
2009  We discovered that the Lua console is broken, but we are missing the
2010  manpower to fix it right now. The problem existed in 3.7 too, so we
2011  are not blocking the release for that. Sorry if you depended on this
2012  feature, any help would be really welcome.
2013
2014  -- Thu Jun 7 2012 Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>
2015
2016
2017 SimGrid-java (3.7.1) stable; urgency=low
2018
2019  The "Java aint got to be bloated and slow" release
2020
2021  Major cleanups:
2022  * Various internal cleanups and performance improvement
2023    Simulations are expected to run up to twice faster or so
2024  * Make Process.kill(process) an instance method, not a static one
2025  * User processes are not java.lang.Thread subclasses.
2026    This breaks the compatibility (sorry), but previous API was
2027    brain-dead, making it impossible to have non-trivial
2028    initializations in the process constructor.
2029  * Require a full constructor per Process sub-class.
2030    Kinda breaks the compatibility (sorry), but this allows a much more
2031    efficient way to launch the processes at simulation startup.
2032  * Do not embeed our version of semaphores, java 1.5 can be considered
2033    as sufficiently prevalent for us to not dupplicate its features.
2034  * Lot of bug fixes
2035
2036  Extend the API:
2037  * Add examples for almost every part of the API
2038    We spotted and fixed a lot of bugs in the process
2039
2040  * New module: asynchronous communication API
2041  * New function: Process.sleep()
2042    It takes milliseconds as argument, just as java.lang.Thread.sleep()
2043  * New module: org.simgrid.msg.Mutex (SimGrid mutexes)
2044  * New module: org.simgrid.msg.RngStream (RngStreams random generators)
2045
2046  -- 2012-06-12 Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>
2047
2048 SimGrid (3.7) stable; urgency=low
2049
2050   The "spring cleanups (before the next Big Project kicks in)" release.
2051
2052   Models:
2053   * We can specify the SMPI latency/bandwidth factor with command line
2054     add --cfg=smpi/bw_factor:"threshold0:value0;...;thresholdN:valueN"
2055     or add --cfg=smpi/lat_factor:"threshold0:value0;...;thresholdN:valueN"
2056     You can also use the "config tag" from platform file by adding this line
2057     <prop id="smpi/bw_factor" value="threshold0:value0;...;thresholdN:valueN"></prop>
2058     (see "example/platforms/tag_config.xml" to use "config tag").
2059     Note that the command line supersedes the platform file configuration.
2060   * Change the correction factors used in LMM model, according to
2061     the latest experiments described in INRIA RR-7821.
2062     Accuracy should be improved this way.
2063   * Use the partial invalidation optimization by default for the
2064     network too. Should produce the exact same results, only faster.
2065   * Major cleanup in surf to merge models and split some optimization
2066     mechanisms from the core of the models. As a result you can now
2067     specify which model to use (e.g., --cfg=network/model:LV08
2068     --cfg=cpu/model:Cas01) and which optimization mode to use
2069     (e.g., --cfg=network/optim:lazy --cfg=cpu/optim:TI).
2070     Incompatible combinations should err at initialization. See
2071     --help-models for the list of all models and optimization modes.
2072   * The CLM03 workstation model was dropped for simplicity because it
2073     used the deprecated CM02 network model. Use default instead.
2074   * Rename the TCP_gamma configuration option to network/TCP_gamma
2075   * Rename the coordinates configuration option to
2076     network/coordinates, and document it
2077   * Use now crosstraffic keyword instead of the terribly misleading
2078     fullduplex keyword. It is activated by default now in the current
2079     default model, use --cfg=network/crosstraffic:0 to turn it off.
2080   * Ongoing refactoring the model parsing to make XML files optional
2081     See include/simgrid/platf.h for details (still to be completed)
2082
2083   MSG:
2084   * Major overhaul of the documentation. Almost instructive now :/
2085   * Deprecate the use of m_channel_t mechanism like MSG_task_{get,put}
2086     functions and friends. This interface was considered as
2087     deprecated since over 2 years, it's time to inform our users that it is.
2088     Switch to MSG_task_{send,recv} instead, or compile SimGrid command line
2089     'cmake -Dcustom_flags="-DMSG_USE_DEPRECATED" .' if you really need to
2090      use these (crappy) functions in your code.
2091     These functions will be removed soon. Stop using them now.
2092   * Deprecate MSG_get_host_{table,number}
2093     Implement MSG_hosts_as_dynar() instead.
2094   * Implement MSG_processes_as_dynar() (Closes gforge #13642)
2095   * Remove the public field msg_host_t->name. Use MSG_host_get_name()
2096
2097   Simix:
2098   * Stabilize the parallel execution mode of user contexts
2099   * Introduce configuration variables to control parallel execution:
2100     - contexts/synchro: Synchronization mode to use when running
2101       contexts in parallel (either futex, posix or busy_wait)
2102     - contexts/parallel_threshold: Minimal number of user contexts
2103       that must be part of a scheduling round to switch to parallel
2104       execution mode (raw contexts only)
2105   * Fix bugs that prevented to use suspend/resume along with
2106     synchronization structures.
2107   * Fix bugs in process termination that lead to invalid memory access
2108     in very specific conditions.
2109
2110   SURF:
2111   * Introduce a parallel mode for the models (controlled by surf/nthreads
2112      configuration item). In our tests, running the models in parallel
2113      never lead to any speedups because they are so fast that the gain
2114      of computing each model in parallel does not amortizes the
2115      synchronization costs, even when ultra fast futexes are used.
2116     This is released anyway because YMMV.
2117
2118   SimDag:
2119   * Performance boost by using a swag internally to compute the set of
2120     tasks that are finished and should constitute the return value of
2121     SD_simulate.
2122
2123   SMPI:
2124   * Enable it by default now that it is considered rather stable.
2125
2126   TRACE:
2127   * Documentation of the tracing functions.
2128   * Performance gains when tracing categorized/uncategorized resource
2129     utilization by avoiding calls to get route when updating resource
2130     variables. LMM constraints are being used instead.
2131   * API changed to set task categories. Use MSG_task_set_category instead
2132     of TRACE_msg_set_task_category, and SD_task_set_category instead
2133     of TRACE_sd_set_task_category. They only work if ENABLE_TRACING is ON.
2134   * Bugfix for graphicator, routes not correctly obtained, memory leaks
2135   * Examples for link user variables added (see at examples/msg/tracing/)
2136   * Deprecated function TRACE_msg_set_process_category completely removed
2137   * Trace header updated according to the latest Paje file format
2138   * Tracing network lazy updates, no longer obligate users to use full updates
2139   * --cfg=tracing/platform:1 also registers power/bandwidth variables
2140   * Experimental: let user code declare/set/push/pop application states for hosts
2141   * API changed to allow the manual creation of graph configuration files
2142     for Triva. See TRACE_get_node_types() and TRACE_get_edge_types().
2143
2144   Lua:
2145   * Improve the API of Lua MSG bindings, using the Lua spirit.
2146   * Each simulated process now lives in its own Lua world (globals are
2147     automatically duplicated). It helps writing simulators. Will allow
2148     to run Splay programs within SimGrid in the future.
2149   * Add a Chord example in Lua, equivalent to the MSG one.
2150
2151   MODEL-CHECKING:
2152   * Start the implementation of a solution to express temporal
2153     properties, not only local assertions. This is still an
2154     experimental work in progress, stay clear from it to be safe.
2155
2156   XBT:
2157   * Logs:
2158     - Add new runtime parameters --help-logs and --help-log-categories
2159       to display information about supported logging parameters and
2160       categories.
2161     - Old deprecated parameters --{gras,surf,msg,simix,xbt}-log=...
2162       don't exists anymore.
2163   * Mallocators: allow value NULL for the reset function.
2164   * Dicts:
2165     - New function xbt_dict_new_homogeneous(void(*)(void*)) to
2166       create homogeneous dictionaries, where all the elements share the
2167       same free function. Non homogeneous dictionaries will be
2168       deprecated in the next release.
2169     - Dicts of scalar elements (xbt_dicti_*) are deprecated.
2170     - Multi-level dictionaries are deprecated.
2171   * Dynars:
2172     - new function xbt_dynar_search_or_negative() that is useful when
2173       you have less than 2 million elements in your dynar and don't
2174       want of the extra complexity of catching exceptions when the
2175       element is not found.
2176   * Portability layer
2177     - Make xbt_os_thread module (for thread portability) public.
2178       Documentation is still to come, sorry.
2179   * mmalloc module:
2180     - Cleanups and simplifications to make it maintainable again.
2181     - Exotic features (such as memalign and valloc) were removed.
2182     - The metadata were extended and improved so that the
2183       model-checker becomes able to explore and inspect the heaps.
2184     - This may induce a performance drop when enable_model-checking is
2185       ON in cmake (even if it's not used in the simulation), but it is
2186       necessary at this point to get MC working.
2187
2188       Turn model-checking OFF if simulation performance matters to you.
2189       Not enabling it at runtime is not enough, disable it in cmake.
2190
2191  -- Tue May 15 11:30:19 UTC 2012 Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>
2192
2193
2194 SimGrid (3.6.2) stable; urgency=low
2195
2196  The "Not coding new stuff allows to polish old things" release.
2197
2198  General
2199  * New bindings to the NS3 packet level simulator (experimental)
2200  * Use the raw (efficient) execution contexts instead of the sysv
2201    (portable) ones when possible.
2202  * libpcre is now mandatory in any cases since not using it led to
2203     severe performance loss and possibly other issues
2204  * Update the XML platforms:
2205    - G5K: include the latest machine in Nancy
2206    - GridPP and LCG: new platforms
2207  * Documentation was partially updated, at least (more to come)
2208
2209  Bug fixes, cosmetics and small improvements
2210  * Free terminated processes before the end of the simulation to avoid
2211    exhausting the memory of users having very dynamic amount of
2212    processes.
2213  * Bug fix and cosmetics about canceling non-running tasks
2214  * Bug fix about the dot loader's issues when using libcgraph
2215
2216  Portability
2217  * Create an installer for windows with nsis (amd64 and win32)
2218    - Add an hello world project to illustrate simgrid project creation.
2219    - Embed libpcre into the Simgrid installer to avoid
2220      its compilation burden
2221  * The raw execution contexts should work on Apple now
2222  * Port to Windows 64 bits
2223     - Sysv contexts now have an implementation for this arch
2224     - GRAS communication features now support this arch
2225  * Drop support for borland compiler on windows
2226     - this code was not maintained, and we kinda depend on gcc nowadays
2227  * Fix portability issues on kfreebsd/gnu: build error about semaphores
2228  * Fix portability issue on unstable ubuntu: linker became picky on
2229    argument order
2230
2231  -- Wed Oct  5 15:51:01 CEST 2011 Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>
2232
2233 SimGrid (3.6.1) stable; urgency=low
2234
2235  The "Oops, we broke Macs too" release
2236
2237  Portability
2238  * Fixed contexts detection so that raw ones are used when possible
2239  * On Mac, do not use Posix Ucontexts with gcc v4.[1-5] since this
2240    leads to a strange error, with user code segfaulting sometimes when
2241    the generated code is not perfectly aligned (which is not
2242    controllable from the user side, depends on the amount of code)
2243
2244  XBT
2245  * New macro: CATCH_ANONYMOUS, which is like CATCH(e) but without argument.
2246
2247  -- Mon Jun 27 13:59:03 CEST 2011 Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>
2248
2249 SimGrid-java (3.6) unstable; urgency=low
2250
2251  * Initial release.
2252  * Split of every thing from simgrid v3.5 into a separate package.
2253
2254  -- 2011-10-05 Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>
2255
2256 SimGrid (3.6) stable; urgency=medium
2257
2258  The Summer Release, also known as the "OMG! They Killed Kenny!" version
2259
2260  Java and Ruby:
2261  * Bindings now constitute their own package, separated from the main one.
2262    Rationale: reduce our maintenance nightmare by reducing the module coupling
2263    They will soon be released on their own on gforge.
2264  * In the meanwhile:
2265    svn co svn://scm.gforge.inria.fr/svn/simgrid/contrib/trunk/simgrid-java
2266    svn co svn://scm.gforge.inria.fr/svn/simgrid/contrib/trunk/simgrid-ruby
2267
2268  GRAS: It is not considered as stable anymore, but experimental. Sorry.
2269  * It's not quite deprecated for now because we have no replacement,
2270    but it may soon become the case.
2271
2272  SMPI
2273  * New MPI functions supported: MPI_Comm_disconnect, MPI_Comm_get_name
2274  * Fortran: New user-level cache variable to store the rank of the running
2275    process. This improves performance by an order of magnitude.
2276  * C: New coccinelle script to automatically locate and modify global and
2277    local static variables.
2278  * Improved SMPI network model with a sender-side gap to account for multiple
2279    parallel sends.
2280
2281  MSG
2282  * New function MSG_comm_get_status(). MSG_comm_test() and MSG_comm_testany()
2283    only say if a communication is finished, no matter whether it succeeded or
2284    failed. You can call MSG_comm_get_status() to know the status of a finished
2285    communication.
2286  * New function MSG_task_dsend() to send a task and detach it. When a
2287    communication is detached, you are never notified of its success or failure
2288    and the memory is released automatically once it is finished. This function
2289    is useful when you don't care about the end nor the success of a
2290    communication.
2291  * Change the prototypes of action replay. Sorry for inconvenience,
2292    but this is really more efficient this way (and to adapt your code,
2293    you just have to fix the initialization, that shouldn't be too long)
2294  * Kill the braindead MSG_task_refcount_dec() function. I guess nobody
2295    ever managed to do anything useful with it.
2296  * New function MSG_comm_testany(). Similarly to MSG_comm_waitany(), it
2297    takes a dynar of communications. It returns immediately and gives the
2298    index of a finished communication (if any).
2299  * New example: a basic implementation of the Chord P2P algorithm.
2300
2301  SURF
2302  * New model for multi-core CPUs. You can now use the core attribute to
2303    precise the number of cores of a host. This is a basic model. Every
2304    process running on the host receives at most the power provided in
2305    the DTD (throughput<=power). Total throughput of process cannot exceed
2306    power * num_cores.
2307  * New peer tag. This peer tag creates a tiny AS comprising a host and a
2308    router linked by an up-link and a down-link (possibly asymmetrical).
2309    This kind of pattern allows to easily build last-mile model style platforms.
2310    Aggregating such patterns in a rule-based AS is thus the technique of
2311    choice for modeling large peer-to-peer/volunteer computing/cloud platforms.
2312  * New model for Vivaldi routing. We transformed the Vivaldi network model
2313    into a Vivaldi routing model (based on the rule-based model). This allows to
2314    combine Vivaldi based latencies with last-mile platforms.
2315
2316  SIMIX
2317  * Added a check for NaN of IEEE754 infinite in the double entries of
2318    the smx_user.c file
2319  * Introduce a new context factory "raw", highly inspirated from the
2320    ucontext factory, but using manually crafted functions in assembly to
2321    do the work in an efficient manner.
2322  * Allow to change the used context factory at run time, not only at
2323    compilation time. Use --cfg=contexts/factory:raw for maximal speed.
2324  * Add an option --cfg=contexts/stacksize:N to set the stack size of the user
2325    contexts at runtime (only with raw contexts or ucontexts).
2326  * Completely rewrote this module to allow parallel execution of user
2327    processes. Use --cfg=contexts/nthreads:N to execute user processes
2328    with N parallel threads (the default is 1, meaning no parallelism).
2329  * Allow to decide dynamically between sequential and parallel modes.
2330    When nthreads > 1, you can use --cfg=contexts/threshold:P to run the user
2331    processes in parallel only when their number is greater than or equal to P
2332    (the default is 2).
2333  * Added a check for NaN of IEEE754 infinite in the double entries of
2334    the smx_user.c file
2335
2336  XBT
2337  * New command line option: if you pass --cfg=verbose-exit:0, SimGrid
2338    won't output the state of processes when interrupted with Ctrl-C
2339  * Add a new function xbt_dynar_to_array that transforms a dynar into a
2340    NULL-terminated array. This may solve backward compatibility issues
2341    due to the change to return type of SD_simulate. See also:
2342    http://lists.gforge.inria.fr/pipermail/simgrid-user/2010-December/002206.html
2343  * Add new macros with variable number of arguments.
2344    - in xbt/log.h: XBT_DEBUG, XBT_VERB, XBT_INFO, etc.
2345    - in xbt/asserts.h: xbt_assert
2346    - in xbt/cunit.h: xbt_test_{add,fail,assert,log}
2347    - in xbt/ex.h: THROWF and RETHROWF.
2348    Define XBT_USE_DEPRECATED if you want to use the old numbered macros like
2349    INFO1, INFO2, etc.
2350  * Change xbt_die() to accept a format string with arguments, just like printf.
2351  * New data structure: xbt_lib_t, like a dict but more general and with better
2352    memory handling.
2353
2354  INSTR
2355  * New configuration options
2356    Options triva/categorized and triva/uncategorized can be used to generate
2357    graph configuration files for Triva visualization tool.
2358  * Configuration option tracing/platform is renamed to tracing/categorized
2359  * XBT logging makes tracing error checks easier, new root log hierarchy: instr
2360  * New TRACE_user_link_variable interface:
2361    User provides the name of the link and the tracing variable to attach to it
2362  * the declaration of tracing categories must be done after the environment
2363    creation
2364  * simpler tracing interface, just one way to declare categories
2365     TRACE_category or TRACE_category_with_color, it is up to you
2366  * links in the trace file are again identified by their names
2367  * trace contains the full platform hierarchy exactly as declared using the ASes
2368  * Options tracing/msg/[task|process]:1 groups the process by hosts
2369    for both cases, tasks and processes must have names that are unique during the simulation
2370    these options generate traces that are suited to gantt-charts, such as the space-time view of Paje
2371  * The experimental option tracing/msg/volume is deprecated
2372    its functionality may be reincorporated if needed
2373  * Buffering
2374    The tracing generates a trace file with unordered timestamped events,
2375    because of the way the core simulator (surf) works. A script available
2376    at the tools directory (fix-paje-trace.sh) can be used to put the events
2377    in order. We have changed the tracing so it can generate ordered timestamped
2378    events in the final trace, but depending on the simulator (and how much time
2379    is simulated) that can lead to a huge memory utilization. It is deactivated
2380    by default, but it can be activated using the --cfg=tracing/buffer:1 switch.
2381
2382  Build Infrastructure
2383  * Define a SIMGRID_VERSION macro in simgrid_config.h.
2384    - We are trying hard to keep the API stable, but it may happen that
2385      some things change (we're a research project after all, not a
2386      nuclear plant operating system). If such things should happen, you
2387      could rely on that macro to adapt.
2388    - current value: 30600 for 3.06.00, aka 3.6
2389  * Define macro MAKE_SIMGRID_VERSION(major, minor, patch) to help building
2390    a number that can be compared with SIMGRID_VERSION.
2391  * Add a build option -Denable_debug (set to ON by default): when set to OFF,
2392    assertions and verbose/debug logging events are disabled at compile time.
2393
2394  -- Tue Jun 21 08:57:43 CEST 2011 Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>
2395
2396 SimGrid (3.5) stable; urgency=medium
2397
2398  Model Checking
2399  * New feature to any SimGrid-based simulator: Model-Checking
2400    Check SIN#1 for more details.
2401
2402  SMPI
2403  * New Model SMPI (three-interval linear regression for correction factors)
2404    See RR-7426, available at http://hal.inria.fr/inria-00527150
2405  * Ability to use FORTRAN MPI code (through f2c, automatically privatized)
2406  * New MPI functions supported: MPI_Get_count(), MPI_Comm_split()
2407  * New: RAM folding (see RR-7426 and examples/smpi/NAS/DT-folding)
2408  * New: execution sampling (see RR-7426 and examples/smpi/NAS/EP-sampling)
2409  * See also src/smpi/README
2410
2411  Tracing:
2412  Tracing:
2413  * Tracing system
2414    - Tracing API changes: TRACE_start and TRACE_end should not be called
2415      by user-code. They are automatically called by simulators created
2416      with SimDAG, MSG and SMPI if the toolkit is compiled with
2417      tracing_enabled=ON. Categories declaration and utilization remain the
2418      same for MSG and SimDag.
2419    - A function was added to the tracing API to declare categories with
2420      colors:
2421         - TRACE_category_with_color (char *category, char *color)
2422                 where color must be in the following format
2423                     "%f %f %f", red, green, blue
2424                 and red, green, blue are float values in the interval [0, 1]
2425         - User can specify NULL as color parameter, or continue calling
2426             TRACE_category (cat)
2427           On that case, the tracing system will define random colors
2428    - The following command-line options are supported:
2429         --cfg=tracing/filename:msg.trace
2430         --cfg=tracing:1               (activate tracing, needed to use others)
2431         --cfg=tracing/platform:1      (categorized resource use)
2432         --cfg=tracing/uncategorized:1 (uncategorized resource use)
2433         --cfg=tracing/msg/task:1      (task creation)
2434         --cfg=tracing/msg/process:1   (process creation, migration)
2435         --cfg=tracing/msg/volume:1    (volume of MSG send/recv)
2436         --cfg=tracing/smpi:1          (SMPI interface tracing)
2437         --cfg=tracing/simdag:1        (allow SimDAG tasks receive categories)
2438    - examples of examples/msg/tracing updated
2439  * Tracing SimDag
2440    - DAXLoader and DOTLoader functions can generate tasks with categories
2441    - A new function to attribute a category to SD tasks:
2442         TRACE_sd_set_task_category (SD_task_t task, char *category)
2443  * Tracing the MPI interface implemented by SMPI
2444    - Collective operations are traced with states
2445    - Point-to-Point operations are traced with states/links
2446    - Tracing activated by a parameter "-trace filename" passed
2447      to smpirun during execution (considering that simgrid
2448      is compiled with tracing enabled)
2449    - To run the simulation with gdb, the simulator
2450      accepts --cfg=tracing/smpi:1 to trace SMPI
2451    - tesh files to check if smpi tracing is ok
2452    - See examples/smpi/NAS/DT-trace
2453  * GTNetS tracing re-worked
2454    - adaptation to the tracing system of GTNets to cope
2455      with modifications regarding the fullduplex mode
2456    - new tesh files to check if gtnets tracing is ok
2457
2458  MSG
2459  * Asynchronous communications through the functions:
2460    MSG_task_isend/irecv and MSG_comm_test/wait/waitall
2461  * New function: MSG_load_platform_script()
2462    to make possible using a lua script instead of XML files to set up platforms
2463  * New function: MSG_set_function
2464    to associate functions to processes, used when bypassing the parser
2465  * New functions: MSG_task_set_name(), MSG_task_set_compute_duration()
2466
2467  Platforms: Add some more examples in examples/platforms
2468  * Grid'5000: see www.grid5000.fr
2469  * *_30000_hosts.xml: various huge files [mainly scalability testing]
2470
2471  SURF
2472  * Change the XML format. This is a very important modification. SimGrid
2473    3.5 introduces a new hierarchical format based on the notion of
2474    Autonomous Systems. Compatibility with old format is ensured
2475    through the perl script provided in the install bin directory
2476    bin/simgrid_update_xml.
2477    It is now possible to build platforms with specific routing
2478    mechanism (Full/Dijkstra/DijkstraCache/Floyd) and to easily
2479    connect several platforms together. We will try to provide soon
2480    set of realistic platforms exploiting these properties (have a
2481    look at examples/platforms/ for the moment).
2482  * Take the opportunity of the XML format change to be a good XML citizen:
2483    rename link:ctn to link_ctn and similar changes (also dealt with by
2484    simgrid_update_xml)
2485  * Add a new routing scheme (rule-based) using regular expressions. It
2486    enables to have an extremely low memory footprint when the
2487    underlying routing is simple and can be compactly described. You
2488    need to have libpcre4-dev (perl regular expressions) installed if
2489    you want to use this routing scheme.
2490  * Revive the cluster TAG and allow to easily and efficiently (both in
2491    term of memory and speed) connect clusters together. Have a look
2492    at teshsuite/simdag/platforms/ to see how this can be done. With
2493    this tag, you can create clusters with thousands of tasks at no
2494    cost (have a look at examples/platforms/).
2495    Note: clusters are implemented as ASes, so there is no need for an
2496    enclosing AS tag if you have only one cluster in your platform.
2497  * Add new generic functions in the public interface that allows the user
2498    to call SURF 'create_resource' methods from your code (same
2499    functionality as the XML bypass mechanism but with a much lighter
2500    burden).
2501  * Add a new model (enabled through command line --cfg=network/model:SMPI)
2502    that uses a piecewise linear approximation to produce better
2503    results when exchanging small messages.
2504  * Add a new parameter to handle correctly full duplex link and account
2505    for interferences between uplink and downlink communications
2506    (activate with --cfg=fullduplex:1).
2507
2508  SIMDAG
2509  * Rename the SD_READY (all dependencies are satisfied and task is
2510    scheduled) state in SD_RUNNABLE and define a new SD_SCHEDULABLE (all
2511    dependencies are satisfied) state.
2512    This prevents a confusion between the notion of "ready to schedule"
2513    (SD_SCHEDULABLE) used in DAG scheduling and that of "ready to be
2514    simulated" (SD_RUNNABLE) used by the simulation kernel.
2515  * Change the way a task is considered as ready. Instead of removing
2516    dependencies when a task is done, a counter is decreased. This way,
2517    it is always possible to reach ancestors thanks to the
2518    SD_taks_get_parents function (even after the end of the simulation.)
2519  * Change the return type of SD_Simulate from (SD_task_t*) into
2520    xbt_dynar_t. This function was in handling a dynar internally and
2521    converted it into a NULL terminated array for historical reasons.
2522  * New function SD_dotload(char*) to load a DAG described in dot
2523    format. This loader and the corresponding examples require the
2524    installation of the graphviz library.
2525  * Fix a bug in the management of tasks of size 0 in the surf network
2526    models. This problem was only visible with SIMDAG and you should
2527    thus disregard results produced with earlier versions if you
2528    relied on this feature (some tasks were blocked because of this).
2529  * Fix a bunch of stuff that prevented to use classical models with SIMDAG
2530    even though your applications were doing only point-to-point
2531    communications and sequential computations. Now you can really use any
2532    model you want (of course, if you create real parallel tasks, which are
2533    not implemented in most models beside ptaskL07, this will abort).
2534  * Add an example that schedules a DAX on an heterogeneous platform
2535    using a Min-Min strategy.
2536  * New function SD_workstation_get_current_task() that returns the kind
2537    of task currently running on a workstation in the sequential access
2538    mode.
2539  * Raise some warnings when unexecuted tasks remains at the end of the
2540    simulation. This is usually caused by cycles in the DAG.
2541
2542  SIMIX
2543  * New function: SIMIX_process_set_function() called by MSG_set_function
2544  * Change the underlying waiting queue in semaphores so that a process
2545    can wait on several of them simultaneously (as in waitany).
2546  * Fix the way to handle tokens in semaphores so that all access patterns
2547    work: {acquire, acquire_timeout, waitany} / {release, release_forever}.
2548  * kill the dirty pimple SIMIX_message_sizes_output()
2549    Please use (proper) visualization instead
2550
2551  XBT
2552  * New data container: setset (set of sets of elements)
2553  * New module: mmalloc (mapped malloc, allowing to have several
2554    independent segments of malloc)
2555  * New function: xbt_dict_cursor_set_data()
2556  * New functions: xbt_dynar_sort(), xbt_dynar_compare()
2557  * New function: xbt_dynar_is_empty()
2558  * New function: xbt_fifo_get_last_item()
2559  * Fix xbt_dynar_shrink(): use the right element size.
2560  * Fix xbt_dynar_set*(): allow index larger than current size and memset 0
2561    uninitialized areas during expand.
2562  * Fix semaphores: previous implementation was severely broken.
2563  * Use library init/fini functions for our initialization.
2564    - you can use logs and other feature as soon as you want in your
2565      code (even before the xbt_init / MSG_init)
2566    - xbt_exit is now a no-op and produce a warning when used.
2567
2568  GRAS:
2569  * Port GRAS to new SIMIX mechanisms. This allows gras users to
2570    benefit from the latest improvement to the simulation kernel.
2571  * Kill measurement sockets for now. If you rely on them, sorry. This
2572    release is not for you. This feature will be reintroduced in the
2573    future, but we cannot delay the release any further.
2574  * New function: gras_msgtype_get_name().
2575  * Implement gras_agent_spawn in RL too (the prototype changed a bit)
2576  * Fix (at last) the pmm example: it should not randomly fail anymore.
2577
2578  Build chain: bug fixes and overall polishing
2579  * Cmake is now stable enough. Hence, we killed the autotools.
2580  * Port to windows ( TM :)
2581  * Fix the 'make install' target.
2582    No need to use 'make install-simgrid' anymore
2583  * Introduce a 'make dist' target compiling a *source* archive
2584    'make package' compiles a binary archive
2585  * Compile java files only on need
2586  * Add --cd and --setenv command line options to tesh
2587  * Out of source builds are not fully supported yet, but we are close
2588  * Enable supernovae and optimization flags by default for our users
2589
2590  LUA Bindings
2591  * Add layer to set up environment directly from lua, without XML.
2592  * The effect of gras_stub_generator can be achieved through
2593    lua too (check examples/gras/console/ping_generator.lua)
2594
2595  -- Wed, 01 Dec 2010 22:09:23 +0100 Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>
2596
2597 SimGrid (3.4.1) stable; urgency=low
2598
2599  The "Polishing easter eggs is probably a good idea" release.
2600  This is a bug fixes release only.
2601
2602
2603  Java Bindings
2604  * Fix a bug preventing the tasks from begin garbage collected.
2605
2606  MSG
2607  * Fix a bug occurring when a host involved in a communication fails.
2608    This was not detected properly by the other peer involved in the
2609    communication. Now, it's reported as a network error.
2610
2611  SimDag
2612  * Warn the user about loop dependencies in data flow of DAX files
2613  * Obey the control-flow dependencies of DAX files
2614
2615  Cmake
2616  * Add option "enable_smpi" allowing to not compile SMPI.
2617    Probably useful for the (Mac) users experiencing a build error here
2618  * Improve the detection of lua5.1 and ruby1.8
2619
2620  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr> Tus, 04 May 2010 28 16:11:16 +0100
2621
2622 SimGrid (3.4) stable; urgency=low
2623
2624  The "Easter in Cargese" release. Also known as (major changes):
2625
2626   * the "se habla Java, Ruby 話せます, fala-se Lua (and deaf-friendly)"
2627     ~> bindings were greatly improved
2628     ~> new tracing infrastructure for better visualization introduced
2629
2630   * the "Welcome to configury modernity" release.
2631     ~> we switched from autotools to cmake, and improved our cdash
2632
2633
2634  A more detailled list of changes follow (full detail in svn log).
2635
2636  Java Bindings: Various Cleanups
2637   * (install java-gcj-compat-dev on debian-like to use them)
2638   * Remove put/get: no need to export deprecated interface in Java
2639     Use send/receive instead.
2640   * Cleanup the examples and add a README per directory
2641   * Remove example autoDestination (that's the only way to go now)
2642   * Remove example explicitDestination (was a plain copy of basic)
2643   * Make JniException a runtime exception, so that there is no need to
2644     declare the fact that you may encounter such a beast. I guess that
2645     nobody will ever want to survive such error.
2646   * Create specific errors for each MSG case of failure:
2647     host failure, transfer failure, timeout, task cancelled
2648   * Cleanup the exceptions that may get thrown by each function
2649   * Other internal cleanups in Java bindings. Performance still bad :/
2650  Ruby and Lua Bindings: create them
2651   * (install ruby1.8-dev/liblua5.1-0-dev on debian-like to use them)
2652   * That's new and great, you should try them out.
2653     Same functionalities than Java bindings, only even less polished
2654  SimDag:
2655   * Kill the useless "rate" argument of SD_task_get_execution_time()
2656     Everyone used to provide -1 as a value, it was not used, and the
2657     semantic of a possible use wasn't even clear.
2658   * SD_SCHED_NO_COST: Constant to use as cost in SD_task_schedule()
2659     either as comm costs or compute costs to mean that there is no
2660     such thing for that specific task.
2661   * Add a SD_task_set_name() function
2662   * Fix SD_task_unschedule() on typed tasks
2663   * Fix SD_task_get_execution_time() to return seconds, not flop*sec
2664   * In DAX loader, accept useless 'level' attributes to <job> since
2665     LIGO DAGs have them (seem to be to ease graphical representation).
2666  MSG:
2667   * Add an example masterslave_mailbox.c using send/receive and not
2668     the deprecated put/get interface.
2669   * Kill the MSG_paje_output() function. It's a noop since 2 years.
2670   * Kill MSG_WARNING and MSG_FATAL return codes: they were not used
2671     anywere in source.
2672   * Rename MSG_TIMEOUT_FAILURE into MSG_TIMEOUT for sake of logic
2673     (declare MSG_USE_DEPRECATED to still have the old name)
2674   * Add a MSG_task_set_data() function
2675   * About trace replay (see examples/msg/actions):
2676     - implement barrier
2677     - Allow to work with splitted trace files for each process
2678       Give the specific trace file as argument of each process,
2679         and call MSG_action_trace_run(NULL)
2680       You can still have one merged file for all processes.
2681     - Fix implementation of collective operations
2682   * Allow task_execute() on 0-sized tasks (closes #10063)
2683  SMPI:
2684   * This is the first release of SimGrid where SMPI is not considered
2685     beta anymore (even if some corners should still be improved)
2686   * Port over the new SIMIX_network submodule (internal refactoring)
2687   * Basic support to log events as with SMPE (use --cfg=SMPE:1)
2688   * Implement more missing elements of the standard:
2689     - MPI_COMM_SELF
2690     - MPI_MAXLOC MPI_MINLOC + all associated datatype MPI_DOUBLE_INT,
2691       MPI_FLOAT_INT, etc.
2692     - MPI_Address() MPI_Get_count() MPI_Type_free() MPI_Type_extent()
2693       MPI_Scan() MPI_Get_processor_name()
2694     - Added implementation of missing case for Alltoall (warning: it's
2695       *not* the bruck variant from OpenMPI; based on Alltoallv instead)
2696     - SMPI_MPI_Gather() SMPI_MPI_Gatherv() SMPI_MPI_Scatterv()
2697       SMPI_MPI_Reduce_scatter() SMPI_MPI_Allgather()
2698       SMPI_MPI_Allgatherv()
2699   * Bug fixes include:
2700     - MPI_Waitsome() was broken
2701     - Allow relative includes in smpicc
2702     - Command line cfg argument 'reference_speed' was ignored...
2703     - Some functions did not properly lead to auto-benching of user code
2704     - smpicc passes -O2 by default (just like openmpi one)
2705  SIMIX:
2706   * add SIMIX_action_suspend() and SIMIX_action_resume() functions
2707   * Bug fixes about timeouts during communications
2708   * add SIMIX_message_sizes_output() as a pimple to write to file the
2709     amount of messages per size. Use gnuplot to get histogram.
2710     Pimple because that's the only user-visible function of simix,
2711      defined directly in xbt.h (irk, sorry)
2712   * About semaphores:
2713      - Add a SIMIX_sem_get_capacity() function
2714      - Fix interactions with processe resume/suspende
2715      - release_forever() was stupidly broken
2716      - Fix SIMIX_display_process_status() for processes in a semaphore
2717      - Make SIMIX_sem_block_onto() user-visible
2718   * Refactoring context stuff:
2719     - Use pseudo-OOP for better modularity
2720     - reimplement SIMIX_process_kill() without process_schedule() so
2721       that the latter can take as invariant that it is called from
2722       maestro.
2723     - Merge context_start into context_new for sake of simplicity
2724  SURF:
2725   * Add a Vivaldi network model, coded live during SUD'10 ;)
2726   * Rename configuration variables to start a hierarchy:
2727     o cpu_model -> cpu/model
2728     o network_model -> network/model
2729     o workstation_model -> workstation/model
2730   * New configuration variables:
2731     o network/bandwidth_factor: correction to bandwidth
2732     o network/latency_factor: correction to latency
2733     o netwotk/weight_S: correction to the weight of competing streams
2734   * Add a long description to the models, that users can see with such
2735     argument on the command line: --cfg=cpu/model:help
2736   * --help-models display the long description of all known models
2737  XBT:
2738   * config: add the ability to set a default value after registration
2739     Does not override any previously set value (e.g. from cmd line)
2740   * dict: allow to have integer key and data.
2741     When so, you need to use the following functions
2742      void xbt_dicti_set(xbt_dict_t dict, uintptr_t key, uintptr_t data);
2743      uintptr_t xbt_dicti_get(xbt_dict_t dict, uintptr_t key);
2744      void xbt_dicti_remove(xbt_dict_t dict, uintptr_t key);
2745     In contrary to regular dicts, the key is not malloced before copy.
2746     Mixing scalar and regular elements in the same dict is not tested
2747       (but may work).
2748   * Allow to use xbt_dynar_shrink() to expend the dynar instead
2749  Tracing for Visualization:
2750   * SimGrid is now instrumented in order to generate a trace file for
2751     visualization analysis: to use it, need to compile SimGrid with the
2752     "tracing" option enabled, and instrument the program using SimGrid with
2753     TRACE_start, TRACE_category, TRACE_msg_set_task_category and TRACE_end
2754     (among other functions).
2755   * The instrumentation only traces the platform utilization for now
2756   * Documentation to use the tracing functions and how to analyze the
2757     traces with the Triva tool is written.
2758   * More information about: SimGrid FAQ (in the section Tracing Simulations
2759     for Visualization)
2760  Build system:
2761   * We moved to cmake as default build system. Autotools support will
2762     be dropped soon. Check the FAQ for more info about how to use it.
2763   * Greatly improved our cdash/ctest interactions
2764     Check http://cdash.inria.fr/CDash/index.php?project=Simgrid
2765   * Added memory checking tests with valgrind; lot of memleak fixing.
2766     This may be the first release of simgrid with so few memory issues
2767   * Added code coverage tests.
2768     Our coverage is still improvable, but at least we see it on cdash.
2769
2770  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr> Wed, 28 Apr 2010 28 17:11:16 +0100
2771
2772 SimGrid (3.3.4) stable; urgency=low
2773
2774  The "Desktop Grid needs love too" release (also called Xmas release).
2775
2776  Models improvements:
2777  * Major speedup in the maxmin system solving by using lazy evaluation
2778    Instead of solving completely the maxmin system at each iteration,
2779      only invalidate (and recompute) the modified parts.
2780    This new feature is enabled in default models but you can try to
2781      turn it on with "--cfg:maxmin-selective-update=1" for other models.
2782  * Cas01 IMproved as default CPU model
2783    This CPU model is the same Cas01 model, but it uses the
2784      maxmin-selective-update flag and a heap structure to manage
2785      actions on SURF kernel.
2786    It reduces the complexity to find the next action to finish and,
2787      consequently, it's faster than the old Cas01.
2788    This is the new default CPU model (Cas01).
2789  * Rename the old Cas01 model to Cas01_fullupdate
2790    Keep the old cpu model Cas01 with the new name of Cas01_fullupdate.
2791    Use "--cfg=cpu_model:Cas01_fullupdate" to use the old default CPU model.
2792  * CpuTI (CPU Trace Integration)
2793    A new CPU model whose objective is simulate faster when using
2794      availability trace files.
2795    Instead of using a full featured, over engineered maxmin system for
2796      CPU modeling, this model does the pre-integration of traces files
2797      to calculate the amount of CPU power available, and so, executes
2798      faster than the old CPU models.
2799    Use "--cfg=cpu_model:CpuTI" to change to this CPU model.
2800  * Use LV08 as default network model since it gives better accuracy
2801     for small messages and shouldn't change things for big ones.
2802    Use --cfg=network_model:CM02 to get the previous behavior.
2803
2804
2805          ******************************************
2806          *DO NOT MIX 3.3.4 RESULTS WITH OLDER ONES*
2807          ******************************************
2808    * The new CPU model may changes simulations!
2809      The point is that events occurring at the exact same timestamp
2810         are not scheduled in the same order with the old and new
2811         version. This may be enough to completely change the execution
2812         of simulations in some cases.
2813    * The new network model will change simulations!
2814      This new model is more realistic than the previous one, so you
2815        should consider redoing your old experiments with this model.
2816      Sorry for the inconvenience.
2817
2818  Build System:
2819  * Introduce the supernovae compilation mode
2820    When compiled that way, the whole SimGrid (or almost) is put in a
2821      single compilation unit and compiled in one shoot.
2822   This is to help gcc which has difficulties to inline stuff from one
2823      file into another.
2824   The speedup seem to be above 15%, althrough more tests are needed on
2825      amd64 to confirm that gain.
2826
2827  MSG:
2828  * Port of MSG's mailbox on top of SIMIX network
2829    The put/get mechanism was greatly simplified on the way.
2830
2831  SIMIX:
2832  * New SIMIX network module. Provides:
2833    - Mailbox: rendez-vous mechanism to find with who you want to speak
2834    - Synchronous send/recv: easier and hopefully faster since the
2835      logic is handled in the maestro process directly now
2836    - Asynchronous send/recv: you dreamt of it? It's here now
2837      Too bad that nobody cared enough to propagate the change to MSG.
2838  * Add semaphores as SIMIX synchronization mechanism.
2839
2840  SimDag:
2841  * new function SD_daxload(char*) to load a DAX file
2842    (see http://vtcpc.isi.edu/pegasus/index.php/WorkflowGenerator)
2843  * Introduce typed tasks. Specify its kind and cost at creation.
2844    At scheduling, just give where it should be placed, and the cost
2845    for each involved resource is automatically computed.
2846    Existing constructors so far (more to come of course):
2847     - SD_task_create_comm_e2e() for end-to-end communication
2848     - SD_task_create_comp_seq() for sequential computation
2849    Use SD_task_schedulev() / SD_task_schedulel() to schedule them.
2850  * new function SD_task_dump() for debugging display
2851  * new function SD_task_dotty(task,FILE*) writing to file the info
2852    about the task in dotty format
2853  * SD_task_dependency_exists() can now cope with having one of its
2854    arguments NULL. If so, it tests whether the other argument has any
2855    dependency.
2856  * Add getters on list of preceding/following tasks:
2857     SD_task_get_parents(task) and SD_task_get_children(task)
2858  * Add getters on amount of workstations and list:
2859     SD_task_get_workstation_count(t) and SD_task_get_workstation_list(t)
2860  * Add getter on task kind: SD_task_get_kind(task)
2861  * Update the start_time and finish_time of tasks on completion/failure
2862  * Bugfix: Remove task from state swags when destroyed
2863
2864  GRAS:
2865  * New function: void gras_cpu_burn(double flops) -- a simple CPU burner
2866
2867  XBT:
2868  * New function: xbt_dynar_dopar(dynar,fun) to map a function over the
2869    dynar with one separate thread per value of the dynar.
2870  * Change the prototype of xbt_thread_create(), sorry.
2871    Added a boolean parameter indicating whether we want to join this
2872    thread (used in SG only for now)
2873  * Implement xbt_thread_join and xbt_thread_yield in SG also.
2874
2875  Bug fixes:
2876  * GTNetS wrappers should now be usable again (and betterly tested too)
2877  * Fix a major regression from 3.2 where the timeout provided to
2878    MSG_task_put_with_timeout() was used as absolute time before which
2879    the comm should be done.
2880  * Start to fix the <cluster> tag.
2881    - Internal links should be good now (beside of the loopback, which
2882      use the private link instead)
2883    - paths to the external world is still rather broken
2884    - the <route:multi> tag is just broken. Actually that's brain-dead.
2885      We need sth like <route:multi src="myCluster" dst="$*-${myCluster}">
2886      to make it less stupid
2887    ** Check your platform with teshsuite/simdag/platforms/flatifier **
2888  * Fix a source-level compatibility glitch from 3.2: after defining
2889    MSG_USE_DEPRECATED, you can use the old name
2890    MSG_task_put_with_time_out() for MSG_task_put_with_timeout()
2891  * Allow to compile from the SVN with automake 1.11
2892  * Fix some problems when using the "start_time" tag in deployment XMLs.
2893  * Fix #8569: XBT/synchro.h has redundant declarations
2894  * Fix #8563: MSG return values and exceptions
2895    Introduce a MSG_TIMEOUT_FAILURE return code and use it consistently.
2896  * Integrate patch #8636: Obey DESTDIR when installing documentation.
2897    Thanks to Robson Peixoto.
2898  * Fix a vicious bug in dictionaries inducing that some elements were
2899    not freed on xbt_dict_free()
2900
2901  Portability report of this version:
2902   * Main portability targets:
2903     - linux (ubuntu (804/810/910) /debian (4/5/testing) /fedora (core11))
2904       on (amd64/i386/ia64)
2905     - mac leopard on i386
2906     Known problems: http://cdash.inria.fr/CDash/index.php?project=Simgrid
2907      but nothing critical.
2908   * Other platforms: windows, AIX and others were not tested for this release
2909
2910  Timing report of this version:
2911   * Lazy evaluation brings arbitrary speedup (ie, speedup depending on
2912     scenario parameters). From 8h to a few seconds in desktop grid settings.
2913   * Supernovae brings about 25% speedup on i386.
2914
2915  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr> Thu, 24 Dec 2009 19:07:39 +0100
2916
2917 SimGrid (3.3.3) stable; urgency=low
2918
2919  The "Need for Speed" release.
2920
2921  The timings done to validate the 3.3.2 were faulty.
2922  Instead of being 5% faster, it was 15% slower (compared to 3.3.1).
2923
2924  The problem was a conversion from a manually handled vector to
2925    xbt_dynar_t on the critical path.
2926  xbt_dynar_foreach calls functions, inducing stack management crap.
2927
2928  We inlined these functions and xbt_dynar_foreach is now breath taking.
2929  We also inlined xbt_swag_belong on the way.
2930
2931  Here are some approximate speedup measurements (on master/slaves
2932   simulations lasting between 10s and 20s each):
2933    3.3.1                   -> 3.3.2: about same performance
2934    3.3.2                   -> 3.3.3: 40% speedup
2935    3.3.1                   -> 3.3.3: 40% speedup
2936    3.3.1 with inline patch -> 3.3.3: 30% speedup
2937
2938  Our reading is that the refactoring which occurred in 3.3.2 made us
2939   suffer much more from the xbt_dynar_foreach low performance, but
2940   once we solved this, this refactoring proved to be very performance
2941   effective. From the 40% speedup, somehow, 10% are due to the
2942   inlining and 30% to the refactoring.
2943
2944  That's a pitty that gcc cannot inline functions placed in other files
2945   alone. We have to choose between:
2946   - break the encapsulation (by putting private data structures and
2947     accessors in headers files to help gcc)
2948   - live with low performance
2949   - switch to a decent compiler such as icc (not quite possible).
2950
2951  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr> Thu, 20 Aug 2009 21:21:33 +0200
2952
2953 SimGrid (3.3.2) stable; urgency=low
2954
2955  The "Simplicity does not preceed complexity, but follows it" release.
2956
2957  The main contributors of this release were (lexical order):
2958    Silas De Munck, Stéphane Genaud, Martin Quinson, Cristian Rosa.
2959
2960  SURF:
2961   * Extract the routing logic into its own object.
2962     (was dupplicated in network.c and workstation_LV07.c;
2963      Allows to implement other ways of storing that info)
2964     => kill now useless network_card concept
2965     - Use dynar to represent routes (instead of void** + int*)
2966     - kill link_set (use surf_network_model->resource_set instead)
2967     - Add a command-line option to choose the routing schema to use
2968     - Add three new models:
2969       * Floyd (shortest path computed at initialization)
2970       * Dijikstra (shortest path recomputed all the time)
2971       * Cached Dijikstra (shortest path computed on need)
2972       All these models where contributed by Silas De Munck, and are
2973       described in his ICCS09 paper.
2974
2975   * Simplify model declaration
2976     (less redirections, less function to write when defining a model)
2977     - Factorize stuff between models:
2978       - model_init/exit
2979       - Set of resources:
2980         surf_model_resource_set(model)
2981         surf_model_resource_by_name(model, name)
2982     - Unify the types of models in s_surf_model_t (using an union)
2983     - Embeed fields of common_public directly into s_surf_model_t
2984     - Rename model methods:
2985       action_free ~> action_unref
2986       action_change_state ~> action_state_set
2987       action_get_state    ~> action_state_get
2988     - Change model methods into functions:
2989       (model)->common_public->action_use  ~> surf_action_ref
2990
2991   * Implement a generic resource; use it as ancestor to specific ones
2992     (allows to kill duplicated code in models)
2993     Drawback: timer command don't need no name nor properties;
2994               workstation_CLM03 don't need no properties
2995     (but I guess we can live with those few bytes wasted)
2996
2997   * Improve the action object model
2998     - implement a constructor avoiding dupplicated code about field
2999       initialization in generic_action part.
3000
3001   * Kill the SDP model: it has an external dependency, is deprecated
3002     in flavor of modern lmm models, and didn't compile since a while
3003
3004  SIMIX:
3005   * Relocation of the context module from XBT to SIMIX.
3006     (the context were decoupled from the simix processes, duplicating a lot of code)
3007     => a lot of code was factorized
3008     - less overhead is introduced during scheduling
3009     - simpler API for the context factory
3010     - the logic for process creation,destruction and manipulation was simplified
3011   * Simplification of the s_smx_process_t data structure.
3012     => accesing the simix level data associated to a process is faster now,
3013        and the code is a lot more readable.
3014
3015  SMPI:
3016   * Implement some more MPI primitives:
3017     MPI_Bcast, MPI_Waitany, MPI_Waitall, MPI_Reduce, MPI_Allreduce, MPI_Scatter, MPI_Sendrecv, MPI_Alltoall
3018     -implementation: Bcast: flat or 2-ary tree (default),
3019                      Barrier: 4-ary tree,
3020                      Reduce: flat tree
3021                      Allreduce: Reduce then Bcast
3022                      Alltoall: "basic_linear" if data per proc < 3Kb, "otherwise pairwise".
3023                                Not yet implemented: "Bruck" for data per proc < 200b and comm size > 12
3024                      Alltoallv: flat tree, like ompi
3025                      Scatter: flat tree
3026   * Add support for optimized collectives (Bcast is now binomial by default)
3027   * Port smpirun and smpicc to OS X
3028
3029  SimDag:
3030   * Kill SD_link_get_properties: hard to maintain and makes very little sense
3031     Shout out if you used it.
3032
3033  GRAS:
3034   * Display the list of still queued messages in SG mode when existing
3035     the process.
3036
3037  XBT:
3038   * Add xbt_set_get_by_name_or_null() [Silas De Munck]
3039   * Add xbt_graph_node_get_outedges() [Silas De Munck]
3040   * Add xbt_str_from_file(FILE*)
3041   * Add xbt_dict_get_key achieving a linear reverse search
3042   * Remove the context module
3043
3044  Portability report of this version:
3045   * Main portability targets:
3046     - Linux(debian)/x86/context
3047     - Linux(debian)/x86/pthreads
3048     - Linux(debian)/amd64/context
3049     - Linux(debian)/amd64/pthreads
3050     On these, we still have the eratic breakages of gras/pmm and
3051       amok/saturate_sg reported in previous version. We still think
3052       that the tests are the cause of the fault, not the tested code.
3053
3054     - Mac OSX Leopard/x86/context
3055     Still false negative in tesh autotesting.
3056     Smpi still fails, but this time because readlink does not accept -f
3057     Everything seems to work properly beside of that.
3058
3059   * Exotic platforms:
3060     - AIX version 5.3 (only tested contexts this time)
3061       Smpi still fails there because mktemp is not installed.
3062       Everything seems to work properly beside of that.
3063     - OpenSolaris 11
3064       I managed to compile it for the first time, but several breakages.
3065       Won't delay the release for this exotic platform.
3066
3067   * Windows: it's still lagging behind. If you want to help, please
3068     stand up.
3069
3070  Timing report of this version:
3071   This version seem to be more than 5% faster than 3.3.1 (on linux
3072     64bits with contextes). The gain is less than expected, we are
3073     investigating this for next release.
3074
3075  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr> Wed, 19 Aug 2009 17:07:12 +0200
3076
3077 SimGrid (3.3.1) stable; urgency=low
3078
3079  OVERALL CHANGES:
3080   * Implement a --cfg-help to show existing configuration variables
3081   * Build chain do not require doxygen in maintainer mode
3082
3083  GRAS:
3084   * fix a bug on struct sizeof computation, which prevented the
3085     exchange of arrays of structs in some conditions
3086     - added a regression test about this in datadesc_usage
3087   * Allow the exchange of 0-long dynamic vectors.
3088     - for that, use -1 as indicator of dynamic size instead of 0
3089     - This implied to change any size from unsigned long to long,
3090       reducing a bit communication abilities, but I guess that with
3091       64bits being quite common, this is more than enough.
3092     - This also induce a protocol change, thus bumping network protocol
3093       version from 0 to 1 (if we have external users, we have to get
3094       clean on that point too ;)
3095     - added two regression tests about this in datadesc_usage
3096   * Be more verbose when propagating local exceptions
3097     This helps debugging.
3098   * Display the status of simulated processes when receiving SIGINT in
3099     simulation mode
3100
3101  MSG:
3102   * Allow to control the simulation from a trace file.
3103     New functions MSG_action_register() and MSG_action_trace_run()
3104     The first one allows to associate a function execution to each
3105      kind of action while the second one parses a trace file and
3106      triggers the corresponding actions within the system.
3107     For now, only a toy example is provided in examples/msg/actions
3108   * Add an example of process migration in examples/msg/migration
3109   * Fix a bug in task exchange which broke MSG_task_get_sender()
3110     Add a teshsuite regression test for that.
3111     [Bug: if MSG_task_get_sender() is called after sender exit,
3112      bad things happen]
3113   * Fix a bug which prevented suspend/resume to work properly
3114   * Display the status of simulated processes when receiving SIGINT
3115     This fixes a regression of v3.3. due to the introduction of SIMIX
3116   * Bug fixing in failure management:
3117     - trace could not start by a failure at time 0
3118     - failure during communications were not working
3119
3120  SIMIX:
3121   * Add SIMIX_process_set_name() to change the name of the current
3122     process in the log messages.
3123   * Store smx_hosts in a dict since we only retrieve them by name
3124   * Move the configuration infrastructure to surf
3125
3126  SIMDAG:
3127   * Move the configuration infrastructure to surf
3128
3129  SMPI:
3130   * Massive internal cleanups:
3131     - Store internal structures on processes instead of hosts (allows
3132       to have more than one process per host, in addition of being more
3133       logical)
3134     - Cleanup the initialization/finalization process
3135     - Kill a whole bunch of unneeded synchronization:
3136       processes run in exclusive manner within the simulator
3137     - Move queues from global tables to process data fields
3138   * Improve smpirun:
3139     - now accept -platform and -hostfile arguments
3140     - Pass the right rank value to processes according to the hostfile
3141   * Compile the examples by default, and use them as regression tests
3142   * Implement MPI_Wtime()
3143   * Change the reference speed to a command line option
3144
3145  SURF:
3146   * TCP_gamma can now be specified as command line option using
3147     --cfg=TCP_gamma:10000000.0
3148   * Change the --surf-path cmd line option into --cfg=path:
3149
3150  XBT:
3151   * Also include strbuff from xbt.h public header
3152   * xbt_ex_display(): do not free the exception after displaying
3153     This allows to do more with the given exception afterward.
3154     Users should call xbt_ex_free() themselves.
3155
3156
3157
3158  Portability report of this version:
3159   * Main portability targets:
3160     - Linux(debian)/x86/context
3161     - Linux(debian)/x86/pthreads
3162     - Linux(debian)/amd64/context
3163     - Linux(debian)/amd64/pthreads
3164     These targets fail about 1/10 of times on gras/pmm, but we believe
3165       that this is because of the test, not because of simgrid.
3166     amok/saturate_sg fails even more rarely, and the test may not be
3167       the problem.
3168
3169     - Mac OSX Leopard/x86/context
3170     The test suite still spits tons of errors because some obscure
3171       force prevents us from removing the temporary directories
3172       arguing that they still contain some metadata I've never heard of.
3173     Smpi fails because seq is not installed.
3174     Everything seems to work properly beside of that.
3175
3176   * Exotic platforms:
3177     - AIX version 5.3 (both contexts and pthread)
3178       Smpi still fails there because mktemp is not installed.
3179       XML inclusions seems rosty on AIX.
3180
3181   * Windows: it's still lagging behind. If you want to help, please
3182     stand up.
3183
3184  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>  Sat, 27 Jun 2009 00:14:30 +0200
3185
3186 SimGrid (3.3) stable; urgency=high
3187
3188  OVERALL CHANGES:
3189
3190   * JAVA BINDINGS for MSG (you dreamt of them? We made them)
3191     [Malek Cherier & Mt]
3192
3193   * Introduce the SIMIX module: factorize code between MSG and GRAS.
3194     [Bruno Donassolo]
3195
3196     Until now, GRAS were using MSG as an interface to SURF. It was
3197     quite difficult because both interface have several differences
3198     (MSG channels vs GRAS sockets were the most notable point).
3199
3200     This also opens the gate to SMPI (which should occur soon) and speed
3201     up simulations by to 40% (even if it were not the main goal).
3202
3203     **************************************
3204     *DO NOT MIX 3.2 RESULTS WITH 3.3 ONES* Simix may changes simulations!
3205     **************************************
3206     The point is that events occurring at the exact same timestamp are
3207     not scheduled in the same order with the old and new version. This
3208     may be enough to completely change the execution of simulations in
3209     some cases. Sorry for the inconvenience.
3210
3211   * Cleanup and upgrade the XML format to push further scalability
3212     issues (check http://hal.inria.fr/inria-00256883/ for more info)
3213
3214   * Improve the testing infrastructure with tesh. Now a very large part of
3215     the code is tested not only by being run but also by checking that the
3216     output match an expected output [Mt].
3217
3218   * Move on to FleXML v1.7 for the embeeded XML parsers. This version
3219     is really less memory-demanding, which should allow you to use
3220     larger files in SimGrid [AL].
3221
3222   * Inform valgrind about our contextes, so that it becomes usable
3223     with the default (and more effecient) version of SimGrid
3224     [contributed by Sékou Diakite, many thanks]
3225
3226  GRAS:
3227   * Introduce a listener thread in charge of receiving incoming
3228     messages from the network. It allows to overlap communication and
3229     computation but most notably, it removes some stupid deadlocks due
3230     to the fact that so far, a process could not send and receive at
3231     the same time. This made most non trivial communication schema
3232     impossible.
3233   * Convert the PIDs from long int to int to match the MSG ones (and
3234     linux ones too) [Mt]
3235   * New function: gras_agent_spawn() to launch a new process on
3236     current host. Only working in simulation for now. [Mt]
3237   * New function: gras_os_hostport() returning a constant form (ie,
3238     not needing to be freed) of "gras_os_hostname():gras_os_myport()"
3239
3240  XBT:
3241   * Make the backtrace of exceptions more human readable [Mt]
3242   * New module: xbt/str [Mt]
3243     a ton of string utility functions (split, join, printf to a newly
3244     allocated buffer, trim, etc)
3245   * New module: xbt/hash [Mt]
3246     SHA1 hashing algorithm (more to come if needed)
3247   * New module: xbt/synchro [Mt]
3248     synchronization tools (mutex and conditions) working the same way
3249     in simulation and in real life (mainly useful for GRAS, but not
3250     only).
3251   * New module: xbt/queue [Mt]
3252     classical producer/consumer synchronization scheme
3253   * xbt_dynar_new_sync() creates a synchronized dynar. All access
3254     (using the classical functions will get serialized) [Mt]
3255   * Make dictionary internal table dynamic. No need to specify its size
3256     anymore; functions xbt_dict_new_ext() and xbt_dict_hashsize_set()
3257     thus dropped. [Mt].
3258   * Make sure the log channels are organized as a tree under windows
3259     (because of ANSI C compatibility issue, any channel were child of
3260      root directly) [Mt].
3261
3262  SURF:
3263   * Cleaned many thing in surf and fixed a few bugs [AL].
3264   * Add a nice command line configuration mechanism to compose models [AL].
3265   * Add a new model for parallel tasks (ptask_L07) that is less buggy than
3266     the previous one (KCCFLN05). It relies on something that looks like
3267     a max-min sharing mechanism but cannot be written as such. A new solver
3268     was thus designed [AL].
3269   * Add a new solver to lmm. Based on Lagrange optimization and
3270     gradient-based descent, it enables to efficiently maximise systems s.a
3271
3272      sum f_i(x_i) s.t Ax<= b  with A_{i,j}>=0 and f_i a concave function.
3273
3274     This solver enables to propose two new network models for TCP Reno and
3275     TCP Vegas based on Low's work. These models still need to be fully
3276     tested though [Pedro Velho].
3277
3278  SIMDAG [AL]:
3279   * Bug fix in SD_simulate. Now the time bound given as argument is
3280     used.
3281   * Use the new parallel task model (ptask_L07) as default.
3282   * Use the SURF command line configuration mechanism.
3283   * 0-size tasks (for synchronization) should now work.
3284
3285  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr> Sun Apr 12 05:20:36 CEST 2009
3286
3287 SimGrid (3.2) stable; urgency=high
3288
3289   OVERALL CHANGES:
3290    * Port to windows.
3291      We still experience issues on this platform, but we believe that at
3292      least MSG is usable.
3293
3294   GRAS API BREAKAGE (for simplification purpose, sorry):
3295    * the gras_msgtype_by_name is not used anymore. Instead of
3296        gras_msg_send(toserver, gras_msgtype_by_name("request"), &request);
3297      you can write (and must)
3298        gras_msg_send(toserver, "request", &request);
3299    - If you still want to pass a gras_msgtype_t to the function (to cache
3300      the type and avoid the lookup time), use the gras_msg_send_() variant.
3301    - Impacted functions:
3302      gras_cb_register, gras_cb_unregister, gras_msg_send, gras_msg_wait,
3303      gras_msg_rpccall, gras_msg_rpc_async_call, gras_msg_wait_ext
3304    * The callbacks are now expected to return 0 when everything went well
3305      (just like the main() function)
3306
3307   GRAS new features and improvements:
3308   * New module mechanism where user code can use per process globals [Mt]
3309     This is similar to gras_userdata_*() functions, but for libraries. It
3310       factorize some code developped over and over in the examples and AMOK.
3311     It has still to be documented and used (only amok/peermanagement is
3312       converted for now).
3313   * Fix a vicious bug in the TCP buffering mechanism which leaded to message
3314     loss when they were small enough to fit into the buffer and sent quickly
3315     enough so that they can all get received in one shoot.
3316   * gras_datadesc_by_name and gras_msgtype_by_name: now raise an exception
3317     if not found. Use the *_or_null() variant for the old semantic.
3318   * In gras_msg_handle, do not discard messages without callback.
3319     They are probably messages to be explicitly awaited later (ie, proofs of
3320     mis-synchronization in userland since they are sent before being awaited)
3321     No big deal usually.
3322   * gras_socket_meas_send/recv: semantic changed!
3323     The numerical arguments used to be (1) the total amount of data to send
3324     and (2) msg_size. This was changed to (1) msg_size and (2) amount of
3325     messages. This was need for the fool willing to send more than MAXINT
3326     bytes on quite fat pipes.
3327
3328   AMOK:
3329   * Do really rename the hostmanagement module to peermanagement. [Mt]
3330     Ie, rename functions from amok_hm_* to amok_pm_*. This breaks the API,
3331     but this is rather new and this was documented in the module
3332     documentation (poor excuses, I admit)
3333   * Bandwidth measurement semantic changed! This follows the changes to
3334     gras_socket_meas_send/recv explained above.
3335
3336   SIMDAG:
3337   * A sequential mode has been added to the workstations. When a workstation
3338     is in sequential mode, it can execute only one task, and the other tasks
3339     are waiting in a FIFO. [Christophe Thiery]
3340
3341   SURF:
3342   * The KCCFLN05 workstation model now handles parallel tasks. It is the
3343     model for SIMDAG. [Christophe Thiery]
3344   * Bug fix in the maxmin solver: Some values were close to 0 instead of
3345     equal to 0, which caused some bad behaviors in
3346     saturated_constraint_set_update. I now use a threshold mechanism like in
3347     surf. [AL]
3348
3349   XBT:
3350   * When running manually src/testall, you select specific units [Mt]
3351     testall is the result of our cunit mechanism, and should replace all
3352     the scripty thingy around since bash don't run easily on billware.
3353
3354   * A mallocator system has been added. [Christophe Thiery]
3355     Mallocators allow you to recycle your unused objects instead of freeing them
3356     and allocating new ones.
3357
3358   Documentation update:
3359   * FAQ reworking + New FAQs:
3360     - "Valgrind spits tons of errors!" [Mt]
3361     - "How to repport bugs" [Mt]
3362     - "Cross-compiling a Windows DLL of SimGrid from Linux" [Mt]
3363     - "What is the difference between MSG, SimDag, and GRAS?" [Mt]
3364     - Communication time measurement within MSG [AL]
3365     - I experience weird communication times when I change the latency [AL]
3366   * GRAS tutorial [Mt]
3367     It contains:
3368      - an introduction to the framework and to the used communication model
3369      - an initiatic tour introducing the most proheminent features:
3370        o Part 1: Bases
3371          . Lesson 0: Installing GRAS
3372          . Lesson 1: Setting up your own project
3373        o Part 2: Message passing
3374          . Lesson 2: Exchanging simple messages
3375          . Lesson 3: Passing arguments to the processes (in SG)
3376          . Lesson 4: Attaching callbacks to messages
3377          . Lesson 5: Using globals in processes
3378          . Lesson 6: Logging information properly
3379          . Lesson 7: Using internal timers
3380          . Lesson 8: Handling errors through exceptions
3381          . Lesson 9: Exchanging simple data
3382          . Lesson 10: Remote Procedure Calling (RPC)
3383          . Lesson 11: Explicitly waiting for messages
3384          . Recapping of message passing features in GRAS
3385      - A HOWTO section containing:
3386        o HOWTO design a GRAS application
3387        More are due, of course. They will come latter. In the meanwhile, you can
3388        check the examples which are still here.
3389
3390  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr> Fri Mar 16 21:11:46 CET 2007
3391
3392 SimGrid (3.1) stable; urgency=high
3393
3394   General:
3395   * Port to gcc 4.x
3396     There was a stack corruption somewhere, visible only when optimizing
3397     with these versions. [Vince]
3398
3399   SIMDAG:
3400   * This is a NEW module! SimDAG (SD for short) is a revival of the old SG
3401     module that enabled to play with Directed Acyclic Graphs. It is built
3402     directly on top of SURF and provides an API rather close to the old
3403     SG. Some old codes using SG are currently under rewrite to check that
3404     all needful functions are provided. [Christophe Thiery]
3405
3406   SURF:
3407   * Complete rewrite of the KCCFLN05 workstation model. It is now an
3408     extension of the classical CLM03 model that gracefully handles
3409     failures. This is now the default model for MSG and GRAS. It doesn't
3410     handle parallel tasks yet though. [AL]
3411   * Bug fix: Weights were not correctly set in the network part.
3412     WARNING: This may have resulted in incorrect results with simulations
3413     where there are more than one flow on a given link. [AL]
3414
3415   SURF, MSG, GRAS:
3416   * After a (long ?) discussion on simgrid-devel, we have decided that the
3417     convention we had on units was stupid. That is why it has been decided
3418     to move from (MBits, MFlops, seconds) to (Bits, Flops, seconds).
3419     WARNING: This means that all previous platform files will not work as
3420     such with this version! A warning is issued to ask users to update
3421     their files. [AL]
3422     A conversion script can be found in the contrib module of the CVS, under
3423     the name contrib/platform_generation/surfxml_update.pl [MQ]
3424
3425   MSG,GRAS:
3426   * Bug fix: Processes were started in reverse order, wrt deployment file.
3427     WARNING: if your code relies on this bug, please fix it.    [AL]
3428   * Bug fix: Add a test in MSG_task_execute to stop whenever a task is
3429     being executed on two different locations.                  [AL]
3430   * Bug fix: Failures are now better supported thanks to Derrick's tests
3431     (there was many failure situations I hadn't thought of and that weren't
3432     correctly handled). [AL]
3433   * New function: MSG_host_is_avail indicates you whether a given m_host_t
3434     is up or down. [AL]
3435
3436   GRAS:
3437   * New! a real RPC mechanism, as it ought to be since too long. [MQ]
3438       Exception occurring on server-side are propagated back to client (!).
3439
3440     API CHANGE: the callback changed their prototype. Change:
3441         int my_handler(gras_socket_t expeditor, void *payload_data) {
3442       to:
3443         int my_handler(gras_msg_cb_ctx_t ctx  , void *payload_data) {
3444           gras_socket_t expeditor=gras_msg_cb_ctx_from(ctx);
3445       and you're set.
3446   * New! function: gras_msg_handleall to deal with all messages arriving
3447       within a given period.
3448   * New! function: gras_socket_server_range to get a server socket in a
3449     range of port numbers (ease to avoid port number conflicts) [MQ]
3450   * New! gras processes display their backtrace when they get a SIGUSR1
3451       or when Ctrl-C is pressed. Use Ctrl-C Ctrl-C to exit.
3452       Sweet to debug RL processes [MQ]
3453
3454   AMOK:
3455   * Bandwidth module:
3456     - Do not force experiment sizes to be expressed in kb, or it becomes
3457       impossible to measure the latency this way (needs one byte-long tests)
3458     WARNING: this changes the amok_bw_* function semantic. [MQ]
3459     - Implements the link saturation stuff. [MQ]
3460   * Peer management module:
3461     New! module factorizing code that we wrote over and over [MQ].
3462
3463   XBT:
3464   * New module: cunit (my jUnit implementation in ansi C) [MQ]
3465     - Test units are placed directly into the library code, they get extracted
3466       automatically and placed into the src/testall binary.
3467     - Convert most of the XBT tests to this system.
3468   * New functions: xbt_dynar_getfirst_as() and xbt_dynar_getlast_as() [MQ]
3469   * XML parsing: rewrote parts of flexml to enable multiple xml parsers to
3470     live in the same C code. This required to change a little bit the API
3471     of surfxml parsing but shouldn't be an issue for end-users. [AL]
3472   * New module: sparse graph structure with basic algorithms (this is work
3473     in progress and the API is not considered to be frozen yet). [AL]
3474   * Display more information on backtraces: source line & function names are
3475     now displayed just like valgrind does (rely on addr2line tool) [MQ]
3476   * New function: xbt_backtrace_display(). Sweet while debugging [MQ]
3477   * Reworked a little bit some #include statements to load only required
3478     headers. Some user code that relied on SimGrid to include stdlib or
3479     stdio may need to include it by themselves. [AL]
3480   * Fixed xbt/log.h. A missing SG_BEGIN_DECL prevented compilation with
3481     g++. [AL]
3482   * Renamed xbt_host_t into xbt_peer_t since it betterly describes what I
3483     meant. This breaks the API of AMOK and of xbt/config. Sorry about this,
3484     but I guess that almost nobody used those parts. [MQ]
3485
3486  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr> Fri, 14 Jul 2006 01:32:27 +0200
3487
3488 SimGrid (3.0.1) stable; urgency=low
3489
3490   XBT:
3491   * Unfortunately, I had missed 5 misnamed functions:
3492       xbt_fifo_item_t xbt_fifo_newitem(void);
3493       void xbt_fifo_freeitem(xbt_fifo_item_t);
3494       xbt_fifo_item_t xbt_fifo_getFirstItem(xbt_fifo_t l);
3495       xbt_fifo_item_t xbt_fifo_getNextItem(xbt_fifo_item_t i);
3496       xbt_fifo_item_t xbt_fifo_getPrevItem(xbt_fifo_item_t i);
3497     They're now deprecated. Please use their new versions:
3498       xbt_fifo_item_t xbt_fifo_new_item(void);
3499       void xbt_fifo_free_item(xbt_fifo_item_t);
3500       xbt_fifo_item_t xbt_fifo_get_first_item(xbt_fifo_t l);
3501       xbt_fifo_item_t xbt_fifo_get_next_item(xbt_fifo_item_t i);
3502       xbt_fifo_item_t xbt_fifo_get_prev_item(xbt_fifo_item_t i);
3503     [AL]
3504   * Bugfix: really disconnect fifo items which are remove_item()ed [AL]
3505   * Documentation: xbt_log module unmercifully reworked [MQ]
3506   * Bugfix: there was a problem with the ending of contexts with
3507     the pthread backend. It caused some weird deadlock or behavior
3508     depending on the pthread implementation. [AL]
3509   * Bugfix: get the exceptions raised in the simulator repport where
3510     and why they come from when they are not caught in time [AL, MQ]
3511
3512   SURF:
3513   * Bugfix: Do repport the error when two non-connected hosts try to
3514     exchange data (Thanks to Flavien for stumbling into this one) [AL]
3515
3516   SURF:
3517   * Add additionnal checkings on communications. Assert that two
3518     communicating hosts are connected by a set of links... [AL]
3519
3520   MSG:
3521   * Add additionnal checkings on channel values in communication [AL]
3522   * New: MSG_task_get_source to see on which host a task was generated [HC]
3523   * New: int MSG_task_probe_from_host(int channel, m_host_t host): returns
3524     the number of tasks waiting to be received on channel and sent
3525     by host. [AL]
3526   * New: MSG_error_t MSG_task_get_from_host(m_task_t * task, int channel, m_host_t host);
3527     waits for the first task coming from a given host.. [AL]
3528
3529   GRAS new functionnalities: [MQ]
3530   * Enhance the parsing macro to allow the size of multidimentional objects
3531     to be given thru annotations.
3532   * New example (and documentation): Matrix Multiplication a la RPC
3533     (as when I was young!) and fix a bunch of bugs found on the way.
3534
3535   GRAS performance improvements: [MQ]
3536   [DataDesc]
3537   * Reduce the amount of cbps creation/destruction by making it static to
3538     datadesc_send/recv() and using a (newly created) cbps_reset (based on
3539     dynar_reset ())
3540   [Virtu]
3541   * Change libdata to a set so that we can search for stuff by ID (and thus
3542     reduce the insane amount of dict lookups)
3543
3544   [Transport]
3545   * Actually implement gras_datadesc_copy() so that we don't have to mimick
3546     RL communication on top of SG since it's so uneffective.
3547     It may also be used for inter-thread communication in RL, one day.
3548   * Use gras_datadesc_copy() to exchange messages on top of SG
3549     Allows to:
3550     - improve message exchange performance on top of SG
3551     - deprecate transport_plugin_sg.c:gras_trp_sg_chunk_send() & recv()
3552   * Don't exchange on the network the size of the used part of buffer,
3553     instead, specify the possible buffer size to read().
3554     Advantages:
3555      - reduces the amount of read/write calls (one pair per exchange)
3556      - reduces the amount of exchanged data (the size)
3557      - allows to retrieve all arrived data on receiver side, if we don't need
3558        it right now (subsequent read will peek the buffer)
3559      - allows the receiver to proceed with the beginning of the stream before
3560        everything is arrived
3561      - make it possible to build an iov transport (using readv/writev)
3562     Extra difficulty:
3563      - take care of the data with non-stable storage (like stacked data),
3564        and bufferize them.
3565   * If possible, TCP send uses vector I/O (when writev() is here)
3566      - Don't use it for receive since we send data sizes and data on the
3567        same stream, so we wouldn't be able to chain large amount of chunks
3568        before having to flush the stuff to read the size.
3569   * Rework the transport plugin mechanism to simplify it and reduce the
3570     amount of pointer dereferencement when searching for the right function
3571     to use.
3572
3573   * I guess that now, we do almost as few system calls as possible while
3574     doing as few data copy as possible.
3575
3576     To improve it further, we could try to send all the sizes first and then
3577     all the data (to use iov on receiving size), but it's only a partial
3578     solution: when you have 2 dimensional data, the sizes of the second
3579     dimension is data of the first dimension, so you need 3 streams.
3580
3581     I'm not sure the potential performance gains justify the coding burden.
3582
3583  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>  Fri, 21 Oct 2005 14:42:20 +0200
3584
3585 SimGrid (3.00) stable; urgency=high
3586
3587  SURF:
3588   * New! Give the possibility to hijack the surf parser and thus bypass
3589     MSG_create_environment and MSG_launch_application. Have a look at
3590     examples/msg/msg_test_surfxml_bypassed.c to see how it can be done.
3591
3592  -- Arnaud Legrand <simgrid-devel@lists.gforge.inria.fr>  Sat, 20 Aug 2005 23:25:25 -0700
3593
3594 SimGrid (2.96) unstable; urgency=low
3595
3596   AKA SimGrid 3 rc 2.
3597
3598   XBT:
3599   * New! Exception handling with setjmp or such (code from OSSP ex) [MQ]
3600     This deprecates the xbt_error_t mechanisms.
3601     It modifies (simplifies) all XBT and GRAS API.
3602     MSG API keeps unchanged (exceptions raised by XBT are caught from
3603      within MSG and masked with existing error handling facilities)
3604
3605   SURF:
3606   * New! Add a FATPIPE model. [AL]
3607   * New! Add a parallel task model. [AL]
3608   * New! Add automatically a loopback interface (in the default
3609     network model) if none was precised.
3610
3611   MSG
3612   * Bugfix: MSG_process_resume now works with the current running process.
3613     [AL]
3614   * New! Add MSG_parallel_task_create and MSG_parallel_task_execute. [AL]
3615   * Modification of MSG_task_get_compute_duration. Once a task has been
3616     processed, the value returned by this function is now equal to 0. [AL]
3617   * New! Add double MSG_task_get_remaining_computation(m_task_t task) and
3618     MSG_error_t MSG_task_cancel(m_task_t task). Add a state
3619     (MSG_TASK_CANCELLED) to MSG_error_t corresponding to the cancelation
3620     of a m_task. For now, MSG_task_cancel only works with computation
3621     tasks. [AL]
3622   * New! Add double MSG_get_host_speed(m_host_t h) that returns the speed
3623     of the processor (in Mflop/s) regardless of the current load on the
3624     machine. [AL]
3625   * API Change: use proper naming convention for MSG_getClock and
3626     MSG_process_isSuspended: MSG_get_clock and MSG_process_is_suspended.
3627     [AL]
3628   * New! Add void MSG_task_set_priority(m_task_t task, double priority).
3629     This function changes the priority of a computation task. This priority
3630     doesn't affect the transfer rate. A priority of 2 will make a task
3631     receive two times more cpu power than the other ones. This function
3632     has been added to suit the needs of Nguyen The Loc and hasn't been that
3633     much tested yet. So if it fails, please report it and send me your code.
3634     [AL]
3635   * API Change: removed all functions and types that were marked "deprecated"
3636     since many months. Renamed MSG_global_init_args to MSG_global_init.
3637
3638  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>  Mon,  8 Aug 2005 17:58:47 -0700
3639
3640 SimGrid (2.95) unstable; urgency=low
3641
3642   XBT
3643   * Steal some nice code to GNU pth to fix context detection and usage [AL]
3644   * Cleanup in the xbt_config API; add configuration callbacks. [MQ]
3645   * Cleanup in the initialization API: the unused "defaultlog" is dead. [MQ]
3646
3647   SURF
3648   * Bugfix: Allow absolute paths for platform description files [MQ]
3649   * Bugfix: do free the variables after use. Leads to drastic performance
3650     improvement [AL]
3651   * Implement max_duration (ie, timeouts) on resources [AL]
3652
3653   MSG
3654   * Implement MSG_config to configure MSG at runtime. xbt_cfg test on a real
3655     case ;) [MQ]
3656   * Implement MSG_channel_select_from() to help GRAS now that SURF provide
3657     the needed support (timeouts) [AL]
3658
3659   GRAS (new features)
3660   * Implement measurement sockets. You can now get the bandwidth between two
3661     hosts thanks to AMOK (see below). [MQ]
3662   * gras_datadesc_dynar() builds a dynar type descriptor, allowing to send
3663     dynar over the network (yeah) [MQ]
3664   * Real (even if simplistic) implementation of gras_os_myname() on RL [MQ]
3665   * simple/static token-ring example. [Alexandre Colucci and MQ]
3666   * Use MSG_channel_select_from() and remove the *slow* hack we had to put
3667     in place before [MQ]
3668
3669   GRAS (bug fixes)
3670   * Differentiate the types "char[22]" and "unsigned char[22]" in automatic
3671     type parsing. "short" and "long" modifiers were also ignored; other
3672     modifier (such as reference level) are still ignored. [MQ]
3673   * Embeed the buffer size within the buffer itself on SG. [MQ]
3674     That way, send() are atomic and cannot get intermixed anymore (at least
3675     the ones which are less than 100k; bigger messages still have the issue)
3676   * Array size pushed by the field, not by the field type (or each
3677     and every long int will push stuff to the cbps) [MQ]
3678   * use select() to sleep since it allows to portably sleep less than one
3679     second. [MQ]
3680
3681   GRAS (minor cleanups)
3682   * <project>.Makefile.local (generated from gras_stub_generator) |MQ]:
3683     - Do clean .o files
3684     - Compile with -g
3685   * Type Callbacks now receive the gras_datadesc_type_t they work on as argument.
3686   * type category 'ignored' killed as it was never used and were difficult
3687     to transmit.
3688   * whether a type can cycle or not is now a flag, leaving room for more
3689     flags (as "ignored", if we feel the need one day ;)
3690   * Rename raw sockets to measurement sockets since "raw" has another
3691     meaning in networking community.
3692
3693   AMOK
3694   * Advanced Metacomputing Overlay Kit introduction. It is based over GRAS
3695     and offers features not belonging to GRAS but that most applications
3696     need. One day, it may be a set of plugins loadable at runtime.
3697   * New module: bandwidth
3698     bandwidth measurement between arbitrary nodes running this module. [MQ]
3699
3700  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>  Thu, 30 Jun 2005 16:29:20 -0700
3701
3702 SimGrid (2.94) unstable; urgency=low
3703
3704   The first beta release of SimGrid 3 !
3705
3706   >>>Arnaud<<<
3707   (documentation)
3708   * Update the main page and the FAQ. Adding references to gforge.
3709
3710   (gras)
3711   * Add a gras_os_getpid function.
3712
3713   (msg)
3714   * Add MSG_task_get_compute_duration() and MSG_task_get_data_size()
3715   * Extend the logs so that they also print PID, hostname, date, ... if
3716     available.
3717   * Convert the MSG example to the use of xbt_logs instead of PRINT_MESSAGE,
3718     and kill the old version which were in testsuite/
3719   * Rewrite tools/MSG_visualization/colorize.pl for using with logs instead
3720     of PRINT_MESSAGE
3721
3722   (xbt)
3723   * Add xbt_os_time(). As the rest of xbt/portability, this is not public
3724     for users. Instead, each programming environment (GRAS, MSG,...) use it
3725     when needed to provide such a feature to users.
3726     Don't shortcut the mechanism or you will also shortcut the virtualization
3727     you need on the simulator.
3728
3729   >>>Martin<<<
3730   (infrastructure)
3731   * Cleanups in configury with regard to compile optimization/warning flags.
3732     Also add -fno-loop-optimize to any powerpc since it's the optimization
3733     killing gcc (< 3.4.0).
3734   * Doxygen cleanups: move MSG examples, kill the second Doxygen phase
3735     needed by MSG examples complications
3736   * Borrow configury beautifications from PHP
3737
3738   (xbt)
3739   * Bugfix: XBT_LOG_NEW_DEFAULT_CATEGORY now compiles without compiler
3740     warning (thanks loris for stumbling into this one).
3741   * Bugfix: stop loading private headers (gras_config.h) from the public
3742     ones (xbt/swag.h).
3743
3744   (gras)
3745   * Change SIMGRID_INSTALL_PATH to GRAS_ROOT in Makefiles generated for user.
3746   * Rename gras_get_my_fqdn to gras_os_myname and implement it in the simulator
3747     RL would imply a DNS resolver, which is *hard* to do in a portable way
3748     (and therefore delayed).
3749   * Implement a real timer mechanism and use it in timing macros. This allows
3750     to avoid rounding errors and get a 0.000005 sec precision in timing
3751     macros. While I was at it, various cleanups:
3752      - allow to declare more than one timed section per file (fix a stupid bug)
3753      - move some private declaration to the right place
3754      - merge conditional execution and timing macros into emulation module
3755      - document the module
3756      - make sure the module cleanups its mess on gras_exit
3757   * Documentation improvements:
3758      - (new) how to compile applications using GRAS
3759      - (new) emulation support (timing macros)
3760
3761  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>  Fri, 13 May 2005 10:49:31 +0200
3762
3763 SimGrid (2.93) unstable; urgency=low
3764
3765   Alpha 4 on the path to SimGrid 3 (aka the "neuf-trois" version)
3766
3767   [Arnaud]
3768    - Use Paje properly where used. Still to be sanitized properly.
3769    - Portability fix: Add an implementation of the contexts using pthread
3770
3771   [Martin]
3772   (misc)
3773    - Add xbt_procname(): returns the name of the current process.
3774      Use it to show the current process's name in all logging.
3775   (infrastructure)
3776    - fix detection of older flex version and the reaction, since we do
3777      depend on modern ones (we use lex_destroy)
3778    - Better separation of SG and RL in the libs: remove all simulation code
3779      from libgras. As a result, this lib is now only 200k when stripped.
3780      Some of the xbt modules may also be duplicated (two sets and such) and
3781      should be cleaned/killed before SG3.
3782    - Insist on using xlC on AIX because of weird problems involving gcc there.
3783    - Cleanup the make remote stuff. This is now done by scripts
3784      tools/graspe-{master,slave} (GRAS Platform Expender). This is still
3785      mainly for our private use, but we're working on changing them to user
3786      tools, too.
3787   (gras)
3788    - Bugfix: flush the socket on close only if there is some *output*.
3789    - Bugfix: flush idempotent when there's nothing to send (don't send size=0)
3790   (msg)
3791    - Add MSG_task_get_name. The task names are mainly for debugging purpose,
3792      but anyway.
3793
3794  -- SimGrid team <simgrid2-users@listes.ens-lyon.fr>  Fri,  4 Mar 2005 14:32:37 -0800
3795
3796 SimGrid (2.92) unstable; urgency=low
3797
3798   Alpha 3 on the path to SimGrid 3
3799
3800   [Arnaud]
3801   (gras)
3802    - New! First try of benchmarking macros.
3803    - New! First try so that gras_stub_generator generate deployment and
3804      remote compilation helpers.
3805   (msg)
3806    - Bugfix: Initialization fix in msg_test.
3807
3808   [Martin]
3809   (surf)
3810    - Bugfix: applied patch to lexer so that it doesn't need a huge heap.
3811   (xbt)
3812    - Bugfix: let dicts work with NULL content (_foreach didn't) and cleanups
3813   (gras)
3814    - API Change: gras_os_sleep to take the amount of seconds as a double.
3815      Accepting an int was error prone since it was the only location where
3816      seconds were coded as such. It leaded to damn rounding errors.
3817    - Bugfix: Hard to belive that timers ever worked before this.
3818
3819  -- SimGrid team <simgrid2-users@listes.ens-lyon.fr>  Wed, 23 Feb 2005 22:09:21 +0100
3820
3821 SimGrid (2.91) unstable; urgency=low
3822
3823   Alpha 2 on the path to SimGrid 3
3824
3825   [Arnaud]
3826   (surf)
3827    - Bug fix in the lmm_solver.
3828   (msg)
3829    - New! Interface to Paje (see http://www-id.imag.fr/Logiciels/paje/)
3830      through the function MSG_paje_output.
3831    - New! Introducing two new functions MSG_process_kill() and MSG_process_killall().
3832    - It is possible to bound the rate of a communication in MSG with
3833      MSG_task_put_bounded() (was already in the previous version but I had forgotten
3834      to write it in the changelog).
3835    - Bug fix to let GRAS run on top of MSG until we move it directly on top
3836      of the SURF.
3837
3838   [Martin]
3839   (infrastructure)
3840    - Various cleanups to the autotools stuff
3841    - Begin to move Gras examples to examples/gras/
3842    - Let make distcheck work again (yeah!)
3843   (documentation)
3844    - documentation overhauled using doxygen.
3845      gtk-doc-tools is dead in SimGrid now.
3846    - Automatically extract all existing logging categories, and add the list
3847      to the documentation (long standing one, to say the less)
3848   (gras)
3849    - Cleanup the known architecture table. Reorder the entries to group what
3850      should be, and use a more consistent naming scheme.
3851      (some of the test dataset are still to be regenerated)
3852    - New! Allow library to register globals on each process just as userdata
3853      does.
3854       This is implemented using a xbt_dict and not a xbt_set, so we loose the
3855        lookup time (for now).
3856       Use it in msg and trp.
3857       This cleans a lot the internals and helps enforcing privacy of the
3858        headers between the gras components.
3859    - New! Add a timer mechanism, not unlike cron(8) and at(1).
3860    - Bugfix: gras_os_time was delirious in RL.
3861    - Bugfix: gras_trp_select/RL don't run into the wall when asked to select
3862      onto 0 sockets.
3863    - Reenable GRAS now that it works.
3864
3865  -- Arnaud Legrand <Arnaud.Legrand@imag.fr>  Mon, 14 Feb 2005 14:02:13 -0800
3866
3867 SimGrid (2.90) unstable; urgency=low
3868
3869   Alpha 1 on the path to SimGrid 3
3870
3871   * It is a long time since the last release of SimGrid. I'm sorry about
3872     that but as I had told you, I was rewriting a lot of things. I apologize
3873     to those who had been reporting bugs to me and that I had not answered.
3874     If your bug is still in the new version, please tell me. Here is a
3875     summary of the main changes.
3876
3877   * REVOLUTION 1: The SimGrid project has merged with the GRAS project
3878     lead by Martin Quinson. As a consequence SimGrid gains a lot in
3879     portability, speed, and a lot more but you'll figure it out later.
3880     SimGrid now comprises 3 different projects: MSG, GRAS and SMPI.
3881     I wanted to release the new MSG as soon as possible and I have
3882     broken GRAS, which is the reason why, for now, only MSG is fully
3883     functional. A laconic description of these projects is available
3884     in the documentation.
3885
3886   * REVOLUTION 2: I have removed SG and I am now using a new simulation
3887     kernel optimized for our needs (called SURF but only the developers
3888     should use it). Hence, MSG is now roughly 30 times faster and I think
3889     that by rewriting a little bit MSG, I could event speed it up a little
3890     bit more. Beside the gain in speed, it is also much easier to encode a
3891     new platform model with SURF than it was with SG. More to come...
3892
3893   * REVOLUTION 3: I have tried to change a little as possible the API of
3894     MSG but a few things really had to disappear. The main differences
3895     with the previous version are:
3896        1) no more m_links_t and the corresponding functions. Platforms are
3897          directly read from an XML description and cannot be hard-coded
3898          anymore. The same format is used for application deployment
3899          description. The new format is described in the documentation.
3900          Have a look in tools/platform_generation. There is a tiny script
3901          that converts from the old platform format to the new one. Concerning
3902          the application deployment format, parsing the old one is tricky.
3903          I think most of you should however be able to convert your files.  If
3904          it is really an issue, I can write a C code that does the conversion.
3905          Let me know.
3906        2) the toolbox tbx does not exist anymore. We now have a library
3907           with much more data-structures but without the hash-tables (we have
3908           dictionaries that are much faster).
3909
3910  -- Arnaud Legrand <Arnaud.Legrand@imag.fr>  Mon, 31 Jan 2005 10:45:53 -0800
3911
3912 *****************************************************************************
3913 * Follows the old GRAS changelog. It does not follow the same syntax, but I *
3914 * don't feel like converting the oldies. (Mt)                                *
3915 *****************************************************************************
3916
3917 2005-01-31 Arnaud
3918   Version 2.90: "the long awaited one"
3919   - Finished rewriting and debugging MSG. Rewrote the documentation.
3920   - disable GRAS for now since it needs to be ported to the newest SG
3921
3922 2004-12-16 Martin
3923   - Finish the port to windows (using mingw32 for cross-compile)
3924
3925 2004-11-28 Arnaud
3926   - Main loop and datastructures of SURF. A cpu resource object is
3927     functional. Surf can thus be used to create cpu's with variable
3928     performance on which you can execute some actions.
3929
3930 2004-11-15 Martin Quinson
3931   - Port to ARM. Simply added the alignment and size descriptions. Should
3932     work, but the ARM machines are so slow that I didn't had the opportunity
3933     to 'make check' over there yet.
3934
3935 2004-11-15 Arnaud Legrand
3936   - Trace manager now written. It uses a heap structure and is therefore
3937     expected to be efficient. It may however be speeded up (particularly
3938     when many events occur at the same date) by using red and black
3939     trees. One day maybe...
3940   - Max-min linear system solver written. It uses a sparse matrix
3941     structure taking advantage of its expected use. Most operations are
3942     O(1) and free/calloc are called as few as possible. The computation of
3943     the minimum could however be improved by using a red and black tree
3944     (again ! ;).
3945
3946 2004-11-03 Arnaud Legrand
3947   - Rename every gras_* function that was in xbt/ to its xbt_
3948     counterpart.
3949   - Add a heap and a doubly-linked list to xbt
3950   - Added a dichotomy to the dictionaries. make check works as well before
3951     so I assume that the patch is correct. I do not know however if things
3952     run effectively faster than before now. :)
3953
3954   Inclusion of the SimGrid tree in the GRAS one. The archive is renamed to
3955   SimGrid, and the version number is bumped to 2.x
3956
3957 2004-10-29 Martin Quinson
3958   - Introduction of the remote errors.
3959     They are the result of a RMI/RPC on the remote machine.
3960     ErrCodes being scalar values, you can't get the host on which those
3961     errors did happen. Extending the error mechanism as in Gnome is possible.
3962     No idea yet whether it is a good idea.
3963
3964 2004-10-28 Martin Quinson
3965   - Interface revolution: the Starred Structure Eradication.
3966     I used to do typedef struct {} toto_t; and then handle *toto_t.
3967     Arnaud (and Oli) didn't like it, and I surrendered. Now, you have:
3968       - ???_t is a valid type (builded with typedef)
3969       - s_toto_t is a structure (access to fields with .)
3970       - s_toto   is a structure needing 'struct' keyword to be used
3971       - e_toto_t is an enum
3972       -   toto_t is an 'object' (struct*)
3973     Example:
3974       typedef struct s_toto {} s_toto_t, *toto_t;
3975       typedef enum {} e_toto_t;
3976     Moreover, only toto_t (and e_toto_t) are public. The rest (mainly
3977      s_toto_t) is private.
3978
3979   - While I was at it, all gras_<obj>_free() functions want a gras_<obj>_t*
3980     so that it can set the variable to NULL. It was so for dicts and sets,
3981     it changed for dynars.
3982
3983   - Fix a bunch of memleaks in dict_remove
3984   - Fix a bug in sg/server_socket opening: it failed all the time.
3985
3986 2004-10-07 Martin Quinson
3987   - Speed up dynar lookup operation a bit.
3988
3989     gras_dynar_get is dead.
3990
3991     Now, you can choose between gras_dynar_get_cpy (the old gras_dynar_get
3992     but should be avoided for efficiency reasons) and gras_dynar_get_ptr
3993     (which gives you the address of the stored data).
3994
3995     gras_dynar_get_as is an helpful macro which allows you to retrieve a
3996     copy of the data using an affectation to do the job and not a memcpy.
3997
3998     int toto = gras_dynar_get_as(dyn,0,int); rewrites itself to
3999     int toto = *(int*)gras_dynar_get_ptr(dyn,0);
4000
4001     It does not really speedup the dynar test because they are
4002     setting elements all the time (and look them seldom). But the dict does
4003     far more lookup than setting.
4004
4005     So, this brings the dict_crash test from ~33s to ~25s (200000 elms).
4006
4007 2004-10-05 Martin Quinson
4008   - Allow to (en/dis)able the cycle detection at run time.
4009
4010     Whether we should check for cycle or not is now a property of each
4011     datatype. When you think there may be some cycle, use datadesc_cycle_set.
4012     datadesc_cycle_unset allow to remove this property when previously set.
4013
4014     Note that the cycle detection is off by default since it impacts the
4015     performance. Watch the data you feed GRAS with ;)
4016
4017     This property is hereditary. Any element embedded in a structure having it
4018     set have it set for the time of this data exchange.
4019
4020     You should set it both on sender and receiver side. If you don't set it on
4021     sender side, it will enter an endless loop. If you forget on receiver
4022     side, the cycles won't be recreated after communication.
4023
4024   - Header reorganization.
4025     Kill gras_private.h, each submodule must load the headers it needs.
4026
4027 2004-10-04 Martin Quinson
4028   - Interface revolution: do not try to survive to malloc failure.
4029
4030     Now, gras_malloc and friends call gras_abort() on failure.
4031     As a conclusion, malloc_error is not a valid error anymore, and all
4032       functions for which it was the only gras_error_t return value are
4033       changed. They now return void, or there result directly.
4034     This simplify the API a lot.
4035
4036 2004-09-29 Martin Quinson
4037   - Re-enable raw sockets.
4038     Created by gras_socket_{client,server}_ext;
4039     Used with gras_raw_{send,recv}
4040     No select possible.
4041
4042     It should allow to kill the last bits of gras first version soon.
4043
4044     This is not completely satisfactory yet (duplicate code with
4045      chunk_{send,recv}; a bit out of the plugin mechanism), but it should
4046      work.
4047
4048   - Simplify transport plugin (internal) interface by not passing any
4049     argument to _server and _client, but embedding them in the socket
4050     struct directly.
4051
4052 2004-09-28 Martin Quinson
4053   - Finish the port to AIX.
4054     autoconf was my problem (segfault within the malloc replacement
4055     function. No idea why)
4056
4057 2004-09-16 Martin Quinson
4058   - Fix some size_t madness on 64bit architectures.
4059
4060 2004-09-08 Martin Quinson
4061   - Reduce the number of system headers loaded, overload some more system
4062     calls (such as malloc to cast the result of the system one, and work
4063     properly on AIX)
4064   - Fix and reintroduce the config support
4065
4066 2004-09-07 Martin Quinson
4067   - Source code reorganization to allow Arnaud to surf all over there.
4068   - Allow to document the logging categories.
4069   - Remove all uppercase from logging categories and useless cleanup in names.
4070
4071 2004-08-18 Martin Quinson
4072   Version 0.6.2 (protocol not changed; API changed)
4073   - Interface cleanup: gras_msgtype_by_name returns the type (instead of a
4074      gras_error_t), and NULL when not found. Functions expecting a msgtype
4075      as argument (msg_wait; msg_send) deal with NULL argument by providing a
4076      hopefully usefull message.
4077   - Portability to prehistoric sparcs again
4078
4079 2004-08-17 Martin Quinson
4080   Version 0.6.1 (protocol not changed; ABI not changed)
4081   - prealloc some buffers to speed things up
4082
4083 2004-08-11 Martin Quinson
4084   Version 0.6 (protocol not changed; ABI expended)
4085   - The parsing macro can deal with the references, provided that you add
4086     the relevant annotations (using GRAS_ANNOTE(size,field_name))
4087
4088 2004-08-09 Martin Quinson
4089   Version 0.5 (protocol not changed; ABI changed)
4090   - Allow to off turn the cycle detection code in data exchange at
4091     compilation time. It should be at run time, but I'm short of time (and
4092     the config stuff is still broken). That way, we keep dict out of the
4093     critical path, which is good because the performance is poor:
4094      - search not dichotomial yet
4095      - dynar give no way to access their content and memcpy everytime
4096   - In composed data description (struct, ref and so on), stop foolness of
4097     keeping the subtype's ID, but store the type itself. This keeps sets out
4098     of the critical path, which is good since they rely on dynar and
4099     dictionaries. The only loose of that is that we cannot detect the
4100     redeclaration of a structure/union with another content (but I'm not sure
4101     the code detected well this error before anyway). We still can detect
4102     the redefinition discrepancy for the other types.
4103   - Use a whole bunch of optimisation flags (plus -fno-strict-aliasing since
4104     it breaks the code because of type-punning used all over the place).
4105     This breaks on all non-gcc architectures (for now).
4106
4107   All those changes (plus the buffer of last time) allow me to gain 2 order
4108   of magnitude on cruel tests consisting of 800000 array of integers on two
4109   level of a hierarchical structure (200 secondes -> 4 secondes)
4110
4111   API change:
4112     - the selector of reference must now return the type it points to, not
4113       the ID of this type.
4114
4115 2004-08-06 Martin Quinson
4116   Version 0.4 (protocol changed; ABI not changed)
4117   - Allow to pass --gras-log argument to processes in simulation mode. Really.
4118   - New debugging level: trace (under debug) to see effect of GRAS_IN/OUT
4119   - Implement a buffer transport, and use it by default (it relies on tcp in
4120      real life and on sg in simulation).
4121     That's a bit hackish since I had a new field to the structure to store
4122      its data without interfering with the subtype ones. Inheritance
4123      is tricky in C. And that's a kind of reverse inheritance with one class
4124      derivating two classes. Or maybe a game with java interfaces. Anyway,
4125      that's damn hard in C (at least).
4126     Moreover, I got tired while trying to ensure plugin separation and
4127      genericity in SG mode. MSG wants me to do weird things, so let's go for
4128      cruel hacks (temporarily of course ;).
4129      See comment in transport_private.h:71
4130   - do not include all the _interface headers in private but in the files
4131     which really need them (to cut the compilation time when they are
4132     modified)
4133
4134 2004-07-26 Martin Quinson
4135   Version 0.3 (protocol not changed; ABI changed)
4136   - Major overhault of the datadesc interface to simplify it:
4137     - shorted the function names:
4138       s/gras_datadesc_declare_struct/gras_datadesc_struct/ and so on
4139     - add a trivial way to push/pop integers into the cbps without malloc.
4140       This allows to make really generic sub_type description, which simply
4141         pop their size of the stack.
4142     - add a function gras_datadesc_ref_pop_arr() which does what users want
4143       most of the time: Declare a dynamic array (which pops its size of the
4144       stack) and declare a reference to it. Poor name, but anyway.
4145     - kill the post-send callback, add a post-receive one
4146
4147 2004-07-23 Martin Quinson
4148   Version 0.2 (protocol changed; ABI changed)
4149   - add some testing for cpbs in the test cases, and fix some more bugs.
4150     This invalidate again the little64 data file, since I cannot regenerate
4151     it myself.
4152   - remove an awfull optimization in the logging stuff, allowing me to:
4153     - understand it again
4154     - learn gcc how to check that the argument match the provided format
4155     - fix all errors revealed by gcc after that
4156   - internal keys of dict are not \0 terminated. Deal with it properly in
4157     loggings instead of segfaulting when the user want to see the logs :-/
4158
4159 2004-07-22 Martin Quinson
4160   - Fix some stupid bug preventing cbps (callback postit) from working
4161
4162 2004-07-21 Martin Quinson
4163   - Some documentation cleanups
4164   - remove the useless last argument of msgtype_declare
4165   - rename the Virtu functions to fit into the 'os' namespace
4166   - move headers src/include -> src/include/gras/ and stop fooling with
4167     gras -> . symbolic link
4168   - make distcheck is now successful
4169
4170 2004-07-19 Martin Quinson
4171   Version 0.1.1
4172   - Build shared library also
4173   - Install html doc to the right location
4174   - stop removing maintainer files in make clean
4175   - build tests only on make check
4176
4177 2004-07-13 Martin Quinson
4178   version 0.1
4179   - No major issue in previous version => change versioning schema
4180   - Re-enable little64 convertion test now that Abdou kindly regenerated the
4181     corresponding dataset.
4182
4183 2004-07-11 Martin Quinson
4184   version 0.0.4
4185   - Get it working with any kind of structure (we can compute the padding
4186     bytes remotely for all the architectures I have access to)
4187   - Implement the structure parsing macro (still not quite robust/complete)
4188   - Improvement to the remote testing toysuite
4189
4190 2004-07-10 Martin Quinson
4191  [autoconf mechanism]
4192   - get ride of a bunch of deprecated macros
4193   - actually run the test for two-compliment, not only compile it :-/
4194   - test whether the structures get packed (and bail out if yes. Damn.
4195     Alignment is a serious matter)
4196   - test whether the structures get compacted (but respecting the alignment
4197     constraints of each types)
4198   - test whether the array fields of structures can straddle alignment boundaries
4199  [base]
4200   - Damnit, double are bigger than float (typo in creation of 'double' datadesc)
4201     (took me 2 hours to find that bug, looking at the wrong place)
4202   - Add gras_datadesc_declare_{union,struct}_close(). They must be used
4203     before sending/receiving and are used to compute the offsets of fields
4204   - Given that padding size depend even on compiler options, keep track of
4205     alignment and aligned_size only for the current architecture. Not a big
4206     deal since we send structure fields one after the other (seems
4207     reasonable).
4208   - Add the datastructure used for IEEE paper by the PBIO guys to the test
4209     program, let it work on linux/gcc/little32. portability todo.
4210
4211 2004-07-08 Martin Quinson
4212   - import and improve remote compilation support from FAST
4213   - make sure make check works on half a dozen of machines out there
4214
4215 2004-07-07 Martin Quinson
4216  Let's say it's version 0.0.3 ;)
4217   - Implement conversions (yuhu!)
4218   - Let it work on solaris (beside conversion, of course)
4219   - Stupid me, using rand() to generate the conversion datatests in not wise.
4220
4221 2004-07-06 Martin Quinson
4222   - Let make dist work, since I'm gonna need it to compile on remote hosts
4223   - Let Tests/datadesc_usage write the architecture on which the file was
4224     generated as first byte.
4225   - Add PowerPC (being also IRIX64), SPARC (also power4) and ALPHA
4226     architecture descriptions.
4227   - Add datadesc_usage.{i386,ppc,sparc} files being the result of execution
4228     on those architectures.
4229   - Optimization: send/recv array of scalar in one shoot
4230
4231 2004-07-05 Martin Quinson
4232   - YEAH! GRAS/SG and GRAS/RL are both able to run the ping example !
4233
4234   - Plug a whole bunch of memleaks
4235   - each process now have to call gras_{init,exit}. One day, their log
4236     settings will be separated
4237   - Continue the code factorisation between SG, RL and common in Transport.
4238
4239 2004-07-04 Martin Quinson
4240  [Transport]
4241   - Redistribution between SG and RL.
4242     We wanna have to accept in SG, so move accepted related parts of RL in
4243     the common part. (more precisely, the dynar of all known sockets is no
4244     more a static in transport.c, but part of the process_data)
4245  [Core/module.c]
4246  [gras_stub_generator]
4247   - Bug fix: Do call gras_process_init from gras_init (wasnt called in RL).
4248
4249 2004-07-03 Martin Quinson
4250   - Create a new log channel tbx containing dict, set, log, dynar (to shut
4251     them all up in one shot)
4252  [DataDesc]
4253   - Fix the ugly case of reference to dynamic array.
4254   - New (semi-public) function gras_datadesc_size to allow the messaging
4255     layer to malloc the needed space for the buffer.
4256  [Transport]
4257   - gras_socket_close now expect the socket to close (and not its address to
4258     put NULL in it after it). This is because the socket passed to handlers
4259     is one of their argument (=> not writable).
4260  [Messaging]
4261   - propagate the interface cleanup from last week in datadesc, ie remove a
4262     superfluous level of indirection. User pass adress of variable
4263     containing data (both when sending and receiving), and not of a variable
4264     being a pointer to the data. Let's say that I like it better ;)
4265       The price for that is constructs like "int msg=*(int*)payload" in
4266     handlers, but it's a fine price, IMHO.
4267  [examples/ping]
4268   - Let it work in RL (yuhu)
4269
4270 2004-06-21 Martin Quinson
4271  [Transport]
4272    - porting SG plugin and SG select to new standards (works almost).
4273    - plug memleaks and fix bugs around.
4274
4275  [DataDesc]
4276    - cleanup the prototype of data recv and force users to specify when they
4277      want to handle references to objects. Test case working even for cycles.
4278    - plug memleaks. Valgrind is perfectly ok with this.
4279
4280 2004-06-12 Martin Quinson
4281  [Transport]
4282    - cleanup the separation between plugin and main code in plugin creation
4283
4284 2004-06-11 Martin Quinson
4285  [Transport]
4286    - Reput hook for raw sockets, needed for BW experiments
4287    - kill a few lines of dead code
4288  [Data description] Interface cleanup
4289    - gras_datadesc_by_name returns the searched type or NULL.
4290      That way, no variable is needed to use a type desc once, which makes
4291       the code clearer.
4292    - gras_datadesc_declare_[struct|union]_append_name is removed. The last
4293       two parameters were strings (field name, type name), leading to
4294       common errors.
4295  [Dicos] Interface cleanup
4296    - gras_dico_retrieve -> gras_dico_get ; gras_dico_insert -> gras_dico_set
4297      This is consistant with the dynar API.
4298
4299 2004-04-21 Martin Quinson
4300  [Messaging]
4301    - Porting to new standards.
4302  [Data description]
4303    - interface cleanup.
4304      There is no bag anymore, no need to take extra provision to mask the
4305        pointers behind "ID".
4306      Better splitup of functions between files create/exchange/convert.
4307        This is still a bit artificial since convert and receive are so
4308        interleaved, but anyway.
4309  [Virtu(process)]
4310    - add a queued message list to procdata (the ones not matching criteria
4311      in msg_wait)
4312    - factorize some more code between SG and RL wrt procdata
4313  [Tests]
4314    - use gras_exit in example to track memleaks
4315    - get rid of gs_example now that GS is properly integrated into gras
4316    - update run_test to integrate the latest tests (datadesc)
4317  [Logging]
4318    - rename WARNINGn macros to WARNn since it prooved error-prone
4319
4320 2004-04-19 Martin Quinson
4321  [Data description]
4322    - register init/exit functions within gras module mechanism
4323    - send/receive function.
4324    Convertion is not implemented, but short-cutted if not needed.
4325    struct/array elements are sent one by one (instead of block-wise), but
4326      nobody really cares (yet). Get a prototype before optimizing.
4327    - tests (using a file socket) for DD send/receive on:
4328      - base types: int, float
4329      - array: fixed size, string (ie ref to dynamic string)
4330      - structure: homogeneous, heterogeneous
4331      - chained list, graph with cycle
4332    Believe it or not, valgrind is not too unhappy with the results. The
4333     cycle happily segfaults, but the others are ok. And I'm sick of pointers
4334     for now.
4335  [Transport]
4336    [File plugin]
4337      - Bugfix when using a filename explicitly (instead of '-')
4338
4339 2004-04-09 Martin Quinson
4340  [Transport plugins]
4341    - factorize more code between RL and SG in socket creation
4342    - Complete the implementation and tests of:
4343      o TCP
4344      o file (only in RL, and mainly for debugging)
4345
4346      I lost 3 days to design a portable address resolver, and then decided
4347        that the prototype mainly have to run on my box.
4348      Addressing portability too early may be like optimizing too early :-/
4349  [Tests]
4350    - use gras_init in the Tests instead of the crappy parse_log_opt
4351      (the latter function is removed)
4352  [Conditional execution]
4353    - New functions: gras_if_RL/gras_if_SG (basic support for this)
4354  [Code reorganisation]
4355   - Get rid of libgrasutils.a since it makes more trouble than it solves.
4356     Build examples against the RL library, since there is no way to disable
4357     its creation for now.
4358
4359 For information, the beginning of coding on GRAS was back in june
4360 2003. I guess that every line has been rewritten at least twice since
4361 then.