Re: [OMPI users] MPI_ERR_INTERN with MPI_Accumulate using MPI_REPLACE

2011-01-06 Thread Jeremiah Willcock
On Thu, 6 Jan 2011, Jeff Squyres wrote: Jeremiah -- Is this the same as: https://svn.open-mpi.org/trac/ompi/ticket/2656 Not that I can tell -- my code is only using built-in datatypes, while that bug appears to require user-defined datatypes. -- Jeremiah Willcock

Re: [OMPI users] MPI_ERR_INTERN with MPI_Accumulate using MPI_REPLACE

2011-01-06 Thread Barrett, Brian W
Jeff, I don't believe it is. I'm still waiting for a compile to finish to test, but there shouldn't be a problem with predefined datatypes. It's just user-defined that the ddt->opal move screwed up. Brian On Jan 6, 2011, at 2:19 PM, Jeff Squyres wrote: > Jeremiah -- > > Is this the same as:

Re: [OMPI users] MPI_ERR_INTERN with MPI_Accumulate using MPI_REPLACE

2011-01-06 Thread Jeff Squyres
Jeremiah -- Is this the same as: https://svn.open-mpi.org/trac/ompi/ticket/2656 On Jan 6, 2011, at 3:58 PM, Jeremiah Willcock wrote: > When I run the following program on one rank using Open MPI 1.5: > > #include > #include > #include > > int main(int argc, char** argv) { > int size

[OMPI users] MPI_ERR_INTERN with MPI_Accumulate using MPI_REPLACE

2011-01-06 Thread Jeremiah Willcock
When I run the following program on one rank using Open MPI 1.5: #include #include #include int main(int argc, char** argv) { int size = 128; unsigned char one = 1; MPI_Init(&argc, &argv); unsigned char* data = (unsigned char*)malloc(size * sizeof(unsigned char)); memset(data, 0, si