Edit this page
Note:
While compiling and linking your parallel application via the Intel MPI libraries from within the dedicated Microsoft Visual Studio (MSVC)
x64
or x86_64
command prompts, you may receive such linking errors as the following,
LINK : fatal error LNK1181: cannot open input file 'impi.lib' ERROR in the compiling/linking [2]This error implies that the path to your Intel MPI library installation files is not properly setup in your environment. You can fix the error by calling the Intel's dedicated Batch script
mpivars.bat
that Intel has developed solely for the purpose of setting up the MPI environmental variables and paths before using the Intel MPI library. For detailed instructions on how to set up your Intel MPI environment see Getting Started with IntelĀ® MPI Library for Windows OS (Beta). In brief, this script normally lives in a directory like,
Locate this setup-script on your system and execute the contents of it on your command line, like the following,
Notice the use of double-quotations around the path to the script. This is ensure that any special escape characters in the path (such as the white-space characters) are properly taken care of.
If you have any questions about the topics discussed on this page, feel free to ask in the comment section below, or raise an issue on the GitHub page of the library, or reach out to the ParaMonte library authors.