Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
rename host callbacks
[simgrid.git] / doc / doxygen / module-smpi.doc
index 27d96e5e71663269d1bf51490c11403bc2ab15fa..65b0f29d5c06ecd38db3c5b993c711067ee1f798 100644 (file)
@@ -72,7 +72,7 @@ ELF executable has been introduced in SimGrid 3.11. By using the <tt>smpi/
 privatize_global_variableles</tt> option to yes, SMPI will duplicate
 the segments containing the global variables and when needed, will map 
 the right one in memory. This needs ELF executables and mmap on the system
-(Linux and recent BSDs should be compatible). As no copy is involved, 
+(Linux and recent BSDs should be compatible). %As no copy is involved, 
 performance should not be altered (but memory occupation will be higher).
 
 This solution actually works really good for a good number of MPI 
@@ -502,7 +502,7 @@ Example: adding a "pair" version of the Alltoall collective.
 
  - To register the new version of the algorithm, simply add a line to the corresponding macro in src/smpi/colls/cools.h ( add a "COLL_APPLY(action, COLL_ALLTOALL_SIG, pair)" to the COLL_ALLTOALLS macro ). The algorithm should now be compiled and be selected when using --cfg=smpi/alltoall:pair at runtime.
 
- - To add a test for the algorithm inside Simgrid's test suite, juste add the new algorithm name in the ALLTOALL_COLL list found inside buildtools/cmake/AddTests.cmake . When running ctest, a test for the new algorithm should be generated and executed. If it does not pass, please check your code or contact us.
+ - To add a test for the algorithm inside Simgrid's test suite, juste add the new algorithm name in the ALLTOALL_COLL list found inside buildtools/cmake/Tests.cmake . When running ctest, a test for the new algorithm should be generated and executed. If it does not pass, please check your code or contact us.
 
  - Feel free to push this new algorithm to the SMPI repository using Git.