Re: [OMPI users] Run a process double

2007-12-02 Thread Brian Budge
Henry - OpenMP and OpenMPI are two different things. OpenMP is a way to automatically (in limited situations) parallelize your code using a threading model. OpenMPI is an MPI implementation. MPI is a message passing standard, which usually parallelizes computation on a process basis. Brian

Re: [OMPI users] Run a process double

2007-11-29 Thread Reuti
Hi, Am 29.11.2007 um 00:02 schrieb Henry Adolfo Lambis Miranda: This is my first post to the mail list. I have installed openmp 1.2.4 over a x_64 AMD double processor with SuSE linux. In principal, the instalation was succefull, with ifort 10.X. But when i run any code ( mpirun -np 2 a.out),

Re: [OMPI users] Run a process double

2007-11-28 Thread Mark Potts
Henry, Apologies ahead of time for any unintended insults, but... Your "a.out" sounds like it is not truly a parallel code. If you submit a hello_world program using OpenMPI's mpirun, you will simply get two copies of "Hello World" printed to the screen. If you want the work shar

Re: [OMPI users] Run a process double

2007-11-28 Thread Damien Hocking
That's what's supposed to happen, it's how MPI works. Process 0 is the head or boss process, and the others are slaves, and execute partially different code even though they're in the same executable. MPI is multi-process, not multi-thread. Damien Henry Adolfo Lambis Miranda wrote: Hi ever