Intel® Math Kernel Library 11.3 Update 4 Developer Guide
While different message-passing interface (MPI) libraries are compatible at the application programming interface (API) level, they are often incompatible at the application binary interface (ABI) level. Therefore, Intel MKL provides a set of prebuilt BLACS libraries that support certain MPI libraries, but this, however, does not enable use of Intel MKL with other MPI libraries. To fill this gap, Intel MKL additionally includes the MKLMPI adaptor, which provides an MPI-independent ABI to Intel MKL. The adaptor is provided as source code. To use Intel MKL with an MPI library that is not supported by default, you can use the adapter to build custom static or dynamic BLACS libraries and use them similarly to the prebuilt libraries.
The MKLMPI adaptor is located in the <mkl directory>/interfaces/mklmpi directory.
To build a custom BLACS library, from the above directory run the make command.
For example: the command
make libintel64
builds a static custom BLACS library libmkl_blacs_custom_lp64.a using the MPI compiler from the current shell environment. Look into the <mkl directory>/interfaces/mklmpi/makefile for targets and variables that define how to build the custom library. In particular, you can specify the compiler through the MPICC variable.
For more control over the building process, refer to the documentation available through the command
make help
Use custom BLACS libraries exactly the same way as you use the prebuilt BLACS libraries, but pass the custom library to the linker. For example, instead of passing the libmkl_blacs_intelmpi_lp64.a library, pass libmkl_blacs_custom_lp64.a.