Re: [OMPI users] How to checkpoint atomic function in OpenMPI

2010-07-22 Thread Nguyen Toan
Dear Josh, I hope to see this new API soon. Anyway, I will try these critical section functions in BLCR. Thank you for the support. Best Regards, Nguyen Toan On Sat, Jul 17, 2010 at 6:34 AM, Josh Hursey wrote: > > On Jun 14, 2010, at 5:26 AM, Nguyen Toan wrote: > > > Hi all, > > I have a MPI pr

Re: [OMPI users] How to checkpoint atomic function in OpenMPI

2010-07-16 Thread Josh Hursey
On Jun 14, 2010, at 5:26 AM, Nguyen Toan wrote: > Hi all, > I have a MPI program as follows: > --- > int main(){ >MPI_Init(); >.. >for (i=0; i<1; i++) { > my_atomic_func(); >} >... >MPI_Finalize(); >return 0; > } > >