English 中文(简体)
我怎么能够利用“博恩”进行重叠的散射。 MPI?
原标题:How can I do an overlapping scatter using Boost.MPI?

我想传播一个具有重叠内容的病媒。 例如,如果我有[1,2,3],我就希望把1,1,2,3]寄给另一个名字。 我很熟悉如何利用微型消费物价指数来做到这一点,但我会如何利用“蓝 Boo”来做到这一点:MPI?

问题回答

从未尝试过,但我认为你可以使用>ranges or slices。 如果你没有列入航空化,你可能需要提供自己的序列。





相关问题
From OpenMP to MPI

I just wonder how to convert the following openMP program to a MPI program #include <omp.h> #define CHUNKSIZE 100 #define N 1000 int main (int argc, char *argv[]) { int i, ...

Test MPI_Barrier C++

How can I be sure that MPI_Barrier act correctly? What s the method of test for that? Thank you

MPI Barrier C++

I want to use MPI (MPICH2) on windows. I write this command: MPI_Barrier(MPI_COMM_WORLD); And I expect it blocks all Processors until all group members have called it. But it is not happen. I add ...

MPI buffered send/receive order

I m using MPI (with fortran but the question is more specific to the MPI standard than any given language), and specifically using the buffered send/receive functions isend and irecv. Now if we ...

Mpi usage in Windows

I installed mpi into windows and I can use its libraries. The problem is that in windows when I write mpiexec -n 4 proj.exe into command prompt it does not make the proper operations. 4 different ...

shared memory, MPI and queuing systems

My unix/windows C++ app is already parallelized using MPI: the job is splitted in N cpus and each chunk is executed in parallel, quite efficient, very good speed scaling, the job is done right. But ...

GCC performance

I am doing parallel programming with MPI on Beowulf cluster. We wrote parallel algorithm for simulated annealing. It works fine. We expect 15 time faster execution than with serial code. But we did ...

热门标签