Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
leaks --
[simgrid.git] / src / smpi / BUGS
1
2 ___________________________________________________________________________________________
3 * if the program has a different main() prototype than
4    int main( int argc, char *argv[] )
5   then the compilation smpicc fails : conflicting types for ‘smpi_simulated_main’
6   since smpicc substitutes smpi_simulated_main for the user main() declaration.
7    
8 ___________________________________________________________________________________________
9 * MPI_Alltoallv()
10   samedi 1 août 2009, 10:12:08 (UTC+0200) - genaud
11
12   pass the test 'alltoallv.c' (from mpich2) for many number of processors but shows a segfault 
13   after TEST COMPLETE.
14
15   Program received signal SIGSEGV, Segmentation fault.
16   SIMIX_mutex_lock (mutex=0x657475) at simix/smx_synchro.c:49
17   49    if (mutex->refcount) {
18   (gdb) bt
19   #0  SIMIX_mutex_lock (mutex=0x657475) at simix/smx_synchro.c:49
20   #1  0xb7fc0cb0 in SIMIX_cond_wait (cond=0x9f5eba0, mutex=0x9f5eb78) at simix/smx_synchro.c:196
21   #2  0xb7f473a0 in smpi_sender (argc=0, argv=0x0) at smpi/smpi_sender.c:85
22   #3  0xb7fb8f71 in smx_ctx_sysv_wrapper () at simix/smx_context_sysv.c:247
23   #4  0xb7e032bb in makecontext () from /lib/tls/i686/cmov/libc.so.6
24   #5  0x00000000 in ?? ()
25   (gdb) quit
26
27
28   as soon as to -np > 8 using the plaform/hosts : 
29   ./smpirun -np 9 -platform ../../examples/msg/small_platform.xml -hostfile ../../examples/smpi/hostfile ./alltoallv
30
31 ___________________________________________________________________________________________