Tagged Questions

MPI is the Message Passing Interface, a library for distributed memory parallel programming and the de facto standard method for using distributed memory clusters for high-performance technical computing. Questions about using MPI for parallel programming go under this tag; questions on, eg, installation problems with MPI implementations are best tagged with the appropriate implementation-specific tag, eg mpich or OpenMPI.

learn more… | top users | synonyms

19
votes
9answers
9k views

How do I debug an MPI program?

I have an MPI program which compiles and runs, but I would like to step through it to make sure nothing bizarre is happening. Ideally, I would like a simple way to attach GDB to any particular ...
17
votes
6answers
6k views

MPI for multicore?

With the recent buzz on multicore programming is anyone exploring the possibilities of using MPI ?
13
votes
7answers
1k views

shared memory, MPI and queuing systems

My unix/windows C++ app is already parallelized using MPI: the job is splitted in N cpus and each chunk is executed in parallel, quite efficient, very good speed scaling, the job is done right. But ...
13
votes
6answers
3k views

Why is MPI considered harder than shared memory and Erlang considered easier, when they are both message-passing?

There's a lot of interest these days in Erlang as a language for writing parallel programs on multicore. I've heard people argue that Erlang's message-passing model is easier to program than the ...
9
votes
5answers
2k views

What is the best MPI implementation [closed]

I have to implement MPI system in a cluster. If anyone here has any experience with MPI (MPICH/OpenMPI), I'd like to know which is better and how the performance can be boosted on a cluster of x86_64 ...
8
votes
2answers
163 views

Parallel debuggers

I am trying to decide which parallel debugger to use. So far I found not many open sources ones so my choices are: http://www.allinea.com/products/ddt/ ...
8
votes
9answers
423 views

What are canonical examples of parallel computation?

I am writing a paper to test a new application that will demonstrate the benefits of parallelized computation (compared to the traditional serialized version of this application). I want to use the ...
8
votes
4answers
2k views

Best books to learn MPI programming [closed]

What are the best book for learning MPI (C,C++ implementation) ?
7
votes
1answer
124 views

Parallel computing with clusters other than snow SOCK

The recent addition of direct support for parallel computing in R2.14 sparked a question in my mind. There are numerous options for creating clusters in R. I use snow SOCK clusters on a regular basis, ...
7
votes
3answers
967 views

Comparison of performance between Scala etc. and C/C++/Fortran?

I wonder if there is any reliable comparison of performance between "modern" multithreading-specialized languages like e.g. scala and "classic" "lower-level" languages like C, C++, Fortran using ...
6
votes
5answers
147 views

Understanding MATLAB on multiple cores, multiple processors and MPI

I have several closely related questions about how how MATLAB takes advantage of parallel hardware. They are short, so I thought it would be best to put them in the same post: Does MATLAB ...
6
votes
1answer
216 views

MPI and D: Linker Options

I'm trying to use MPI with the D programming language. D fully supports the C ABI and can link with and call any C code. I've done the obvious stuff and translated the MPI header to D. I then ...
6
votes
2answers
211 views

Speed up processing from CSV file

I have a project and I have to improve its performance. I have a big Mysql database constructed from a huge CSV file (100 millions rows). Insert time is not a problem, but response time of a request ...
6
votes
7answers
2k views

What is the best tutorial for learning MPI for C++?

I plan to use MPI for my C++ code. I have installed MPICH2 on my computers. But I do not know much about MPI and hope to find some materials to read. I hope you experts can recommend some good ...
6
votes
4answers
3k views

What are some scenarios for which MPI is a better fit than MapReduce?

As far as I understand, MPI gives me much more control over how exactly different nodes in the cluster will communicate. In MapReduce/Hadoop, each node does some computation, exchanges data with ...
6
votes
2answers
412 views

OpenMPI: All nodes run as node 0

I have a c++ program that is using the openMPI library to pass messages between different processors. It is a parallel program that uses a genetic algorithm to get a good solution for the traveling ...
5
votes
1answer
114 views

MPI distribution layer

I used MPI to write a distribution layer. Let say we have n of data sources and k of data consumers. In my approach each of n MPI processes reads data, then distributes it to one (or many) of k data ...
5
votes
1answer
244 views

standard output in Fortran MPI code

I have a parallel fortran code in which I want only the rank=0 process to be able to write to stdout, but I don't want to have to litter the code with: if(rank==0) write(*,*) ... so I was wondering ...
5
votes
4answers
529 views

how to compile MPI and non-MPI version of the same program with automake?

I have a C++ code that can be compiled with MPI support depending on a certain preprocessor flag; missing the appropriate flag, the sources compile to a non-parallel version. I would like to setup ...
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
132 views

Any Advantage of MPI+CUDA over just pure MPI?

The usual way to speed up an application is to parallelize an application using MPI or higher level libraries like PETSc which use MPI under the hood. However nowadays everyone seems to be interested ...
4
votes
1answer
78 views

event driven MPI

I am interested in implementing a sort of event driven dispatch queue using MPI (message passing interface). The basic problem I want to solve is this: I have a master process which inserts jobs into ...
4
votes
3answers
140 views

Multiple instances of program on multi-core machine

Apologies for the rather basic question. But I think a lot of people still do not understand these issues or many others on the internet simply confuse others with vague responses. So hopefully, a ...
4
votes
2answers
330 views

GCC 4.5/Ubuntu 11.04 is auto-threading code?

I apologize ahead of time that I don't quite have the proper jargon to describe my problem, and that I have likely not given enough information. I've been running my MPI code under gcc 4.4 and ...
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
1answer
176 views

Running on multiple cores using MPI

I use the present command to submit MPI jobs: mpirun -np no.of processors filename My understanding is that the above command lets me submit to 4 independent processors that communicate via MPI. ...
4
votes
3answers
680 views

Problem with MPI matrix-matrix multiply: Cluster slower than single computer

I code a small program using MPI to parallelize matrix-matrix multiplication. The problem is: When running the program on my computer, it takes about 10 seconds to complete, but about 75 seconds on a ...
4
votes
2answers
161 views

Terminating all processes with MPI

I'm using MPI to search for a solution in such a way that I divide the problem space between the different threads. Each thread is going through a for loop, and each iteration is a candidate for a ...
4
votes
1answer
408 views

How to MPI_Gatherv columns from processor, where each process may send different number of columns

Say 2 processes are participating. Process 0 (rank 0) has A = { a d b e c f } and process 1 (rank 1) has A = { g h i } I want both processors to send these ...
4
votes
2answers
151 views

MPI_Recv: Receiving a different size than the one Sent

I am writing a program to check shortest path using the MPI library. There are two scenarios: Either I found a better path, in with case the first slot of the buffer will state resultBuff[0] = 1 and I ...
4
votes
1answer
103 views

Which kind of diagram for parallel code documentation?

I have some parallel code (implemented using MPI) that needs to be documented. I'd like to have a flow-diagram describing it's high-level strategy. What kind of diagram do you use to describe send, ...
4
votes
7answers
395 views

Performing BLAST/SmithWaterman searches directly from my application

I'm working on a small application and thinking about integrating BLAST or other local alignment searches into my application. My searching has only brought up programs, which need to be installed and ...
4
votes
3answers
438 views

Which python mpi library to use?

I'm starting work on some simulations using MPI and want to do the programming in Python/scipy. The scipy site lists a number of mpi libraries, but I was hoping to get feedback on quality, ease of ...
4
votes
3answers
387 views

C++: How is it possible that reading data can affect memory?

I've been going deeper into C++ recently and my bugs seem to get complex. I have a vector of objects, each object contains a vector of floats. I decided I needed to create a further flat array ...
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 ...
4
votes
2answers
767 views

F# + MPI + MONO : Clustered Computing

Is it possible for F# and MPI to run off of Mono on a linux computational cluster? Anyone able to attest to it's performance/reliability?
3
votes
1answer
39 views

Critical section in MPI?

I have some code to print a 2D array to the standard output. The problem is that when I run it, every process writes to the output and the data overlaps, rendering it unusable. How can i build a ...
3
votes
1answer
106 views

FORTRAN memory utilization - static vs dynamic

I have a problem that I tried to ask about previously, but didn't get far and have found new information and am hoping for greater help. The code is a hybrid MPI/OPENMP code that crashes with a ...
3
votes
1answer
63 views

MPI : getting number of nodes (not processes) in a communicator

I'm working with MPI programs on an SMP supercomputer. I would like to identify which processes are sharing the same node, for example by setting an integer key that is equal in all processes on the ...
3
votes
2answers
119 views

Simulating computer cluster on simple desktop to test parallel algorithms

I want to try learning MPi and parallel programming Can a sendbox be created on my desktop pc? How can this be done Linux and windows solutions are welcome
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
2answers
99 views

Detail of all MPI Algorithm?

Is there any document about how MPI functions such as MPI_Algather, MPI_AlltoAll, MPI_Allreduce etc.. are implemented ? I would like to learn about their algorithm and compute the complexity of them ...
3
votes
1answer
113 views

mpi.h: Using a type w/o defining it?

I'm trying to translate the important parts of OpenMPI's mpi.h to the D programming language so I can call it from D. (HTOD didn't work at all.) I can't wrap my head around the following bits of ...
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
241 views

How to make profilers (valgrind, perf, pprof) pick up / use local version of library with debugging symbols when using mpirun?

Edit: added important note that it is about debugging MPI application System installed shared library doesn't have debugging symbols: $ readelf -S /usr/lib64/libfftw3.so | grep debug $ I have ...
3
votes
1answer
58 views

Ensure all code on all machines are the same - python mpi

I can have up to 20 machines in my MPI rings. How can I automate some sort of checking that all machines are using the same version of their python code? Is there a way to generate a hash of all the ...
3
votes
2answers
182 views

MPI: cores or processors?

Hi I am kind of MPI noob so please bear with me on this one. :) Say I have an MPI program called foo.c and I run the executable with mpirun -np 3 ./foo Now this means the program will be run in ...
3
votes
3answers
282 views

What is an exemplar problem and solution for learning shared memory, distributed memory, and/or GPU programming?

We are looking for exemplar problems and codes that will run on any or all of shared memory, distributed memory, and GPGPU architectures. The reference platform we are using is LittleFe ...
3
votes
1answer
74 views

Can I write from different MPI_Irecv into the same buffer/array at different index positions?

MPI_IRecv(&myArr[0], 5, MPI_INT, 1, MPI_ANY_TAG, MPI_COMM_WORLD, request); MPI_IRecv(&myArr[5], 5, MPI_INT, 2, MPI_ANY_TAG, MPI_COMM_WORLD, request); MPI_IRecv(&myArr[10], 5, MPI_INT, 3, ...
3
votes
1answer
143 views

MPI_Type_create_subarray and MPI_Send

this is my first question here in stackoverflow. I have two processes, a root 0 and a slave 1. Slave allocates a 2d array (CHUNK_ROWS+2,CHUNK_COLUMNS+2) and wants to send a [CHUNK_ROWS][CHUNK_COLUMNS] ...

1 2 3 4 5 12