HI,
In my MPI program, master send many msaages to another worker with the same
tag.
The worker uses sMPI::COMM_WORLD.Recv(&message_para_to_one_worker, 1,
message_para_to_workers_type, 0, downStreamTaskTag);
to receive the messages
I got error:
n36:94880] *** An error occurred in MPI_Recv[n
Hi Jack
Usually MPI_ERR_TRUNCATE means that the buffer you use in MPI_Recv
(or MPI::COMM_WORLD.Recv) is too sdmall to hold the message coming in.
Check your code to make sure you assign enough memory to your buffers.
regards
Jody
On Mon, Nov 1, 2010 at 7:26 AM, Jack Bryan wrote:
> HI,
> In my
Hi
On a newly installed 64bit linux (2.6.32-gentoo-r7) with gcc version 4.4.4
i can't compile even simple Open-MPI applications (OpenMPI 1.4.2).
The message is:
jody@aim-squid_0 ~/progs $ mpiCC -g -o HelloMPI HelloMPI.cpp
/usr/lib/gcc/x86_64-pc-linux-gnu/4.4.4/../../../../x86_64-pc-linux-gnu/bin/l
Hi,
> Sorry, but can you give us the config line, the config.log and the
> full output of make preferrably with make V=1?
>
> --td
> On 10/29/2010 04:30 AM, Siegmar Gross wrote:
> > Hi,
> >
> > I tried to build Open MPI 1.5 on Solaris X86 and x86_64 with Oracle
> > Studio 12.2. I can compile O
Have you tried using mpicxx, or mpic++ ?
-Original Message-
From: users-boun...@open-mpi.org [mailto:users-boun...@open-mpi.org] On
Behalf Of jody
Sent: Monday, November 01, 2010 4:20 AM
To: Open MPI Users
Subject: [OMPI users] link problem on 64bit platform
Hi
On a newly installed 64bi
On Nov 1, 2010, at 5:20 AM, jody wrote:
> jody@aim-squid_0 ~/progs $ mpiCC -g -o HelloMPI HelloMPI.cpp
> /usr/lib/gcc/x86_64-pc-linux-gnu/4.4.4/../../../../x86_64-pc-linux-gnu/bin/ld:
> skipping incompatible /opt/openmpi-1.4.2/lib/libmpi_cxx.so when
> searching for -lmpi_cxx
This is the key messa
On 11/1/2010 5:24 AM, Jeff Squyres wrote:
On Nov 1, 2010, at 5:20 AM, jody wrote:
jody@aim-squid_0 ~/progs $ mpiCC -g -o HelloMPI HelloMPI.cpp
/usr/lib/gcc/x86_64-pc-linux-gnu/4.4.4/../../../../x86_64-pc-linux-gnu/bin/ld:
skipping incompatible /opt/openmpi-1.4.2/lib/libmpi_cxx.so when
searching
I am able to build on Linux systems with Sun C 5.11 using gcc-4.1.2.
Still trying to get a version of gcc 4.3.4 compiled on our systems so I
can use it with Sun C 5.11 to build OMPI.
--td
On 11/01/2010 05:58 AM, Siegmar Gross wrote:
Hi,
Sorry, but can you give us the config line, the c
thanks
I use
double* recvArray = new double[buffersize];
The receive buffer size
MPI::COMM_WORLD.Recv(&(recvDataArray[0]), xVSize, MPI_DOUBLE, 0, mytaskTag);
delete [] recvArray ;
In first iteration, the receiver works well.
But, in second iteration ,
I got the
MPI_ERR_TRUNCATE: message trun
I am trying to install OpenMPI (1.4.3) in a MacPro system running OS X 10.6.4.
I have installed xcode and gfortran.
When I run ./configure --prefix=/opt/openmpi 2>&1 | tee config.out
After some time I get the message ./configure: line 150073:
ompi/mca/io/romio/romio/localdefs: No such file or dir
Jack, in order to see what the problem is, you need to post a more complete
code, such as the code you used for the send, and any manipulation you did
to your recvArray.
On Mon, Nov 1, 2010 at 10:41 AM, Jack Bryan wrote:
> thanks
>
> I use
>
> double* recvArray = new double[buffersize];
>
> Th
11 matches
Mail list logo