[OMPI devel] dummy component warnings
I'm getting these: CC dummy_component.lo dummy_component.c:25: warning: ISO C90 forbids specifying subobject to initialize dummy_component.c:28: warning: ISO C90 forbids specifying subobject to initialize dummy_component.c:29: warning: ISO C90 forbids specifying subobject to initialize dummy_component.c:30: warning: ISO C90 forbids specifying subobject to initialize dummy_component.c:31: warning: ISO C90 forbids specifying subobject to initialize dummy_component.c:33: warning: ISO C90 forbids specifying subobject to initialize dummy_component.c:34: warning: ISO C90 forbids specifying subobject to initialize dummy_component.c:35: warning: ISO C90 forbids specifying subobject to initialize dummy_component.c:37: warning: ISO C90 forbids specifying subobject to initialize dummy_component.c:39: warning: ISO C90 forbids specifying subobject to initialize dummy_component.c: In function ‘component_open’: dummy_component.c:45: warning: unused variable ‘c’ dummy.c:67: warning: ISO C90 forbids specifying subobject to initialize dummy.c:68: warning: ISO C90 forbids specifying subobject to initialize dummy.c:69: warning: ISO C90 forbids specifying subobject to initialize dummy.c:70: warning: ISO C90 forbids specifying subobject to initialize CCLD mca_debugger_dummy.la Did the autoconf tests not get added? -- Jeff Squyres jsquy...@cisco.com For corporate legal information go to: http://www.cisco.com/web/about/doing_business/legal/cri/
Re: [OMPI devel] dummy component warnings
No, they didn't get added (adding them now). I didn't get a chance to add them over the weekend. -Nathan On Mon, 24 Jan 2011, Jeff Squyres wrote: I'm getting these: CC dummy_component.lo dummy_component.c:25: warning: ISO C90 forbids specifying subobject to initialize dummy_component.c:28: warning: ISO C90 forbids specifying subobject to initialize dummy_component.c:29: warning: ISO C90 forbids specifying subobject to initialize dummy_component.c:30: warning: ISO C90 forbids specifying subobject to initialize dummy_component.c:31: warning: ISO C90 forbids specifying subobject to initialize dummy_component.c:33: warning: ISO C90 forbids specifying subobject to initialize dummy_component.c:34: warning: ISO C90 forbids specifying subobject to initialize dummy_component.c:35: warning: ISO C90 forbids specifying subobject to initialize dummy_component.c:37: warning: ISO C90 forbids specifying subobject to initialize dummy_component.c:39: warning: ISO C90 forbids specifying subobject to initialize dummy_component.c: In function ‘component_open’: dummy_component.c:45: warning: unused variable ‘c’ dummy.c:67: warning: ISO C90 forbids specifying subobject to initialize dummy.c:68: warning: ISO C90 forbids specifying subobject to initialize dummy.c:69: warning: ISO C90 forbids specifying subobject to initialize dummy.c:70: warning: ISO C90 forbids specifying subobject to initialize CCLD mca_debugger_dummy.la Did the autoconf tests not get added? -- Jeff Squyres jsquy...@cisco.com For corporate legal information go to: http://www.cisco.com/web/about/doing_business/legal/cri/ ___ devel mailing list de...@open-mpi.org http://www.open-mpi.org/mailman/listinfo.cgi/devel
[OMPI devel] OMPI-MIGRATE error
Hello @ll I've got a problem when i try to use the ompi-migrate command. What i'm doing is execute for example the next application in one node of a cluster (both process wil run on the same node): *mpirun -np 2 -am ft-enable-cr ./whoami 10 10* Then in the same node i try to migrate the processes to another node: *ompi-migrate -x node9 -t node3 14914* * * And then i get this message: *[clus9:15620] *** Process received signal *[clus9:15620] Signal: Segmentation fault (11)* *[clus9:15620] Signal code: Address not mapped (1)* *[clus9:15620] Failing at address: (nil)* *[clus9:15620] [ 0] /lib64/libpthread.so.0 [0x2c0b8d40]* *[clus9:15620] *** End of error message *Segmentation fault* * * I assume that maybe there is something wrong with the thread level, but i have configured the open-mpi like this: *../configure --prefix=/home/hmeyer/desarrollo/ompi-code/binarios/ --enable-debug --enable-debug-symbols --enable-trace --with-ft=cr --disable-ipv6 --enable-opal-multi-threads --enable-ft-thread --without-hwloc --disable-vt --with-blcr=/soft/blcr-0.8.2/ --with-blcr-libdir=/soft/blcr-0.8.2/lib/* * * The checkpoint and restart works fine, but when i restore an application that has more than one process, this one is restored and executed until the last line before MPI_FINALIZE(), but the processes never finalize, i assume that they never call the MPI_FINALIZE(), but with one process ompi-checkpoint and ompi-restart work great. Best regards. Hugo Meyer