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
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
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.