16.2.5. MPI Library Implementation

PreviousUpNext
Up: Profiling Interface Next: Complications Previous: Miscellaneous Control of Profiling

If the MPI library is implemented in C on a Unix system, then there are various options, including the two presented here, for supporting the name-shift requirement. The choice between these two options depends partly on whether the linker and compiler support weak symbols.

If the compiler and linker support weak external symbols, then only a single library is required as the following example shows:


Example Library implementation using weak symbols.

Image file

The effect of this #pragma is to define the external symbol MPI_Example as a weak definition. This means that the linker will not complain if there is another definition of the symbol (for instance in the profiling library); however if no other definition exists, then the linker will use the weak definition.

In the absence of weak symbols then one possible solution would be to use the C macro preprocessor as the following example shows:


Example Library implementation using C pre-processor macros.

Image file

Each of the user visible functions in the library would then be declared thus

Image file

The same source file can then be compiled to produce both versions of the library, depending on the state of the PROFILELIB macro symbol.

It is required that the standard MPI library be built in such a way that the inclusion of MPI functions can be achieved one at a time. This may mean that each external function must reside in its own compilation unit. This is necessary so that the author of the profiling library need only define those MPI functions that need to be intercepted, references to any others being fulfilled by the normal MPI library.


Example

The following example shows a potential link step when using the profiling interface.

Image file

Here libmyprof.a contains the profiler functions that intercept some of the MPI functions, libpmpi.a contains the ``name shifted'' MPI functions, and libmpi.a contains the normal definitions of the MPI functions.


PreviousUpNext
Up: Profiling Interface Next: Complications Previous: Miscellaneous Control of Profiling


Return to MPI-4.1 Standard Index
Return to MPI Forum Home Page

(Unofficial) MPI-4.1 of November 2, 2023
HTML Generated on November 19, 2023