Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Version 0.5 (protocol not changed; ABI changed)
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 10 Aug 2004 05:05:17 +0000 (05:05 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 10 Aug 2004 05:05:17 +0000 (05:05 +0000)
commit60f31f9d24bd348ccad2ea99ba96424360b11a92
tree3ca421b8ef754a5555ebac7ff27089cbc06fa07c
parent91a9c7db94f2c7c5706ff63c6098599399080aa1
  Version 0.5 (protocol not changed; ABI changed)
  - Allow to off turn the cycle detection code in data exchange at
    compilation time. It should be at run time, but I'm short of time (and
    the config stuff is still broken). That way, we keep dict of of the
    critical path, which is good because the performance is poor:
     - search not dichotomial yet
     - dynar give no way to access their content and memcpy everytime
  - In composed data description (struct, ref and so on), stop foolness of
    keeping the subtype's ID, but store the type itself. This keeps sets out
    of the critical path, which is good since they rely on dynar and
    dictionnaries. The only loose of that is that we cannot detect the
    redeclaration of a structure/union with another content (but I'm not sure
    the code detected this error well before anyway). We still can detect
    the redefinition discrepancy for the other types.
  - Use a whole bunch of optimisation flags (plus -fno-strict-aliasing since
    it breaks the code because of type-punning used all over the place).
    This breaks on all non-gcc architectures (for now).

  All those changes (plus the buffer of last time) allow me to gain 2 order
  of magnitude on cruel tests consisting of 800000 array of integers on two
  level of a hierarchical structure (200 secondes -> 4 secondes)

  API change:
    - the selector of reference must now return the type it points to, not
      the ID of this type.

git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@375 48e7efb5-ca39-0410-a469-dd3cf9ba447f
21 files changed:
ChangeLog
acmacro/gnome-warnings.m4
configure.ac
cruft/doc/tmpl/comm_datadesc.sgml
cruft/doc/tmpl/tbx_log.sgml
include/gras/datadesc.h
include/gras/log.h
src/gras/DataDesc/datadesc.c
src/gras/DataDesc/datadesc_interface.h
src/gras/DataDesc/datadesc_private.h
src/gras/DataDesc/ddt_convert.c
src/gras/DataDesc/ddt_create.c
src/gras/DataDesc/ddt_exchange.c
src/gras/Makefile.am
src/gras/Msg/msg.c
src/gras/Transport/transport_plugin_buf.c
src/xbt/log_default_appender.c
src/xbt/set.c
testsuite/Makefile.am
testsuite/gras/datadesc_usage.c
testsuite/run_tests.in