Open MPI is an open source implementation of the MPI-2 Message Passing Interface, a library for distributed memory parallel programming.
0
votes
0answers
18 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?
0
votes
0answers
29 views
Queue of structs does not exit on empty = false?
I'm testing for when my queue of structs is empty. For some reason, when the size of the queue is 0 (i.e. empty), my program still enters the loop and pops values from the queue:
int ...
0
votes
1answer
55 views
MPI - one function for MPI_Init and MPI_Init_thread
Is it possible to have one function to wrap both MPI_Init and MPI_Init_thread? The purpose of this is to have a cleaner API while maintaining backward compatibility. What happens to a call to ...
0
votes
1answer
61 views
MPI/Pthread program does not scale
I have a MPI/Pthread program in which each MPI process will be running on a separate computing node. Within each MPI process, certain number of Pthreads (1-8) are launched. However, no matter how many ...
0
votes
1answer
40 views
Mpi_recv hangs while waiting for a message that has been sent from slave process
So I'm trying to write myself a matrix multiplication that uses MPI (OpenMPI implementation). The problem is,although sending parts of a matrix from master to slaves by MPI_Send/MPI_Recv works ...
0
votes
0answers
53 views
Trouble building mpi4py OpenMP Windows XP
I'm trying to install mpi4py1.3 on Python 2.7. I use OpenMPI 1.6.4 as MPI provider. It runs under WinXP 32bit.
As I can't use easy_install or pip, I downloaded the tar and tried to install it with the ...
0
votes
1answer
26 views
Check the lmgrd log file, or try lmreread - An error when loading an Open MPI program in Totalview
When I load a program in TotalView, I am getting a warning dialog box "Check the lmgrd log file, or try lmreread" and the program doesn't load.
I am first selecting the correct Program from the ...
0
votes
1answer
125 views
brew install open-mpi fails
Trying to install openmpi, read that:
Could not determine if REAL*16 bit-matches C type
Ran brew doctor, and it's giving me:
Your system is raring to brew
full output
% brew install open-mpi
...
1
vote
1answer
33 views
mpirun OpenFOAM parallel app in gdb
I'm trying to step through an OpenFOAM application (in this case, icoFoam, but this question is in general for any OpenFOAM app).
I'd like to use gdb to step through an analysis running in parallel ...
1
vote
2answers
38 views
Is it possible to run OpenMPI on a local computer AND a remote cluster?
I have a set of computational operations that need to be performed a cluster (maybe like 512 MPI processes). Right now, I have the root node on the cluster open a socket and transfer data to my local ...
0
votes
1answer
57 views
Linking C module to Fortran program while using OpenMPI: malloc causes segfault instead of null
I've got an old and messy Fortran program that uses MPI. It has one small module written in C, which tries to determine the largest allocatable block in the memory by calling malloc() iteratively ...
0
votes
1answer
52 views
An “atomic” call to cout in MPI
I am interested in whether there is a command or a technique within OpenMPI to have an atomic call to write to stdout (or, for that matter, any stream).
What I have noticed is that during the ...
0
votes
1answer
65 views
a custom interrupt handler for mpirun
Apparently, mpirun uses a SIGINT handler which "forwards" the SIGINT signal to each of the processes it spawned.
This means you can write an interrupt handler for your mpi-enabled code, execute ...
0
votes
1answer
55 views
Troubles in MPI -> Failing at address: (nil)
I'm a beginner in C and MPI and i'm trying to do a program to multiply 2 matrix in MPI.
But I don't kwno what is wrong in my code.
I'm try do 'slice' the matrix M1 in n lines and send then to another ...
0
votes
0answers
29 views
How to install netcdf-openmpi-devel in Red Hat 6
I need to install netcdf-openmpi-devel on Red Hat 6. The problem is that this is not provided by the repositories I have: redhat and epel. I already tried downloading several fedora rpms, but for ...
0
votes
0answers
45 views
Open MPI Hangs over multiple hosts
So I've been trying to get openmpi to work over two hosts, and whenever I type out my command it just hangs. Using the debug I managed to see that the native server successfully executed mpi after ...
0
votes
1answer
44 views
Getting OpenMPI to work on Mac:
I have installed OpenMPI via MacPorts on my OSX system (running Version 10.8.3). I found the C wrapper compiler in /opt/local/lib/openmpi/bin/mpicc, and
/opt/local/lib/openmpi/bin/mpicc test.c
...
0
votes
1answer
39 views
What effects does the mpicc/openmp flag -Dparallel have?
i ran into a problem with the flag -Dparallel (which we use in our code to enable parallel parts). When i use it, i dont get more then one OpenMP Thread anymore.
Remark: We are running MPI/OpenMP ...
0
votes
0answers
35 views
mpi4py with OpenMPI: “ValueError: message: cannot guess count, datatype extent 0 (lb:0, ub:0)” in message_simple
I have mpi4py 1.3 installed with openMPI 1.6. Simple mpi4py demos like helloworld.py are working. In my code I call MPI.Comm.Allreduce(MPI.IN_PLACE, obj) , where obj is a numpy array.
This results in ...
0
votes
0answers
21 views
Communicate/recognize an error to/in other processes
I create a communicator using MPI_Comm_connect.
If one of the participating processes has an error (e.g. memory allocation problem, harddisk failure), how do I communicate that to the other process ...
0
votes
2answers
49 views
Did I compile with OpenMPI or MPICH2?
I have an executable on my Linux box which I know has been compiled either with OpenMPI or MPICH2 libraries.
Question: how to determine which one?
1
vote
2answers
174 views
Openmpi trouble with mpirun and ssh
Here's the thing. I've installed openmpi on two different computer, I already compile and run separetly the hello_world example on this machines and it's works well. But the problem is when I launched ...
1
vote
1answer
105 views
Difference between running a program with and without mpirun
I implemented a peer-to-peer connection in MPI using MPI_Open_port and MPI_Comm_accept. I run a server and a client program using
rafael@server1:~$ mpirun server
rafael@server2:~$ mpirun client
on ...
0
votes
0answers
93 views
Code conversion from OpenMP to MPI [closed]
Can anyone help me change the code i wrote in OpenMP to MPI? I have no idea on how to use MPI and im only familiar with OpenMP. Im trying to learn MPI. If anyone could help convert this code into MPI ...
0
votes
0answers
14 views
Can I release finished cores from an Open MPI job?
Right now, if I submit an open mpi job with multiple cores all the cores are tied up as long as code is still being run on any one single core.
For example, I ran a twenty core job, 19 cores finished ...
4
votes
2answers
237 views
Parallel Demonstration Program
An assignment that I've just now completed requires me to create a set of scripts that can configure random Ubuntu machines as nodes in an MPI computing cluster. This has all been done and the nodes ...
0
votes
2answers
39 views
How to avoid name conflicts with OpenMPI?
To set so called feature flags in our code we use an external file. There we define the macro
#define LB
We just ported our software to C++ and then the errors came, specificially this one
...
0
votes
0answers
53 views
Balancing OpenMPI Workload - Distribute Over Master and Slave Nodes
Hopefully this isn't a repeat question but I'm having an issue balancing a workload on my local cluster. This is my current MPI hostfile:
#The Hostfile for Open MPI
#Master Node, 'slots=2' is used ...
0
votes
0answers
137 views
Can't configure Parallel::MPI::Simple module to work with open MPI
I'm trying to use the perl's Parallel::MPI::Simple module but I'm having some problem.
I've installed openmpi1.5-bin from the ubuntu software center.
I've tested mpirun and it works without any ...
0
votes
0answers
34 views
Set number of processors for openmpi
At the moment I am using something like this to run a c++ program:
mpirun -np 4 ./test
This works fine, but the problem is that I am wrapping the c++ program with Python. So I want to set the ...
0
votes
1answer
150 views
Cluster hangs/shows error while executing simple MPI program in C
I am trying to run a simple MPI program(multiple array addition), it runs perfectly in my PC but simply hangs or shows the following error in the cluster.
I am using open mpi and the following ...
1
vote
2answers
83 views
Varying input parameters in different processors
I have a program with varying Input parameters that should execute the same functions in the program. How can I make each set of Input parameters to work on different processors in the grid. Please ...
0
votes
1answer
36 views
MPI_Free_mem fails with a segmentation fault using OpenMPI
I am using OpenMPI with the Intel C++ compiler on an Intel Ubuntu system. Whenever I try to replace new[] and delete[] calls with MPI_Alloc_mem and MPI_Free_mem calls, respectively, I always get a ...
1
vote
1answer
111 views
Hybrid : OpenMPI + OpenMP on a cluster
I solve numerically some Ordinary Differential Equations.
I have a very simple (conceptually), but very long computations. There is a very long array (~2M cells) and for each cell I need to perform ...
0
votes
0answers
69 views
Libconfig-1.4.9 (C++) - memory deallocation fails
I use libconfig (version: 1.4.9) for reading configuration files. The library works like a charm on various Linux machines. However, on OSX (Darwin Kernel Version 11.4.2), it causes a mysterious ...
0
votes
1answer
56 views
Sending Section of 3D array using MPI
I have the following 3D array.
U[Timesteps][X][Y]
With Ranges
Timesteps ( 0 to 100)
X ( 0 to 480)
Y ( 0 to 480)
I need to split the array send across the nodes for processing using MPI.
I want ...
0
votes
0answers
21 views
Is there a clever way for exchanging boundary data in mpi?
I'm faced with dividing a 2d fluid dynamics model amongst a number a processors. The model is represented in a number of arrays, and each processer gets a nxn block of the array to work on, but each ...
0
votes
1answer
44 views
Can MPI_Publish_name be used for two separately started applications?
I write an OpenMPI application which consists of a server and a client part which are launched separately:
me@server1:~> mpirun server
and
me@server2:~> mpirun client
server creates a port ...
0
votes
0answers
116 views
no CUDA-capable device is detected, using Cuda over MPI on Beowulf cluster
I have set up a 2-machine Beowulf cluster, both machines running Debian Squeeze. Both machines have older Cuda cards installed, and I am able to run Cuda sample programs on both. I am also able to run ...
1
vote
0answers
79 views
MPIrun crashing with simple code
I'm trying to generate code that uses MPI to behave roughly similar to a program with dependencies. Everything works fine if I use a number of processors (e.g. mpirun -np X) where X is greater than ...
0
votes
1answer
119 views
Submitting Open MPI jobs to SGE
I've installed openmpi , not in /usr/... but in a /commun/data/packages/openmpi/ , it was compiled with --with-sge.
I've added a new PE in SGE as descibed in ...
-2
votes
1answer
299 views
Having Open MPI related issues while making CUDA 5.0 samples (Ubuntu 12.04) [duplicate]
Makefile:79: *** MPI not found, not building simpleMPI.. Stop.
this error is the error im getting...
I saw the Mac version of this question but im using Ubuntu 12.04.
Does anyone know how to fix ...
1
vote
0answers
61 views
Is it possible to run mpiexec as a subprocess of an mpiexec'd program?
I have a program A that is run with mpiexec. This program normally runs in parallel, but in one of the execution patterns, it may invoke an external program B which is also MPI enabled. Of course, ...
1
vote
1answer
66 views
Probe seems to consume the CPU
I've got an MPI program consisting of one master process that hands off commands to a bunch of slave processes. Upon receiving a command, a slave just calls system() to do it. While the slaves are ...
0
votes
1answer
129 views
Parallelize a Function using openMP in C
I wrote a program which inputs matrix size and number of threads and then generated a random binary matrix of 0's and 1's. Then I need to find clusters of 1's and give each cluster a unique number.
...
1
vote
0answers
73 views
mpirun the program with no output
I am doing an mpi assignment.
My program is to let the user to input a list of data and we calculate the time that the program needs to search the data in the database(.csv).
The sequential program ...
0
votes
0answers
199 views
Error when compiling LAMMPS on CentOS 6.2 with OpenMPI
I am a very new user to Linux and compiling on my own cluster. I have attempted to install OpenMPI on my own and thereafter compile LAMMPS. However I encountered errors which I simply could not ...
0
votes
1answer
62 views
Why OpenMPI uses a different server given a different -n setting?
I am testing out OpenMPI, provided and compiled by another user, (I am using soft link to his directories for all bin, include, etc - all the mandatory directories) but I ran into this weird thing:
...
3
votes
1answer
207 views
Is there an easy way to use clang with Open MPI?
OpenMPI strongly recommends using their wrapper compilers. Behind the scenes, their wrapper compiler mpiCC calls gcc (by default?) and adds the necessary flags for MPI code to compile. However, other ...
-1
votes
2answers
112 views
How to fix C program error for Openmpi with netbeans running on ubuntu 12.04
I am trying to run a MPI program with C language.
I have installed GCC compiler and the openmpi libraries. I am running ubuntu Linux and Netbeans IDE. My challenge is that after including ‘mpi.h’ in ...

