Re: [OMPI users] mpi_file_set_view

2007-09-18 Thread Michael
On Sep 17, 2007, at 7:55 PM, Jeff Squyres wrote: Are you using the MPI F90 bindings perchance? If so, the issue could be that the prototype for MPI_FILE_SET_VIEW is: interface MPI_File_set_view subroutine MPI_File_set_view(fh, disp, etype, filetype, datarep, & info, ierr) include

Re: [OMPI users] mpi_file_set_view

2007-09-17 Thread Jeff Squyres
Are you using the MPI F90 bindings perchance? If so, the issue could be that the prototype for MPI_FILE_SET_VIEW is: interface MPI_File_set_view subroutine MPI_File_set_view(fh, disp, etype, filetype, datarep, & info, ierr) include 'mpif-config.h' integer, intent(in) :: fh integer

[OMPI users] mpi_file_set_view

2007-09-17 Thread Andrus, Mr. Brian (Contractor)
Hello all, I am a newbie at much of mpi application and try to provide support for various users in the hpc community. I have run into something that I don't quite understand. I have some code that is meant to open a file for reading, but at compile time I get "Could not resolve generic procedure

Re: [OMPI users] MPI_File_set_view rejecting subarray views.

2007-07-23 Thread Moreland, Kenneth
Thanks, Brian. That did the trick. -Ken > -Original Message- > From: users-boun...@open-mpi.org [mailto:users-boun...@open-mpi.org] On > Behalf Of Brian Barrett > Sent: Thursday, July 19, 2007 3:39 PM > To: Open MPI Users > Subject: Re: [OMPI users] MPI_File_set_view

Re: [OMPI users] MPI_File_set_view rejecting subarray views.

2007-07-19 Thread Brian Barrett
On Jul 19, 2007, at 3:24 PM, Moreland, Kenneth wrote: I've run into a problem with the File I/O with openmpi version 1.2.3. It is not possible to call MPI_File_set_view with a datatype created from a subarray. Instead of letting me set a view of this type, it gives an invalid datatype error. I

[OMPI users] MPI_File_set_view rejecting subarray views.

2007-07-19 Thread Moreland, Kenneth
I've run into a problem with the File I/O with openmpi version 1.2.3. It is not possible to call MPI_File_set_view with a datatype created from a subarray. Instead of letting me set a view of this type, it gives an invalid datatype error. I have attached a simple program that demonstrates the pro