[OMPI devel] RFC: Rename several OMPI_* names to OPAL_*

2009-02-10 Thread Greg Koenig
RFC: Rename several OMPI_* names to OPAL_* WHAT: Rename several #define values that encode the prefix "OMPI_" to instead encode the prefix "OPAL_" throughout the entire Open MPI source code tree. Also, eliminate unnecessary #include lines from source code files under the ".../ompi/mca/btl" subtre

Re: [OMPI devel] RFC: Rename several OMPI_* names to OPAL_*

2009-02-10 Thread Brian W. Barrett
I have no objections to this change Brian On Tue, 10 Feb 2009, Greg Koenig wrote: RFC: Rename several OMPI_* names to OPAL_* WHAT: Rename several #define values that encode the prefix "OMPI_" to instead encode the prefix "OPAL_" throughout the entire Open MPI source code tree. Also, elimina

Re: [OMPI devel] RFC: Rename several OMPI_* names to OPAL_*

2009-02-10 Thread Ralph Castain
Offhand, I have no opinion either way - as far as I can see, the current situation is fine...but this would be of benefit to you, and doesn't really hurt anything other than the maintenance issue. My only concern, therefore, is that this be done when we do the 1.4 branch, and not before.

Re: [OMPI devel] RFC: Rename several OMPI_* names to OPAL_*

2009-02-10 Thread George Bosilca
These changes look fine to me. However, I would like to amend this proposal to include the splitting of the config directory. Over the last months, I know several project that use OPAL, and they like to use it as an independent part and not as a subset of ompi. Therefore, I had to extract e

[OMPI devel] likely bad return from MPI_File_c2f

2009-02-10 Thread Lisandro Dalcin
Try to run the trivial program below. I MPI_File_c2f(MPI_FILE_NULL) returns "-1" (minus one), however it seems the routine should return "0" (zero). #include #include int main() { MPI_Fint i; MPI_File f; MPI_Init(0,0); i = MPI_File_c2f(MPI_FILE_NULL); printf("MPI_File_c2f(MPI_FILE_NULL

Re: [OMPI devel] likely bad return from MPI_File_c2f

2009-02-10 Thread Jeff Squyres
Gah! You're absolutely right. A while ago, we fixed comm_c2f and win_c2f, but somehow missed file_c2f. Fixed on the trunk in r20511. I'll try to get this into v1.3.1. On Feb 10, 2009, at 2:06 PM, Lisandro Dalcin wrote: Try to run the trivial program below. I MPI_File_c2f(MPI_FILE_NULL) r