Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
261 views

Multithreading with C++ API

i am trying to parallel my program using OpenMP and sometimes i feels that i am reaching a dead end. I would like to share variables in a function member that i defined (and initialized) in the ...
4
votes
2answers
513 views

Boost.MPI vs Boost.Asio

Good day! What difference between these libraries? I read MPI's docs and have small experience with asio. For me it's different implementations of network communication and no more. But each of ...
4
votes
1answer
106 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, ...
3
votes
5answers
3k views

Multi-Core Programming. Boost's MPI, OpenMP, TBB, or something else?

I am totally a novice in Multi-Core Programming, but I do know how to program C++. Now, I am looking around for Multi-Core Programming library. I just want to give it a try, just for fun, and right ...
2
votes
1answer
127 views

Can I tell Boost.MPI which class version to use with Boost.Serialization?

I'm using Boost.MPI to exchange messages between processes. Each message carries one of my classes, serialized using Boost.Serialization. I also use the same serialization code to save that class to a ...
2
votes
1answer
1k views

trying to build Boost MPI, but the lib files are not created. What's going on?

I am trying to run a program with Boost MPI, but the thing is I don't have the .lib. So I try to create one by following the instruction at ...
1
vote
0answers
36 views

How to build boost::mpi library with Open MPI on Windows with Visual Studio 2010

I installed Open MPI 1.5.4 (64 bit) and I am trying to rebuild boost libraries (1.48) with bjam. I changed user-config.jam file, by adding using mpi line with explicit compiler path (although mpic++ ...
1
vote
1answer
59 views

Boost.MPI/Boost.Interprocess - how to detect if processes run on same machine?

So I use boost.mpi to run my app on 2 machine in a cluster, each has 8 cores.so I get 16 processes startedd. I wonder how my processes can find out on which of my clusters thay are ran? How thay ...
1
vote
4answers
325 views

Boost.MPI: What's received isn't what was sent!

I am relatively new to using Boost MPI. I have got the libraries installed, the code compiles, but I am getting a very odd error - some integer data received by the slave nodes is not what was sent by ...
1
vote
2answers
496 views

Autoconf macro for Boost MPI?

I'm searching an autoconf macro to use in my configure.ac that checks for Boost MPI. It's not hard to find a couple of them on the Internet but none of the one I tried worked as expected. What ...
1
vote
1answer
142 views

How can I do an overlapping scatter using Boost.MPI?

I want to distribute a vector with overlapping elements. For example, if I had [1,2,3], I'd want [1,2] to get sent to one node, and [2,3] to get sent to another. I'm familiar with how to do this using ...
1
vote
2answers
2k views

Unable to run OpenMPI across more than two machines

When attempting to run the first example in the boost::mpi tutorial, I was unable to run across more than two machines. Specifically, this seemed to run fine: mpirun -hostfile hostnames -np 4 boost1 ...
0
votes
0answers
42 views

What could cause asymmetric throughput of MPI nonblocking messages?

I'm using MPI nonblocking messages to communicate between 2 tasks. The communication pattern is as follows: Each task has a master thread that receives messages from the other tasks. It has 5 or so ...
0
votes
1answer
110 views

cmake: linking software to boost::mpi (with mpich2)

For this simple code (taken from the boost-mpi documentation): #include <boost/serialization/string.hpp> #include <iostream> #include <string> #include <boost/mpi.hpp> ...
0
votes
1answer
219 views

Building Boost.MPI with Intel MPI

I'm trying to build Boost.MPI 1.47 with Intel MPI 4.0.0.012, but Boost is not able to find the installation. I've tried various using mpi ;-variants in user-config.jam including using mpi ;, using mpi ...
0
votes
1answer
65 views

install Boost.MPI in a directory without administration privileges

How can I install Boost.MPI in my home directory without having any administrative privileges on the Unix system I am working on?
0
votes
2answers
61 views

MPI: how to limit access to file system?

We have MPI based on 4 clusters with 16 cores each. We have a folder called notRestricted. We want to limit access of the application we run with mpiexec to file system - limit its access to write ...
0
votes
0answers
83 views

Boost mpi: having a pointer to some class how to transmit all that class to other machines?

or how to create some class pointer in some boost mpi shared memory if there is any. Simple example - we want to create and fill some char *** we want its contents to be accessible from each and every ...
0
votes
2answers
172 views

design shared memory for MPI using Boost

I would like to ask if someone knows a boost::mpi documentation for beginners? (i already read Boost.MPI documentation from the Internet site). a bit about my system, i have a claster of about 90 ...
0
votes
1answer
585 views

using OpenMPI or MPICH2 with Boost MPI using Win and Linux machines together

These days I am approaching MPI world. I am willing to use Boost MPI libraries probably with OpenMPI or MPICH2 ( even if with MPICH2 still I am not sure whether it will work fine because of some post ...
0
votes
1answer
445 views

Boost::Serialization Mpi Sending array of user defined types

I want to send my Array class using boost Mpi template<class T> class Array { private: int size; T* data; public: // constructors + other stuff }; Here T can be any built in type or ...
0
votes
2answers
273 views

Looking for mpic++

I am following instructions at http://www.boost.org/doc/libs/1_43_0/doc/html/mpi/getting_started.html#mpi.config trying to build Boost MPI .lib files, but I got one problem: I do not have mpic++. ...
0
votes
2answers
499 views

Boost.MPI problem

I'm working on an HPC. And on that HPC an old version of Boost was installed and that boost library doesn't have Boost.MPI. I requested from Admins to install it on the HPC. But they requested from me ...