Note that this is an out-of-source build.
$ ../configure --enable-debug --enable-mem-debug
--prefix=/home/jed/usr/ompi-1.5-clang CC=clang CXX=clang++
$ make
[...]
CXXLD vtunify-mpi
vtunify_mpi-vt_unify_mpi.o: In function `VTUnify_MPI_Abort':
/home/jed/src/openmpi-1.5/bclang/ompi/contrib/vt/vt/t
Try MPI_Isend?
I have a glut application I am trying to add MPI to. In the display
callback, for rank >= 1, I want to send data to the rank =0 process. I
am not concerned at this point about sending data from the rank 0
process back to the rank >= 1 process, so my data is one direction.
I have a glut application I am trying to add MPI to. In the display callback,
for rank >= 1, I want to send data to the rank =0 process. I am not concerned
at this point about sending data from the rank 0 process back to the rank >= 1
process, so my data is one direction. I would like to do