The following link represent function name prefix conventions in MPICH/MVAPICH (e.g., MPID and MPIU prefixes)
Function Name Prefix Convention in MPICH/MVAPICH
I am just wondering what MPIR prefix represents (not explained in the link above)? At which layer it is implemented and which layers have access to it? Thanks in advnace
MPIR_
is usually used for symbols which are defined in the top-level layer which is below the actualMPI_
interface but above the Abstract Device Interface (ADI), whose symbols usually have anMPID_
prefix. MostMPIU_
symbols are also defined at this layer, but they are usually for completely separate utility routines which do not implement any "MPI business logic". As always with these naming conventions, the convention has not been followed 100% strictly in all cases.Source: my brain; I've been developing MPICH for >5 years.
Using non-
MPI_
names for routines defined inside the library is important, since it means that we won't accidentally stomp on the MPI namespace and potentially conflict with future standardization or confuse users about what is actually standard functionality: http://www.mpi-forum.org/docs/mpi22-report/node31.htm#Node31