Difference between revisions of "MPI: Building MVAPICH2-2.0b"

From Define Wiki
Jump to navigation Jump to search
(Created page with "== Intel Compilers == 1. Load Intel Compilers source /cm/shared/apps/intel-evaluation/bin/compilervars.sh intel64 2. Configure F77=ifort FC=ifort CC=icc CXX=icpc ./configure...")
 
m
Line 1: Line 1:
== Intel Compilers ==
+
= Intel Compilers =
1. Load Intel Compilers
+
# Get Source
 +
wget http://mvapich.cse.ohio-state.edu/download/mvapich2/mvapich2-2.0b.tgz
 +
# Load Intel Compilers
 
  source /cm/shared/apps/intel-evaluation/bin/compilervars.sh intel64
 
  source /cm/shared/apps/intel-evaluation/bin/compilervars.sh intel64
2. Configure
+
# Configure
 
  F77=ifort FC=ifort CC=icc CXX=icpc ./configure --prefix=/cm/shared/apps/mvapich2/intel/64/2.0b
 
  F77=ifort FC=ifort CC=icc CXX=icpc ./configure --prefix=/cm/shared/apps/mvapich2/intel/64/2.0b
3. Build
+
# Build
 
  make  
 
  make  
 
  make install
 
  make install

Revision as of 05:58, 4 December 2013

Intel Compilers

  1. Get Source
wget http://mvapich.cse.ohio-state.edu/download/mvapich2/mvapich2-2.0b.tgz
  1. Load Intel Compilers
source /cm/shared/apps/intel-evaluation/bin/compilervars.sh intel64
  1. Configure
F77=ifort FC=ifort CC=icc CXX=icpc ./configure --prefix=/cm/shared/apps/mvapich2/intel/64/2.0b
  1. Build
make 
make install