Re: [OMPI users] can torque support openmpi checkpoint?

2010-03-18 Thread Josh Hursey
I have not been working with the integration of Open MPI and Torque directly, so I cannot state how well this is supported. However, the BLCR folks have been working on a Torque/Open MPI/BLCR project for a while now, and have had some success. You might want to raise the question on the BLC

Re: [OMPI users] Signal code: Address not mapped (1) error

2010-03-18 Thread alev mutlu
Oh yes Dorian, now it works! On Thu, Mar 18, 2010 at 11:57 AM, Dorian Krause wrote: > Hi, > > Since you are using std::string in your structure you should allocate the > memory with "new" instead of "malloc". Otherwise the constructor of > std::string is not called and things like the length() o

Re: [OMPI users] Signal code: Address not mapped (1) error

2010-03-18 Thread Dorian Krause
Hi, Since you are using std::string in your structure you should allocate the memory with "new" instead of "malloc". Otherwise the constructor of std::string is not called and things like the length() of a string might not give the desired result leading boost to iterate over too many chars.