Re: [OMPI users] python, mpi and shell subprocess: orte_error_log

2015-10-09 Thread simona bellavista
2015-10-09 9:40 GMT+02:00 Lisandro Dalcin : > On 8 October 2015 at 14:54, simona bellavista wrote: > > > > >> > >> I cannot figure out how spawn would work with a string-command. I tried > >> MPI.COMM_SELF.Spawn(cmd, args=None,maxproc=4) and it just hangs

Re: [OMPI users] python, mpi and shell subprocess: orte_error_log

2015-10-08 Thread simona bellavista
2015-10-08 12:09 GMT+02:00 simona bellavista : > > > 2015-10-07 14:59 GMT+02:00 Lisandro Dalcin : > >> On 7 October 2015 at 14:54, simona bellavista wrote: >> > I have written a small code in python 2.7 for launching 4 independent >> > processes on the sh

Re: [OMPI users] python, mpi and shell subprocess: orte_error_log

2015-10-08 Thread simona bellavista
2015-10-07 14:59 GMT+02:00 Lisandro Dalcin : > On 7 October 2015 at 14:54, simona bellavista wrote: > > I have written a small code in python 2.7 for launching 4 independent > > processes on the shell viasubprocess, using the library mpi4py. I am > getting > > ORTE_ERROR

[OMPI users] python, mpi and shell subprocess: orte_error_log

2015-10-07 Thread simona bellavista
I have written a small code in python 2.7 for launching 4 independent processes on the shell viasubprocess, using the library mpi4py. I am getting ORTE_ERROR_LOG and I would like to understand where it is happening and why. This is my code: #!/usr/bin/python import subprocess import re import sys

Re: [OMPI users] cross-compiling openmpi-1.8.4 with static linking

2015-02-09 Thread simona bellavista
l, the first thing is that there is no reason to cross compile in this > arrangement. Your target and host are the same, and the configuration won’t > do anything with it. > > Normally you would set host and target. However, like I said, in this case > you are providing the same arg

[OMPI users] cross-compiling openmpi-1.8.4 with static linking

2015-02-08 Thread simona bellavista
I have two systems A (aka Host) and B (aka Target). On A a compiler suite is installed (intel 14.0.2), on B there is no compiler. I want to compile openmpi on A for running it on system B (in particular, I want to use mpirun and mpif90), so I want to have static linking to the intel libraries. Firs