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, ...

learn more… | top users | synonyms

1
vote
1answer
15 views

How to use multi dimensional STL vector in MPI

I am trying to multiply two matrices in MPI but my both matrices are in vector form. vector <vector <int> > Mat1; Which in MxN order vector <vector <int> > Mat2; Which is NxL ...
-1
votes
1answer
28 views

Where can I find small opensource MPI applications? [closed]

I intend to build a Linux cluster for my final year project and do some parallel programming on it. Till now I have been reading books about MPI, but unfortunately I haven't any idea about a real ...
3
votes
1answer
43 views

Defining global variables in mpi

I have written a sample code below: #include <stdio.h> #include <mpi.h> double x; int main (int argc, char **argv) { MPI_Init(&argc, &argv); ...
0
votes
2answers
26 views

Calling MPI functions from multiple threads

I want to implement the following thing using MPI and Pthreads but facing some error: Each processor will have 2 threads. Each processor's one thread will be sending data to other processors and the ...
0
votes
1answer
17 views

Specifying multiple host files to mpirun

I want to run an mpi program on multiple hosts on two sites (Rennes and Nancy in this example). I would like to provide one set of arguments to hosts on site Rennes and another set to hosts on site ...
3
votes
2answers
58 views

With MPI programs, do all processes get data from user input?

What I'm asking is if I have something like this: int main(int argc, char *argv[]) //<---input from command line { Do I need to use MPI_Bcast in order to send that data to all of the processes, ...
0
votes
0answers
12 views

how to parallelize the explicit difference scheme with mpiJava Express

I have a program in Java that describes the calculation of the temperature and the phase states of the thermochemical cathodes. Just this program is executed sequentially, and I need some ...
0
votes
2answers
20 views

MPI_Recv is not blocking

I have a MPI_Isend and MPI_Recv program. Assume that i have 2 processors and both of them are like this. MPI_Isend MPI_Recv MPI_Wait What i expect from this is sending the data on both processors ...
2
votes
2answers
36 views

MPI datatype for structure of arrays

In an MPI application I have a distributed array of floats and two "parallel" arrays of integers: for each float value there are two associated integers that describe the corresponding value. For the ...
0
votes
0answers
19 views

Problems when build sprng lib

When I tried to build the Sprng library using the documentation from http://www.sprng.org/, I had a problem using make. The error is: /usr/include/mpi/openmpi/ompi/mpi/cxx/mpicxx.h:33:17: fatal ...
0
votes
0answers
29 views

MPI Scatter part of matrix (indexed type)

I tried scattering parts of matrix (main diagonal of matrix, elements above and below it). For this I created 3 MPI_type_indexed datatypes, but I still don`t know how to scatter its. I need this ...
0
votes
1answer
64 views

Missing FFTW libraries

I'm trying to compile a code written in fortran90/95 and I'm getting this error: user:~> make ifort -O3 -lmpi -L/opt/local/intel/fftw/lib -I/opt/local/intel/fftw/include - ...
0
votes
2answers
17 views

Was the python script launched by mpirun or mpiexec?

I've coded a python script that can be either launched in stand alone way or with mpi support. python myscript.py vs mpirun -np 2 python myscript.py How can I know inside the script in which way ...
0
votes
1answer
20 views

“Deadlock” with MPI_Waitall

I am trying to send some data from each process to both its neighbors (by rank). To do this I am trying to use the non-blocking send and receive calls MPI_Isend/MPI_Irecv and a corresponding call to ...
0
votes
1answer
31 views

Matrix Multiplication by creating 2d topology using MPI

i am multiplying 2 matrices in MPI by creating 2d topology i am getting the error An error occurred in MPI_Type_create_struct on communicator MPI_COMM_WORLD MPI_ERR_TYPE: invalid datatype *** ...
0
votes
1answer
33 views

find maximum allowed ibv_reg_mr

I'm trying to diagnose a memory allocation error thrown by ibv_reg_mr() in software that I use, and my suspicion is that it's related to known problems with some Mellanox Infiniband cards where the ...
1
vote
0answers
27 views

sudoku parallelization with MPI

I want to parallelize my sudoku solver program with MPI. The current serial code relies on backtracking with depth-first search. I did some research, but I am still not sure how to do it. Some say ...
0
votes
0answers
27 views

MPI_Gather segmentation fault

I have this parallel Gaussian elimination code. A segmentation error happens upon calling either MPI_Gather function calls. I know such error may rise if memory is not allocated properly for either ...
0
votes
0answers
20 views

Abort or timeout for mpi_comm_accept

Is there a way to abort mpi_comm_accept, e.g. if the corresponding communication partner has crashed or there is a network problem?
-1
votes
0answers
29 views

MPICH error: Could not gethostbyname [closed]

I am using MPICH 1.2.0, and attempting to run an MPI program on a single machine. No cluster is involved. The computer that I’m running it on is a 64-bit Intel Xeon 8-core(3.2GHz) with 15.6 GB of ...
2
votes
1answer
47 views

Unit-testing MPI Programs with gtest

I'm parallelizing an already existent application that uses gTest with MPI. In MPI programs, the first thing to do is to initialize the environment with a call to MPI_Init( int *argc, char ***argv ) ...
1
vote
0answers
19 views

MPI Op_create and reduce to make a vector that contains updates from all processes

I have a program I'm trying to make parallel using MPI. In this program I have a duplicate of vector on each process. The individual process can edit any of the items in the vector but by design none ...
0
votes
0answers
18 views

Start several gdb processes in terminal emulator in split screen modus

I'm using gdb to debug a parallel mpi-code 'prog'. For that I use a small number of processes, say 'M' and do something like mpiexec -n M xterm -e gdb ./prog This pops up M xterms with each of them ...
0
votes
0answers
33 views

MPI_Datatype for C++ container

How can I define MPI_Datatypes and MPI_Ops so that MPI communication routines can be used with C++ containers? In my specific case, I'd like to union a (distributed) array of std::set<int>s ...
0
votes
0answers
38 views

Client/Server and MPI Send/Recv

I'm trying to send messages from a server to several clients that get connected to that server. The server is supposed to send as many messages as there are clients connecting to it but the code ...
1
vote
1answer
20 views

Can MPI sendbuf and recvbuf be the same thing?

I'm adding together a load of array elements from each process: double rho[1024]; //Some operation to calculate rho for each process; MPI_Allreduce(rho,rho,1024,MPI_DOUBLE,MPI_SUM,MPI_COMM_WORLD); ...
0
votes
0answers
26 views

Set up computational cluster using infiniband fails [closed]

My task: I need to assemble computational cluster, consists of two nodes using infiniband technology. When I try to start mpirun ... for two nodes, the process hangs. If i try to use flag ...
0
votes
0answers
34 views

Ways to use MPI executable in Qt?

I have developed an application which comprises of a frontend Qt-GUI and a solver EXE. As these two are independent module, I could successfully launch EXE in Qt-GUI by using a QProcess like below: ...
0
votes
0answers
22 views

Replacement MPI_Send and MPI_Recv function with MPI_ALLTOALL

I want to replace Send and Recv fucntion with ALLTOALL function, so can i do that. I know, that in MPI_ALLTOALL(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm) function each process ...
0
votes
0answers
24 views

Is there an MPI Implementation for Android?

I'm interested in the idea of clustering cell phones (just an academic interest), and am already aware of folks doing beowulf-cluster-type things with them. I looked around and could only find ...
0
votes
1answer
48 views

How to Implement embarrassingly parallel task (FOR loop) WITHOUT MPI-IO?

Preamble: I have a very large array (one dim) and need to solve evolution equation (wave-like eq). I I need to calculate integral at each value of this array, to store the resulting array of integral ...
0
votes
2answers
52 views

Partition a lifegame-like program for parallel computing with load balance

Consider a lifegame-like computing on a m*n matrix, it takes O(m*n) to develop each cycle. I'm going to modify this program to a parallel version using Pthread and MPI. The simplest way is static ...
-3
votes
0answers
51 views

somebody help me about MPI program?

This program is about 2-D fast fourier transform. The main function is listed as follows: I dont know why i can run the program but finally the program doesn't response.My be something wrong with ...
1
vote
1answer
37 views

How to get CMake to build a Fortran program with MPI support?

I was trying to parallelize a Fortran program using MPI. I use CMake to do the build of my program. It was difficult to find support on getting CMake to create a working makefile for Fortran with ...
0
votes
1answer
49 views

MPI_Send/Recv C++ std::string Segmentation Fault

I've read a bunch of pages on here and posted a previous similar question to no avail and I just can not seem to find a workable solution. This is a uni assignment with provided code to start off ...
0
votes
1answer
31 views

How to improve this programme to work master also

In this mpi programme only works slave nodes. How to modify it to work master also. Because working of the master also improve the performance of the system. int A,B,C, slaveid,recvid,root, ...
0
votes
1answer
34 views

MPI creating structs over functions in C?

I'm creating a struct to send over MPI but am having a little trouble with using the struct in other functions.. typedef struct Coordinates { int x; int y; } XY; int main (int argc, char ...
1
vote
3answers
56 views

Does a program started with mpiexec know it was started with mpiexec?

I'm in the process of adding an option to a Fortran program to run it using multiple processors using MPI. If the user is going to run it in parallel, the user needs to specify different input ...
1
vote
1answer
21 views

Will MPI_Send block if matching MPI_IRecv takes less data elements?

Assume the following MPI Code. MPI_Comm_Rank(MPI_COMM_WORLD, &rank); if (rank == 0){ MPI_Send(a, count, MPI_CHAR, 1, 0, MPI_COMM_WORLD); MPI_Send(b, count, MPI_CHAR, 1, 0, MPI_COMM_WORLD); ...
2
votes
1answer
34 views

MPI_Send is blocking in ring communication with large data size

I am trying to form a ring communication using MPI, where my each process is sending its result to next process and last process is sending result to 0th process. Lets assume I have 4 processes then ...
0
votes
1answer
19 views

Reporting/visualizing scalability results from MPI code… which would be the best way?

As part of my research, I have computed the parallel solution to different banded systems using ScaLAPACK. I am interested in reporting the achieved speedup as a function of both the rank for the ...
1
vote
1answer
84 views

Sending a string in C++ MPI

TL;DR I believe I am incorrectly transmitting a string with MPI_Send. What is the best way to send a string? I'm trying to send a string from the master to the slave processes but I believe it's ...
0
votes
1answer
59 views

Flattening a 3D array in c++ for use with MPI

Can anyone help with the general format for flattening a 3D array using MPI? I think I can get the array 1 dimensional just by using (i+xlength*j+xlength*ylength*k), but then I have trouble using ...
0
votes
2answers
59 views

Sending message between hosts, without probe or ask every host for new messages

My problem is to send messages about the status of calculation and program status. Every host get one chunk of work. If the host finish the work it should send the result to the reciever. The reciever ...
1
vote
1answer
38 views

MPI Status FORTRAN

I have this code but I get this error. I tried declaring status as INTEGER :: status but that changes the value of my rank after the MPI_SENDRECV (i.e. the rank=0 for all processors) PROGRAM ...
0
votes
1answer
45 views

send row and column of a matrix, MPI_SEND

I can send the row of a matrix, and the column of another matrix in a single MPI_SEND, how can I do this procedure? MPI_SEND (row and column of the matrix ...)
0
votes
1answer
39 views

MPI send in passing pointer pointer c + +

MPI_Send (&t[0], 2, MPI_INT, 1, tag, MPI_COMM_WORLD); I can not get the address of this pointer pointer in the slave,A is a matrix already allocated ** A,A[0] is the address of the first row of ...
0
votes
1answer
55 views

Why is my C++ MPI code freezing up on me?

I'm a noob when it comes to MPI, but this makes no sense. So I have a snip of code here that uses MPI_Recv and MPI_Send, but right after telling me my mesh size, the thing freezers before the first "I ...
0
votes
0answers
64 views

OpenMP !$OMP PRIVATE and Fortran Modules

I have a large code, where a combination between MPI and OpenMP is used. In order to prohibit data override, the arrays have and extra index corresponding to the OpenMP thread ID. For an example the ...
1
vote
1answer
35 views

Sending MPI_Comm handler via MPI_Send

I have a quick question: is it possible to send type MPI_Comm (handler of communicator) via MPI_Send/MPI_ISend? Will receiving process be able to use this communicator handler normally?

1 2 3 4 5 28