من میخوام نرمافزار OpenMPI رو نصب کنم ولی گویا قبل از نصب این نرم افزار باید یه سری کارها انجام بشه... این مطلب رو و اینترنت پیدا کردم
Step 1: Download the OpenMPI Software from
http://www.open-mpi.org/ . The current stable version at point of writing is OpenMPI 1.3.2
Step 2: Download and Install the Intel Compilers from Intel Website. More information can be taken from Free Non-Commercial Intel Compiler Download
Step 3: Add the Intel Directory Binary Path to the Bash Startup
At my ~/.bash_profile directory, I've added
PATH=$PATH:/opt/intel/Compiler/11.0/081/bin/intel64
At command prompt
# source .bashrc
Step 4: Configuration Information
gunzip -c openmpi-1.2.tar.gz tar xf -
# cd openmpi-1.2
#./configure --prefix=/usr/local CC=icc CXX=icpc F77=ifort FC=ifort
# make all install
Step 5: Setting PATH environment for OpenMPI
At my ~/.bash_profile directory, I've added.
export PATH=/usr/local/bin:${PATH}
export LD_LIBRARY_PATH=/opt/intel/Compiler/11.0/081/lib/intel64:${LD_LIBRARY_PATH}
(The LD_LIBRARY_PATH must point to /opt/intel/Compiler/11.0/081/lib/intel64/libimf.so)
Step 6: mpicc ........
Step 7: Repeat the procedures on the Compute Nodes
من کامپایلرهای اینتل رو نصب کردم ولی این کاری که در step 3 و step 5 گفته رو نمی دونم یعنی چی؟؟؟؟ من زیاد با لینوکس آشنایی ندارم...
لطفا راهنماییم کنید..