Tagged Questions

MPICH is a freely available, portable implementation of MPI, the standard for message-passing libraries. MPICH has been superseded by MPICH2.

learn more… | top users | synonyms

4
votes
2answers
193 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 ...
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 ...
1
vote
1answer
327 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
1answer
182 views

How to debug MPI application under Windows?

I have MPI program which I want to debug. I use mpich 2 under Windows, so does anybody know tools that can help me? Is it even possible?
0
votes
0answers
39 views

software Fault Injection tool for MPI applications

I am looking out for a software fault injection mechanism for MPI applications. when I searched the net, I learnt about FAIL-MPI, but couldn't find any site from where I can download it. Is there any ...
0
votes
2answers
108 views

Serialize mpi threads

Is there anyway to serialize a certain part of your MPI code ? For example when printing the information out to the screen. Something like below: MPI_SERIALIZE(); cerr << "THIS WILL BE PRINTED ...
0
votes
1answer
104 views

error handlers in MPICH and OpenMPI

are there any error handlers implemented in OpenMPI and MPICH other than MPI_ERROR_RETURN and MPI_ERRORS_ARE_FATAL? which implementation is better in handling the errors? kindly suggest a link for ...
0
votes
1answer
164 views

fault tolerance in MPICH/OpenMPI

I have two questions- Q1. Is there a more efficient way to handle the error situation in MPI, other than check-point/rollback? I see that if a node "dies", the program halts abruptly.. Is there any ...
0
votes
1answer
166 views

“p4_error : child process exited error”while running 256 threads of NAS benchmark on 32 node cluster

I'm trying to get a UPC-NAS Benchmark (compiled for 256 threads) running on a cluster of 32 nodes. When I run it, the rsh connections are established for 247 threads and it terminates giving an error ...
0
votes
2answers
168 views

using strace with mpiexec

How to strace all processes of mpi parallel job, started with mpiexec (mpich2, linux)? -o will mess outputs from different processes
0
votes
1answer
127 views

Code Explanation (MPICH)

#include "mpi.h" #include <stdio.h> #include <math.h> double f(double a) { return (4.0 / (1.0 + a*a)); } void main(int argc, char *argv[]) { int done = 0, n, myid, numprocs,i; ...