Re: [OMPI devel] Using ompi_proc_t's proc_name.vpid as Universal rank

2007-11-30 Thread Sajjad Tabib
Hi, Thanks for the clarification. So, now I am wondering how rank information regarding processes in MPI_COMM_WORLD are assigned. Is there a table that stores unique integer values for processess or is rank assignment done in some other manner? Thanks, Sajjad Tabib Tim Prins Sent by

[OMPI devel] Using ompi_proc_t's proc_name.vpid as Universal rank

2007-11-29 Thread Sajjad Tabib
ow to assign universal ranks to a proprietary transport software. Thanks for your help, Sajjad Tabib

Re: [OMPI devel] Question regarding MCA_PML_CM_SEND_REQUEST_INIT_COMMON

2007-10-31 Thread Sajjad Tabib
req_status.MPI_ERROR? After a send/recv has completed successfully? Thank You, Sajjad Tabib Jeff Squyres Sent by: devel-boun...@open-mpi.org 10/31/07 07:29 AM Please respond to Open MPI Developers To Open MPI Developers cc Subject Re: [OMPI devel] Question regarding

[OMPI devel] Question regarding MCA_PML_CM_SEND_REQUEST_INIT_COMMON

2007-10-29 Thread Sajjad Tabib
work, I thought I should run this by you to make sure that MPI_ERROR was not propagating from upper layers. Is it ok that I did a: "(req_send)->req_base.req_ompi.req_status.MPI_ERROR = MPI_SUCCESS;" in MCA_PML_CM_REQUEST_INIT_COMMON? Thank You, Sajjad Tabib

Re: [OMPI devel] PML cm and heterogeneous support

2007-10-25 Thread Sajjad Tabib
us operation" could you please breifly explain this in more detail? I have been using ompi_mtl_datatype_pack and ompi_mtl_datatype_unpack, which use ompi_convertor_pack and ompi_convertor_unpack, for data packing. Do you mean that these functions will not work correctly? Thank You, Sajja

[OMPI devel] PML cm and heterogeneous support

2007-10-18 Thread Sajjad Tabib
rocs ; ++i) { 108 if (procs[i]->proc_arch != ompi_proc_local()->proc_arch) { 109 return OMPI_ERR_NOT_SUPPORTED; 110 } 111 } 112 #endif . . . } Sajjad Tabib

[OMPI devel] Module Design Concept

2007-10-08 Thread Sajjad Tabib
will appreciate any pointers that you could give me to help me understand this concept. Thanks in advance, Sajjad Tabib

[OMPI devel] Sajjad Tabib is out of the office.

2007-09-21 Thread Sajjad Tabib
I will be out of the office starting 09/21/2007 and will not return until 10/01/2007. I will respond to your message when I return.

Re: [OMPI devel] Adding a new component

2007-09-11 Thread Sajjad Tabib
etails on this if it is relevant for you, just ask. Aurelien Le 7 sept. 07 à 17:21, Sajjad Tabib a écrit : Hi, I am a complete newbie to Open MPI internals and just began browsing the code and reading up on slides and papers. From what I have read, I learned that I have to create a new

[OMPI devel] Adding a new component

2007-09-07 Thread Sajjad Tabib
Hi, I am a complete newbie to Open MPI internals and just began browsing the code and reading up on slides and papers. From what I have read, I learned that I have to create a new component. What I do not know is how to make MPI aware of it or should I say make MPI open and select my component.