Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
simgrid.git
7 years agoMSG doc tweakings
Martin Quinson [Sat, 21 May 2016 04:08:18 +0000 (06:08 +0200)]
MSG doc tweakings

7 years agoMerge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid
Martin Quinson [Fri, 20 May 2016 18:26:39 +0000 (20:26 +0200)]
Merge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid

7 years ago[CMAKE] Install header files for call-location tracing.
Christian Heinrich [Fri, 20 May 2016 17:26:54 +0000 (19:26 +0200)]
[CMAKE] Install header files for call-location tracing.

7 years ago[TOOLS] Modified generated header to include the path.
Christian Heinrich [Fri, 20 May 2016 17:22:17 +0000 (19:22 +0200)]
[TOOLS] Modified generated header to include the path.

7 years ago[SMPI] Update header files for call-location tracing.
Christian Heinrich [Fri, 20 May 2016 17:21:43 +0000 (19:21 +0200)]
[SMPI] Update header files for call-location tracing.

7 years ago[SMPI] Fix segfaults introduced by 772f8dd3b48f0c9dff20f67a4c2ea1cbbe673f8d
Christian Heinrich [Fri, 20 May 2016 16:54:32 +0000 (18:54 +0200)]
[SMPI] Fix segfaults introduced by 772f8dd3b48f0c9dff20f67a4c2ea1cbbe673f8d

This changeset fixes tests such as msg-trace-masterworker.

7 years agovarious doc cleanups
Martin Quinson [Fri, 20 May 2016 13:48:08 +0000 (15:48 +0200)]
various doc cleanups

7 years agoOnly run doxygen once
Martin Quinson [Fri, 20 May 2016 13:47:46 +0000 (15:47 +0200)]
Only run doxygen once

7 years agoMerge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid
Martin Quinson [Fri, 20 May 2016 13:42:08 +0000 (15:42 +0200)]
Merge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid

7 years agoFAQ: kill a painfully outdated Q&A
Martin Quinson [Thu, 19 May 2016 18:23:01 +0000 (20:23 +0200)]
FAQ: kill a painfully outdated Q&A

7 years ago[CMAKE] Add src/instr/instr_smpi.h to package
Christian Heinrich [Thu, 19 May 2016 18:13:44 +0000 (20:13 +0200)]
[CMAKE] Add src/instr/instr_smpi.h to package

7 years agoRevert "[SMPI] Fix #include in smpi.h"
Christian Heinrich [Thu, 19 May 2016 18:05:23 +0000 (20:05 +0200)]
Revert "[SMPI] Fix #include in smpi.h"

This reverts commit 37a6e2ae6b4a2f84d9819ecff7dc45aad582a29b.

7 years ago[SMPI] Fix #include in smpi.h
Christian Heinrich [Thu, 19 May 2016 18:01:59 +0000 (20:01 +0200)]
[SMPI] Fix #include in smpi.h

7 years agodoc: don't build the full index as doxygen now provides a 'search' box
Martin Quinson [Thu, 19 May 2016 17:34:02 +0000 (19:34 +0200)]
doc: don't build the full index as doxygen now provides a 'search' box

7 years ago[DOC] Add doc for call-location aware simulation.
Christian Heinrich [Thu, 19 May 2016 17:18:06 +0000 (19:18 +0200)]
[DOC] Add doc for call-location aware simulation.

7 years ago[SMPI] Call location: Cleanups.
Christian Heinrich [Fri, 22 Apr 2016 17:33:47 +0000 (19:33 +0200)]
[SMPI] Call location: Cleanups.

7 years ago[SMPI] Introduce variable computation speeds.
Christian Heinrich [Wed, 20 Apr 2016 17:18:44 +0000 (19:18 +0200)]
[SMPI] Introduce variable computation speeds.

This commit introduces the possibility to use a csv file that
contains sections of the code that should be sped up or slowed down
according to the second column in that specific file.

One line could look like this:
exchange_1.f:30:exchange_1.f:130,1.18244559422142

This means that computation time between line numbers 30 and 130 offile exchange_1.f
should be slowed down by a factor of 1.18.

Of course, this only makes sense if computation time is calculated.

Activation via the newly introduced smpi/comp-adjustment-file CLI cfg param:
--cfg=smpi/comp-adjustment-file:/path/to/file.csv

7 years ago[SMPI] Introduce smpi/trace-call-location cfg-switch
Christian Heinrich [Mon, 11 Apr 2016 15:32:09 +0000 (17:32 +0200)]
[SMPI] Introduce smpi/trace-call-location cfg-switch

This switch enables/disables call locations for MPI calls in
traces.

7 years ago[SMPICC] Make call location conditional
Christian Heinrich [Mon, 11 Apr 2016 15:34:16 +0000 (17:34 +0200)]
[SMPICC] Make call location conditional

This commit introduces the -enable-call-location compile-time
switch for smpicc.

7 years ago[SMPIFF] Make call location conditional.
Christian Heinrich [Mon, 11 Apr 2016 13:18:28 +0000 (15:18 +0200)]
[SMPIFF] Make call location conditional.

This commit introduces the -enable-call-location
compile-time switch for smpiff.

7 years ago[SMPI/INSTR] Wrap filenames in traces in quot. marks
Christian Heinrich [Mon, 4 Apr 2016 14:00:19 +0000 (16:00 +0200)]
[SMPI/INSTR] Wrap filenames in traces in quot. marks

7 years ago[SMPI] Modified smpiff.in to enable caller location
Christian Heinrich [Fri, 1 Apr 2016 14:35:16 +0000 (16:35 +0200)]
[SMPI] Modified smpiff.in to enable caller location

This injects pre-processor directives that are then used
to replace MPI calls within the user code.

7 years ago[SMPI] Add caller location to tracefiles
Christian Heinrich [Fri, 1 Apr 2016 13:18:14 +0000 (15:18 +0200)]
[SMPI] Add caller location to tracefiles

Please note that we can't use stack unwinding because that
would make the simulation less faithful, as it introduces
non-neglegible overhead.

This implementation is still subject to change.

7 years ago[SMPI] Added #include private.hpp statements
Christian Heinrich [Thu, 10 Mar 2016 12:27:24 +0000 (13:27 +0100)]
[SMPI] Added #include private.hpp statements

7 years ago[SMPI] Make smpi_container() available via private.h
Christian Heinrich [Mon, 29 Feb 2016 11:50:25 +0000 (12:50 +0100)]
[SMPI] Make smpi_container() available via private.h

7 years ago[SMPI] Add private.hpp for C++ functionality
Christian Heinrich [Mon, 29 Feb 2016 11:40:30 +0000 (12:40 +0100)]
[SMPI] Add private.hpp for C++ functionality

7 years ago[SMPI] Introduce smpi/papi_events option
Christian Heinrich [Wed, 20 Apr 2016 16:29:03 +0000 (18:29 +0200)]
[SMPI] Introduce smpi/papi_events option

7 years ago[SMPI/PAPI] Added cmake switch for SMPI+PAPI
Christian Heinrich [Mon, 29 Feb 2016 09:24:48 +0000 (10:24 +0100)]
[SMPI/PAPI] Added cmake switch for SMPI+PAPI

This commit includes:

- Enable/disable PAPI bindings via ccmake
- The FindPAPI.cmake file
- The #define for C/C++

7 years agofix some doxygen formating problems
Martin Quinson [Thu, 19 May 2016 11:55:23 +0000 (13:55 +0200)]
fix some doxygen formating problems

7 years agodocumentation shuffeling
Martin Quinson [Thu, 19 May 2016 11:33:21 +0000 (13:33 +0200)]
documentation shuffeling

7 years agooutline a page on high-level concepts to describe your platform
Martin Quinson [Thu, 19 May 2016 07:29:33 +0000 (09:29 +0200)]
outline a page on high-level concepts to describe your platform

7 years agodoc: move the 'find an XML example' part into the platform page
Martin Quinson [Thu, 19 May 2016 07:28:58 +0000 (09:28 +0200)]
doc: move the 'find an XML example' part into the platform page

7 years agocompletely rewrite the 'Getting Started' page
Martin Quinson [Thu, 19 May 2016 07:14:45 +0000 (09:14 +0200)]
completely rewrite the 'Getting Started' page

7 years agodoc: kill a useless and unused file
Martin Quinson [Thu, 19 May 2016 04:57:42 +0000 (06:57 +0200)]
doc: kill a useless and unused file

7 years agoSharpen the install documentation
Martin Quinson [Thu, 19 May 2016 04:54:25 +0000 (06:54 +0200)]
Sharpen the install documentation

Nobody likes reading the doc, so get straight to the point.

7 years agoimprove I/O Java examples
Frederic Suter [Tue, 17 May 2016 04:39:25 +0000 (06:39 +0200)]
improve I/O Java examples

7 years agoadd File.seek to Java API
Frederic Suter [Tue, 17 May 2016 04:38:47 +0000 (06:38 +0200)]
add File.seek to Java API

7 years agotrace-simple is now process-create
Frederic Suter [Mon, 16 May 2016 17:57:14 +0000 (19:57 +0200)]
trace-simple is now process-create
  ... that needs a platform at least ;)

7 years agoMerge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid
Martin Quinson [Mon, 16 May 2016 16:46:22 +0000 (18:46 +0200)]
Merge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid

7 years agodon't run some mpich3 fortran tests when there is no privatization
degomme [Mon, 16 May 2016 14:50:40 +0000 (16:50 +0200)]
don't run some mpich3 fortran tests when there is no privatization
We don't provide manual way of privatizing global variables in Fortran anymore.
So on some (BSD) systems, these tests would fail.

7 years agomerge
degomme [Mon, 16 May 2016 10:33:41 +0000 (12:33 +0200)]
merge

7 years agocosmetics
Martin Quinson [Mon, 16 May 2016 06:13:36 +0000 (08:13 +0200)]
cosmetics

In the code, in the comments, in doxygen... Messy code go away!

7 years agodoxygen fixups
Martin Quinson [Mon, 16 May 2016 06:04:03 +0000 (08:04 +0200)]
doxygen fixups

7 years agoMerge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid
Martin Quinson [Mon, 16 May 2016 05:55:59 +0000 (07:55 +0200)]
Merge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid

7 years agoxbt::config: fix doxygen
Martin Quinson [Mon, 16 May 2016 05:54:17 +0000 (07:54 +0200)]
xbt::config: fix doxygen

7 years agodoc example: change trace-simple into process-create
Martin Quinson [Mon, 16 May 2016 05:33:58 +0000 (07:33 +0200)]
doc example: change trace-simple into process-create

trace-simple was really brain dead, and we were missing an explicit
process-create example

7 years agofix one, rename another
Frederic Suter [Mon, 16 May 2016 05:33:40 +0000 (07:33 +0200)]
fix one, rename another

7 years agoMerge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
Frederic Suter [Mon, 16 May 2016 05:27:30 +0000 (07:27 +0200)]
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid

7 years agorename tracing example
Frederic Suter [Mon, 16 May 2016 05:27:03 +0000 (07:27 +0200)]
rename tracing example

7 years agowoops, I commited a local test
Martin Quinson [Mon, 16 May 2016 05:25:11 +0000 (07:25 +0200)]
woops, I commited a local test

7 years agodone reformating the doc of MSG examples. Many examples remain undocumented
Martin Quinson [Mon, 16 May 2016 05:19:44 +0000 (07:19 +0200)]
done reformating the doc of MSG examples. Many examples remain undocumented

7 years agodoc example: actions and apps
Martin Quinson [Mon, 16 May 2016 05:07:37 +0000 (07:07 +0200)]
doc example: actions and apps

7 years agoDoc example: model-based ones + add many TODO
Martin Quinson [Mon, 16 May 2016 04:30:30 +0000 (06:30 +0200)]
Doc example: model-based ones + add many TODO

7 years agoRework the presentation of MSG tracing examples
Martin Quinson [Mon, 16 May 2016 03:46:54 +0000 (05:46 +0200)]
Rework the presentation of MSG tracing examples

7 years agokebab case
Martin Quinson [Sun, 15 May 2016 21:47:10 +0000 (23:47 +0200)]
kebab case

7 years agoFurther reorganize the MSG examples' documentation
Martin Quinson [Sun, 15 May 2016 08:55:29 +0000 (10:55 +0200)]
Further reorganize the MSG examples' documentation

7 years agofix mistakes in script
degomme [Sun, 15 May 2016 13:31:45 +0000 (15:31 +0200)]
fix mistakes in script

7 years agotar xzf fails randomly on netbsd for now, try another method
degomme [Sat, 14 May 2016 00:29:38 +0000 (02:29 +0200)]
tar xzf fails randomly on netbsd for now, try another method

7 years agobetter presentation of the examples in the doc
Martin Quinson [Sat, 14 May 2016 00:03:32 +0000 (02:03 +0200)]
better presentation of the examples in the doc

7 years agodoxygen: Fix 3 out of 23235235235 small formating issues
Martin Quinson [Fri, 13 May 2016 22:25:08 +0000 (00:25 +0200)]
doxygen: Fix 3 out of 23235235235 small formating issues

7 years agoDoc: Kill formating pragma that are unused since 10 years
Martin Quinson [Fri, 13 May 2016 22:06:21 +0000 (00:06 +0200)]
Doc: Kill formating pragma that are unused since 10 years

7 years agoMerge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
Frederic Suter [Sat, 14 May 2016 00:03:00 +0000 (02:03 +0200)]
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid

7 years agocosmetics
Frederic Suter [Sat, 14 May 2016 00:02:11 +0000 (02:02 +0200)]
cosmetics

7 years agorevise CMake doc
Frederic Suter [Sat, 14 May 2016 00:01:46 +0000 (02:01 +0200)]
revise CMake doc

7 years agosilence warnings from boost (only on netbsd..
degomme [Fri, 13 May 2016 21:50:26 +0000 (23:50 +0200)]
silence warnings from boost (only on netbsd..
this happens when we use  boost::intrusive::constant_time_size<false> for virtual machines
If anyone has any idea on how to remove this one... It does not pop on other systems

7 years agoMerge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
Frederic Suter [Fri, 13 May 2016 21:43:17 +0000 (23:43 +0200)]
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid

7 years agosome more forgotten override markers
Martin Quinson [Fri, 13 May 2016 21:39:58 +0000 (23:39 +0200)]
some more forgotten override markers

7 years agoMerge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
Frederic Suter [Fri, 13 May 2016 21:10:11 +0000 (23:10 +0200)]
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid

7 years agotweak the documentation rendering
Martin Quinson [Fri, 13 May 2016 09:48:19 +0000 (11:48 +0200)]
tweak the documentation rendering

7 years agoMerge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
Frederic Suter [Fri, 13 May 2016 19:33:50 +0000 (21:33 +0200)]
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid

7 years agomove text and add all cmake options
Frederic Suter [Fri, 13 May 2016 19:33:16 +0000 (21:33 +0200)]
move text and add all cmake options
 + a few are not explained though

7 years agoDoc improvment
Martin Quinson [Fri, 13 May 2016 04:44:50 +0000 (06:44 +0200)]
Doc improvment

7 years agoreword the doc of the switch feature
Martin Quinson [Fri, 13 May 2016 04:29:34 +0000 (06:29 +0200)]
reword the doc of the switch feature

7 years agodoc: improve section titles
Martin Quinson [Fri, 13 May 2016 04:10:39 +0000 (06:10 +0200)]
doc: improve section titles

7 years agoUse only the C++ dtor for Synchro::Raw
Martin Quinson [Fri, 13 May 2016 01:48:18 +0000 (03:48 +0200)]
Use only the C++ dtor for Synchro::Raw

7 years agoMerge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid
Martin Quinson [Thu, 12 May 2016 21:59:53 +0000 (23:59 +0200)]
Merge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid

7 years agomove some content to the SynchroRaw dtor
Martin Quinson [Thu, 12 May 2016 18:18:30 +0000 (20:18 +0200)]
move some content to the SynchroRaw dtor

7 years agoteshfile: dont sort output
Martin Quinson [Wed, 11 May 2016 18:13:54 +0000 (20:13 +0200)]
teshfile: dont sort output

7 years agoTry to avoid leaking detached comms.
degomme [Thu, 12 May 2016 12:56:38 +0000 (14:56 +0200)]
Try to avoid leaking detached comms.

7 years agokill useless code
Martin Quinson [Wed, 11 May 2016 17:23:31 +0000 (19:23 +0200)]
kill useless code

7 years agomake overring methods as so to please clang
Martin Quinson [Wed, 11 May 2016 16:34:47 +0000 (18:34 +0200)]
make overring methods as so to please clang

7 years ago[mc] Generalize AddressSpace::read<T>() to return a Remote<T>
Gabriel Corona [Tue, 10 May 2016 14:07:41 +0000 (16:07 +0200)]
[mc] Generalize AddressSpace::read<T>() to return a Remote<T>

7 years ago[mc] Fix MC with the class-hierarchification of simgrid::simix::Synchro
Gabriel Corona [Mon, 9 May 2016 10:49:00 +0000 (12:49 +0200)]
[mc] Fix MC with the class-hierarchification of simgrid::simix::Synchro

7 years agorename s4u Async to Activities
Martin Quinson [Wed, 11 May 2016 08:06:33 +0000 (10:06 +0200)]
rename s4u Async to Activities

7 years agoMerge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid
Martin Quinson [Tue, 10 May 2016 20:03:33 +0000 (22:03 +0200)]
Merge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid

7 years agoUse C++ to implement dynamic dispatch
Martin Quinson [Tue, 10 May 2016 10:12:19 +0000 (12:12 +0200)]
Use C++ to implement dynamic dispatch

Have a look at the code of SIMIX_simcall_exit() to understand what
this change is about.

7 years agocosmetics
Martin Quinson [Mon, 9 May 2016 20:25:57 +0000 (22:25 +0200)]
cosmetics

7 years agosimix::Synchro: Factorize the refcounting for child classes
Martin Quinson [Mon, 9 May 2016 20:18:37 +0000 (22:18 +0200)]
simix::Synchro: Factorize the refcounting for child classes

7 years agosimcall_execution_destroy() -> simgrid::simix::Exec::unref()
Martin Quinson [Mon, 9 May 2016 19:53:05 +0000 (21:53 +0200)]
simcall_execution_destroy() -> simgrid::simix::Exec::unref()

Plus cosmetics on my way.

7 years agoSIMIX_comm_destroy() -> simix::Comm::unref()
Martin Quinson [Mon, 9 May 2016 19:17:11 +0000 (21:17 +0200)]
SIMIX_comm_destroy() -> simix::Comm::unref()

7 years agokill 4 more getter simcalls
Martin Quinson [Mon, 9 May 2016 18:45:30 +0000 (20:45 +0200)]
kill 4 more getter simcalls

7 years agosimix::Comm: turn another function into a method
Martin Quinson [Mon, 9 May 2016 18:32:16 +0000 (20:32 +0200)]
simix::Comm: turn another function into a method

7 years agoSIMIX_mbox_get_head() -> simcall_mbox_front()
Martin Quinson [Mon, 9 May 2016 15:51:17 +0000 (17:51 +0200)]
SIMIX_mbox_get_head() -> simcall_mbox_front()

smx_mailbox should be objects. They should be merged into s4u::Mailbox

7 years agombox: kill a getter simcall
Martin Quinson [Mon, 9 May 2016 15:41:01 +0000 (17:41 +0200)]
mbox: kill a getter simcall

7 years agos4u: rename the private implementations as such
Martin Quinson [Mon, 9 May 2016 15:32:31 +0000 (17:32 +0200)]
s4u: rename the private implementations as such

7 years agosimix: change two more getter simcalls into methods
Martin Quinson [Mon, 9 May 2016 15:25:43 +0000 (17:25 +0200)]
simix: change two more getter simcalls into methods

7 years agoFix BoostContext #include
Gabriel Corona [Mon, 9 May 2016 09:05:57 +0000 (11:05 +0200)]
Fix BoostContext #include

7 years agoSIMIX_comm_get_remains() -> simgrid::simix::Comm::remains()
Martin Quinson [Sun, 8 May 2016 19:44:43 +0000 (21:44 +0200)]
SIMIX_comm_get_remains() -> simgrid::simix::Comm::remains()

+ kill that getter simcall, there is no need

7 years agoremove a useless call
Martin Quinson [Sun, 8 May 2016 17:19:19 +0000 (19:19 +0200)]
remove a useless call

7 years agoturn SIMIX_comm_new() into a proper constructor
Martin Quinson [Sun, 8 May 2016 14:01:20 +0000 (16:01 +0200)]
turn SIMIX_comm_new() into a proper constructor