I am trying to set up the mpi development on my computer (Windows 7).
I Installed the Intel® Cluster Studio XE 2013 Evaluation version, and succeeded in building/running the test.f90 on the command line (Build Environment for Intel Cluster Studio XE 2013).
But I am having a problem in using it on the Visual Studio 2010,
Current Situation :
smpd service is running,
The environmental variablePATH is as shown below.
C:\Program Files (x86)\Intel\Composer XE 2013\bin\ia32;C:\Program Files (x86)\Intel\MPI\4.1.0.023\em64t\bin;C:\Program Files (x86)\Intel\MPI\4.1.0.023\ia32\bin;%INTEL_DEV_REDIST%redist\intel64\mpirt;%INTEL_DEV_REDIST%redist\ia32\mpirt;%INTEL_DEV_REDIST%redist\intel64\compiler;%INTEL_DEV_REDIST%redist\ia32\compiler;C:\Program Files (x86)\Intel\Trace Analyzer and Collector\8.1.0.023\bin;C:\Program Files (x86)\Intel\icsxe\2013.0.028\bin;C:\Program Files (x86)\Intel\MPI\4.1.1.036\ia32\include;C:\Program Files (x86)\Intel\MPI\4.1.1.036\ia32\lib;C:\Program Files (x86)\Intel\ComposerXE-2011\bin\ia32;C:\Program Files (x86)\Tecplot\Tec360 2008\Bin;C:\Python25\;C:\usr\texlive\2011\bin\win32;c:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;c:\Program Files\Microsoft SQL Server\100\Tools\Binn\;c:\Program Files\Microsoft SQL Server\100\DTS\Binn\
As mentioned above, compiling/running the test on the command line (using the 'mpiifort' using the "Cluster Studio XE 2013 for Windows OS Build Environment") is done well. But When I try to build the same source using the Visual Studio, the errors are as below.
Case 1. When I use "use mpi" statement,
error #7002: Error in opening the compiled module file. Check INCLUDE paths. [MPI]
Case 2. When I use "include 'mpif.h'" statement,
error #5102: Cannot open include file 'mpif.h'
Should I define the additional include path in the project to use the mpi library and include files?