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.
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?
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 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 co
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
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 processors
How does one use MPI_Comm_spawn to start worker processes on remote nodes? Using OpenMPI 1.4.3, I\'ve tried this code:
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.
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.
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 applica