Re: [OMPI users] Serializing objects

2012-05-01 Thread Andreas Schäfer
Hi Omar, with serialization of C++ objects is fundamentally no different than sending structs with the C bindings. See [1] for an example of how to use MPI_Isend/MPI_Irecv. Be advised though that MPI won't guarantee that the communication will always run concurrently. If your objects contain poi

[OMPI users] Serializing objects

2012-04-30 Thread Omar Andrés Zapata Mesa
Hello guys. I am trying to serialize an object and send it with non-blocking communication (Isend/Irecv) and I need use Grequest but I can not find examples about how used it in c++. can somebody help me how to use it? do you know where I can find documentation or examples? can I pass a class's me