Re: [OMPI users] "Address not mapped" error on user defined MPI_OP function

2007-04-04 Thread Eric Thibodeau
hehe...don't we all love it when a problem "fixes" itself. I was missing a line in my Type creation to realigne the elements correctly: // Displacement is RELATIVE to it's first structure element! for(i=2; i >= 0; i--) Displacement[i] -= Displacement[0]; I'm attaching the functi

Re: [OMPI users] "Address not mapped" error on user defined MPI_OP function

2007-04-04 Thread Eric Thibodeau
I completely forgot to mention which version of OpenMPI I am using, I'll gladly post additional info if required : kyron@kyron ~/openmpi-1.2 $ ompi_info |head Open MPI: 1.2 Open MPI SVN revision: r14027 Open RTE: 1.2 Open RTE SVN revision: r14027

[OMPI users] "Address not mapped" error on user defined MPI_OP function

2007-04-04 Thread Eric Thibodeau
Hello all, First off, please excuse the attached code as I may be naïve in my attempts to implement my own MPI_OP. I am attempting to create my own MPI_OP to use with MPI_Allreduce. I have been able to find very little examples off the net of creating MPI_OPs. My present refer