Hi, I reinstalled openmpi to a svn snapshot version to fixed the
MPI_File_open return 16 error, but the same code
#include
#include "mpi.h"
int main(int argc, char *argv[]) {
MPI_File fh;
MPI_Init( &argc, &argv );
int ret = MPI_File_open(
MPI_COMM_WORLD, "temp",
MPI_MODE_RDWR |
After talking with the slurm folks and tracking down the history of
how OMPI dealt with this variable, I have made a change to OMPI's use
of it. This should now work correctly in the upcoming release.
Thanks
Ralph
On Aug 24, 2009, at 2:22 PM, matthew.pi...@ndsu.edu wrote:
Hello again,
As