Tagged Questions

Open MPI is an open source implementation of the MPI-2 Message Passing Interface, a library for distributed memory parallel programming.

learn more… | top users | synonyms

5
votes
3answers
6k views

MPICH vs OpenMPI

Can someone elaborate the differences between the OpenMPI and MPICH implementations of MPI ? Which of the two is a better implementation ?
4
votes
2answers
175 views

How do MPI implementations (OpenMPI, MPICH) handle security/authentication

How do OpenMPI and MPICH handle security when I send MPI messages between the processes over TCP/IP sockets? In particular, how do they prevent other users of the same network from connecting to a ...
4
votes
2answers
2k views

Java openmpi

Is there a current Java openmpi implementation. I have programmed in MPI a bit, and I enjoy programming in Java. I have seen this implementation in java, but it seems dated. Is there a more up to ...
3
votes
3answers
57 views

What is the role of 'cluster' software in relation to MPI?

I'm a little confused regarding how a cluster implementation ("Beowulf cluster") relates to a communication protocol such as MPI. What software components are needed to set up a "cluster" using ...
3
votes
1answer
108 views

sending ImageMagick object in openMPI, C++

I have a severe problem in my project. I need to send an image data to another node in the cluster. I read the images with ImageMagick, as like: Image testImage; // read in the file ...
3
votes
3answers
350 views

OpenMPI MPI_Barrier problems

I having some synchronization issues using the OpenMPI implementation of MPI_Barrier: int rank; int nprocs; int rc = MPI_Init(&argc, &argv); if(rc != MPI_SUCCESS) { fprintf(stderr, ...
3
votes
3answers
455 views

OpenMP & MPI explanation

A few minutes ago I stumbled upon some text, which reminded me of something that has been wondering my mind for a while, but I had nowhere to ask. So, in hope this may be the place, where people have ...
3
votes
2answers
174 views

Possible to distribute an MPI (C++) program accross the internet rather than within a LAN cluster?

I've written some MPI code which works flawlessly on large clusters. Each node in the cluster has the same cpu architecture and has access to a networked (i.e. 'common') file system (so that each node ...
3
votes
1answer
608 views

mpirun on os X

Is there a way to run a local mpi job locally on os X leopard(10.5.6) with more than 62 processes. When I run the job with 62 processes, it dies $mpirun -np 62 a.out mpirun noticed that job rank 0 ...
2
votes
1answer
106 views

MPI basics program

Hi I wanted to learn using MPI in C. I am using Codeblocks on Windows 7 I ran this program: #include <stdio.h> #include <mpi.h> void main (int argc, char *argv[]) { int err; err = ...
2
votes
1answer
79 views

Open MPI: how to run exactly 1 process per host

Actually I have 3 questions. Any input is appreciated. Thank you! 1) How to run exactly 1 process on each host? My application uses TBB for multi-threading. Does it mean that I should run exactly 1 ...
2
votes
2answers
114 views

openMPI data type portability

FAQ #20 says: As of v1.1, Open MPI requires that the size of C, C++, and Fortran datatypes be the same on all platforms within a single parallel application with the exception of types ...
2
votes
2answers
66 views

Dynamic nodes in OpenMPI

In MPI, is it possible to add new nodes after it is started? For example, I have 2 computers already running a parallel MPI application. I start another instance of this application on a third ...
2
votes
1answer
209 views

OpenMPI 1.4.3 mpirun hostfile error

I am trying to run a simple MPI program on 4 nodes. I am using OpenMPI 1.4.3 running on Centos 5.5. When I submit the MPIRUN Command with the hostfile/machinefile, I get no output, receive a blank ...
2
votes
1answer
69 views

“MPI_Bcast”er at runtime

How do I do an MPI_Bcast in the case where the broadcaster is decided at runtime? How do I specify the root node in this case? I'm trying to search for a distinct number in an array. If a node finds ...
2
votes
1answer
211 views

Can you transpose array when sending using MPI_Type_create_subarray?

I'm trying to transpose a matrix using MPI in C. Each process has a square submatrix, and I want to send that to the right process (the 'opposite' one on the grid), transposing it as part of the ...
2
votes
1answer
322 views

suggest a Benchmark program to compare MPICH and OpenMPI

I am new to HPC and the task in hand is to do a performance analysis and comparison between MPICH and OpenMPI on a cluster which comprises of IBM servers equipped with dual-core AMD Opteron ...
2
votes
1answer
396 views

Why Do All My Open MPI Processes Have Rank 0?

I'm writing a parallel program using Open MPI. I'm running Snow Leopard 10.6.4, and I installed Open MPI through the homebrew package manager. When I run my program using mpirun -np 8 ./test, every ...
2
votes
1answer
176 views

Parallel programming on a Quad-Core and a VM?

I'm thinking of slowly picking up Parallel Programming. I've seen people use clusters with OpenMPI installed to learn this stuff. I do not have access to a cluster but have a Quad-Core machine. Will I ...
2
votes
4answers
966 views

Test MPI on a cluster

I am learning OpenMPI on a cluster. Here is my first example. I expect the output would show response from different nodes, but they all respond from the same node node062. I just wonder why and how I ...
2
votes
4answers
621 views

How to speed up this problem by MPI

(1). I am wondering how I can speed up the time-consuming computation in the loop of my code below using MPI? int main(int argc, char ** argv) { // some operations f(size); ...
2
votes
1answer
377 views

MPI , Sungrid vs JPPF?

I have a little experience with SungridEngine and MPI (using OpenMPI). Whats the different between these frameworks/API and JPPF?
1
vote
1answer
34 views

Implicit barrier at the end of #pragma for

Friends, I am trying to learn the openMP paradigm. I used the following code to understand the #omp for pragma. int main(void){ int tid; int i; omp_set_num_threads(5); #pragma omp parallel \ ...
1
vote
0answers
85 views

MPI_Barrier doesn't function properly

I wrote the C application below to help me understand MPI, and why MPI_Barrier() isn't functioning in my huge C++ application. However, I was able to reproduce my problem in my huge application with ...
1
vote
3answers
104 views

MPI with thread support and Bcast calls

I was wondering if in an MPI program where you specify that there is thread support, all the threads make an MPI::Bcast call (making shure that in the call, the sender process only possesses one ...
1
vote
1answer
240 views

Building Boost 1.46.1 *with openmpi*?

I would like to build all of the Boost library on Ubuntu 11.04 with gcc 4.5.2. So I went about downloading the tar.bz2 file. I expanded it. I ran bootstrap.sh and noticed it complaining about ...
1
vote
1answer
55 views

Hot plugging an additional node in OpenMPI cluster

Is it possible to hot plug an additional node (host) into a working OpenMPI app? We're talking about production environment where we cannot afford even a 5 second downtime. There are two scenarios I'm ...
1
vote
1answer
238 views

MPI_Isend and MPI_Irecv seem to be causing a deadlock

I'm using non-blocking communication in MPI to send various messages between processes. However, I appear to be getting a deadlock. I have used PADB (see here) to look at the message queues and have ...
1
vote
2answers
298 views

Using mpirun on OS X on one machine

I have trouble using mpirun in single-machine mode on OS X. When running my program using mpirun -np 5 my_program I get the following error output: [...-MacBook-Pro.local:85936] [0,0,0] ...
1
vote
1answer
230 views

Netbeans is failing to build (How do I point it to my new Open MPI library?)

I am doing C development using Netbeans on OS X and my project fails to build, stating "...this installation of Open MPI was not compiled with Fortran 90 support" I have installed a newer gcc and ...
1
vote
1answer
318 views

In MPI_Send / MPI_Recv pairs, can data be lost if it isn't synchronised correctly?

Let me explain. Consider 4 slave nodes 1, 2, 3, 4 and a master node 0. Now, 1, 2, 3, 4, need to send data to 0. 0 receives this data in the following format. for(int proc = ...
1
vote
2answers
207 views

Open MPI/MPICH2 - What happens if a node terminates?

I would like to know what happens if a node of a OpenMPI/MPICH2 cluster terminates? Is there some mechanism that is tolerant for this case and continues the execution? Thanks for your answers ...
1
vote
2answers
295 views

What is easier to learn and debug OpenMP or MPI?

I have a number crunching C/C++ application. It is basically a main loop for different data sets. We got access to a 100 node cluster with openmp and mpi available. I would like to speedup the ...
1
vote
1answer
395 views

ATLAS Linear algebra and openmpi on multicore with python

I use mpi4py and openmpi on a multi-cpu/core machine to do linear algebra. My numpy is built using ATLAS. Suppose I have a 4 core machine and I would like to run a 4 node python script that does ...
1
vote
1answer
164 views

Initialize an array using openmpi once

I am trying to run some tests using OPENmpi processing data in an array by spliting up the work across nodes (the second part is with matricies). I am running into some problems now because the data ...
1
vote
2answers
510 views

How to pass -libm to MPICC? libimf.so: warning: feupdateenv is not implemented and will always fail

I am a newbie who tries to compile a program via mpicc replacing icc with gcc. I have already discovered, that I need to use the following command to compile $ OMPI_CC=gcc make However, I get the ...
1
vote
0answers
2k views

Running OpenMPI on Windows XP

I'm trying to build a simple cluster based on Windows XP. I compiled OpenMPI-1.4.2 successfully, and tools like mpicc and ompi_info work too, but I can't get my mpirun working properly. The only ...
1
vote
2answers
2k views

Unable to run OpenMPI across more than two machines

When attempting to run the first example in the boost::mpi tutorial, I was unable to run across more than two machines. Specifically, this seemed to run fine: mpirun -hostfile hostnames -np 4 boost1 ...
1
vote
4answers
2k views

Adding MPI support to a C++ program

I have a program that is been implemented in C++ which I now want to add MPI support. There is an MPI binding for C++, with namespace MPI and everything. In my case I have a specific object that is ...
1
vote
2answers
509 views

MPI Genetic Monte Carlo Algorithm Resources?

I have been working with some friends to convert a Matlab Genetic Algorithm to C++ and it works in a sequential order currently. Matlab is no longer a portion of our current code. We are looking to ...
0
votes
1answer
24 views

How to determine MPI rank/process number local to a socket/node

Say, I run a parallel program using MPI. Execution command mpirun -n 8 -npernode 2 <prg> launches 8 processes in total. That is 2 processes per node and 4 nodes in total. (OpenMPI 1.5). Where ...
0
votes
1answer
46 views

--with-memory-manager=none flag for mpi compiling

Normally, when I want to compile a source with mpicc i use the following command: mpicc -o source source.c However I am experiencing some trouble compiling my current source, some seg faults. I ...
0
votes
0answers
23 views

Bash script for Openmpi, SGE and blacs

I am reserving several processors with SGE upon which I want to run a number of openmpi jobs, all of which individually (and combined) use less than the reserved number of processors. The code I am ...
0
votes
1answer
28 views

Calling MPI_Wait before any corresponding non-blocking primitives is not allowed by OpenMPI?

My application works with LAM/MPI, but it crashes with OpenMPI. Below is how my code looks. void Comm::nonblocking_send( int s_idx , int e_idx ) { MPI_Wait(&mpireq,&mpistat); ...
0
votes
1answer
30 views

Differences between LAM MPI and OpenMPI

I was wondering how these two are related to each other. Could anyone here explain? Cheers.
0
votes
1answer
74 views

MPI_Allgather produces inconsistent results

I am having trouble with MPI_Allgather in part of a much large piece of software. The following function gets passed a double and related flag that is different on each node, the function is then ...
0
votes
1answer
43 views

mpi4py installation in mac

I'm trying to install mpi4py on mac, but I've faced with below error: Searching for mpi4py Best match: mpi4py 1.2.2 Downloading http://mpi4py.googlecode.com/files/mpi4py-1.2.2.tar.gz Processing ...
0
votes
0answers
39 views

What could cause asymmetric throughput of MPI nonblocking messages?

I'm using MPI nonblocking messages to communicate between 2 tasks. The communication pattern is as follows: Each task has a master thread that receives messages from the other tasks. It has 5 or so ...
0
votes
0answers
59 views

Is it not possible to launch an executable with MPI code without mpiexec/mpirun?

I have open-mpi v1.5.4 installed, from the binary installer, on a Win7 machine. The following program: #include <stdio.h> #include <mpi.h> int main(int argc, char *argv[]) { int rank, ...
0
votes
1answer
78 views

Does MPI drop or delay messages?

I asked the same question here, but I think it was too long so I'll try again in a shorter way: I've got a C++ program using the latest OpenMPI on a Rocks cluster under a master/slave setup. The ...

1 2